        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.4;
        }

        .header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            font-size: 32px;
            font-weight: bold;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-item {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 8px 16px;
            border-radius: 4px;
        }

        .nav-item:hover {
            background-color: rgba(255,255,255,0.1);
            color: #ffd700;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .featured-match {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #2a5298;
        }

        .featured-match h2 {
            color: #1e3c72;
            font-size: 24px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .featured-match h2::before {
            content: "⚽";
            margin-right: 10px;
            font-size: 28px;
        }

        .match-description {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .predictions-table {
            width: 100%;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }

        .table-header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            font-weight: bold;
            text-align: center;
        }

        .predictions-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .predictions-table th,
        .predictions-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }

        .predictions-table th {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            font-weight: 600;
            font-size: 14px;
        }

        .predictions-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }

        .predictions-table tr:hover {
            background-color: #e8f4f8;
            transition: background-color 0.3s;
        }

        .odds {
            font-weight: bold;
            color: #2a5298;
            background: #e8f4f8;
            padding: 6px 12px;
            border-radius: 6px;
            display: inline-block;
        }

        .live-matches {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .live-matches h3 {
            background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
            color: white;
            padding: 15px 20px;
            margin: 0;
            display: flex;
            align-items: center;
            font-size: 18px;
        }

        .live-matches h3::before {
            content: "🔴";
            margin-right: 10px;
        }

        .live-table {
            width: 100%;
        }

        .live-table th,
        .live-table td {
            padding: 10px;
            text-align: center;
            border-bottom: 1px solid #eee;
            font-size: 13px;
        }

        .live-table th {
            background-color: #f8f9fa;
            font-weight: 600;
            color: #555;
        }

        .live-score {
            font-weight: bold;
            color: #dc2626;
        }

        .match-time {
            color: #2a5298;
            font-weight: 600;
        }

        .team-home {
            text-align: right;
            font-weight: 500;
        }

        .team-away {
            text-align: left;
            font-weight: 500;
        }

        .footer {
            background: #1a1a1a;
            color: white;
            text-align: center;
            padding: 30px 20px;
            margin-top: 50px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #ffd700;
        }

        /* Popular Sports Section */
        .popular-sports {
            margin: 40px 0;
        }

        .popular-sports h3 {
            color: #1e3c72;
            font-size: 24px;
            margin-bottom: 25px;
            text-align: center;
        }

        .sports-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .sport-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid #2a5298;
        }

        .sport-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .sport-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .sport-card h4 {
            color: #1e3c72;
            font-size: 20px;
            margin-bottom: 10px;
        }

        .sport-card p {
            color: #666;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .match-count {
            background: #e8f4f8;
            color: #2a5298;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        /* Best Bets Section */
        .best-bets {
            margin: 40px 0;
        }

        .best-bets h3 {
            color: #1e3c72;
            font-size: 24px;
            margin-bottom: 25px;
            text-align: center;
        }

        .bets-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .bet-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .bet-card:hover {
            transform: translateY(-3px);
        }

        .bet-header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .league {
            font-weight: 600;
            font-size: 14px;
        }

        .time {
            background: rgba(255,255,255,0.2);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
        }

        .bet-match {
            padding: 20px;
            text-align: center;
        }

        .teams {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .team-home, .team-away {
            font-weight: 600;
            color: #333;
        }

        .vs {
            color: #999;
            font-size: 14px;
        }

        .bet-tip {
            background: #f8f9fa;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .tip-label {
            color: #666;
            font-size: 14px;
        }

        .tip-value {
            font-weight: 600;
            color: #1e3c72;
        }

        .tip-odds {
            background: #2a5298;
            color: white;
            padding: 6px 12px;
            border-radius: 6px;
            font-weight: bold;
        }

        /* Statistics Section */
        .statistics-section {
            margin: 40px 0;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            border-radius: 12px;
            padding: 40px 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .stat-card {
            text-align: center;
            color: white;
        }

        .stat-number {
            font-size: 48px;
            font-weight: bold;
            color: #ffd700;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 16px;
            font-weight: 500;
        }

        /* News Section */
        .news-section {
            margin: 40px 0;
        }

        .news-section h3 {
            color: #1e3c72;
            font-size: 24px;
            margin-bottom: 25px;
            text-align: center;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 20px;
        }

        .news-item {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            display: flex;
            gap: 15px;
            transition: transform 0.3s;
        }

        .news-item:hover {
            transform: translateY(-2px);
        }

        .news-image {
            font-size: 32px;
            flex-shrink: 0;
        }

        .news-content h4 {
            color: #1e3c72;
            font-size: 16px;
            margin-bottom: 8px;
        }

        .news-content p {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 8px;
        }

        .news-time {
            color: #999;
            font-size: 12px;
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: row;
                gap: 15px;
            }

            .nav-menu {
                display: none;
            }

            .predictions-table th,
            .predictions-table td {
                padding: 8px 4px;
                font-size: 12px;
            }

            .live-table th,
            .live-table td {
                padding: 6px 4px;
                font-size: 11px;
            }

            .container {
                padding: 10px;
            }

            .sports-grid,
            .bets-grid,
            .stats-grid,
            .news-grid {
                grid-template-columns: 1fr;
            }

            .stat-number {
                font-size: 36px;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .news-item {
                flex-direction: column;
                text-align: center;
            }

            
            .hamburger {
                display: flex;
            }
        }


                /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            z-index: 999;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 1rem 0;
        }

        .mobile-menu li {
            padding: 0.5rem 2rem;
        }

        .mobile-menu a {
            display: block;
            color: #333;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover {
            color: #667eea;
        }

        
        @media (max-width: 768px) {
            .nav-links {
                display: none !important;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .container {
                padding: 2rem 1rem;
            }
            
            .content-section {
                padding: 1.5rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }



            .hamburger {
                display: flex !important;
            }

        }

              .text {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    padding: 15px;
    display: grid;
    justify-content: center;
    justify-items: center;
}

.img{
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    padding: 15px;
    display: flex;
    justify-content: center;
}

.img img{
    width: 70px;
    padding-left: 15px;
}


        .header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
            z-index: 100;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            font-size: 32px;
            font-weight: bold;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        /* Desktop Navigation */
        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 4px;
            transition: all 0.3s;
        }

        .nav-menu a:hover {
            background-color: rgba(255,255,255,0.1);
            color: #ffd700;
        }

        /* Hamburger Button */
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
            position: relative;
        }

        /* Mobile Menu */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            z-index: 1000;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .mobile-nav.show {
            transform: translateX(0);
        }

        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-size: 28px;
            font-weight: 500;
            margin: 25px 0;
            padding: 15px 40px;
            border-radius: 8px;
            transition: all 0.3s;
            text-align: center;
            display: block;
        }

        .mobile-nav a:hover {
            background-color: rgba(255,255,255,0.1);
            color: #ffd700;
        }

        /* Close button in mobile menu */
        .close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            background: none;
            border: none;
            color: white;
            font-size: 36px;
            cursor: pointer;
            z-index: 1001;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .hamburger-btn {
                display: block;
            }
            
            .mobile-nav {
                display: flex;
            }
        }