* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans SC', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .navbar {
            background: linear-gradient(135deg, #0033a0 0%, #002080 100%);
            box-shadow: 0 4px 12px rgba(0, 32, 128, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
            text-decoration: none;
        }
        .logo-icon {
            color: #ffd700;
            font-size: 1.8rem;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: white;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(rgba(0, 33, 128, 0.9), rgba(0, 20, 80, 0.9)), 
                        url('https://images.unsplash.com/photo-1551969015-74a5c6f4e40b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 20px;
            text-align: center;
            margin-bottom: 60px;
            border-radius: 0 0 20px 20px;
        }
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        .card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            padding: 30px;
            margin-bottom: 40px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #eaeaea;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }
        .card-title {
            color: #0033a0;
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffd700;
            display: inline-block;
        }
        .prediction-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 5px solid #0033a0;
        }
        .match-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .team-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        .team-card:hover {
            transform: scale(1.02);
        }
        .team-flag {
            width: 100px;
            height: 70px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        .stat-item {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border-top: 4px solid #0033a0;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0033a0;
            margin: 10px 0;
        }
        .live-score {
            background: linear-gradient(135deg, #0033a0 0%, #002080 100%);
            color: white;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .live-badge {
            background: #ff4757;
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-weight: 600;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .friendlink {
            background: #f8f9fa;
            padding: 40px 20px;
            border-radius: 12px;
            margin-top: 60px;
        }
        .flink-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        .flink {
            background: white;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            text-decoration: none;
            color: #333;
            border: 1px solid #eaeaea;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .flink:hover {
            background: #0033a0;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 51, 160, 0.2);
        }
        .footer {
            background: #002080;
            color: white;
            padding: 60px 20px 30px;
            margin-top: 80px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffd700;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #0033a0;
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .match-info {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .flink-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .flink-container {
                grid-template-columns: 1fr;
            }
            .hero {
                padding: 60px 20px;
            }
            .card {
                padding: 20px;
            }
        }
        .text-gradient {
            background: linear-gradient(135deg, #0033a0, #00b4d8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .btn {
            background: linear-gradient(135deg, #0033a0 0%, #002080 100%);
            color: white;
            padding: 14px 32px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 51, 160, 0.3);
        }
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #002080;
            position: relative;
        }
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #ffd700;
            margin: 15px auto;
            border-radius: 2px;
        }
        .content-section {
            padding: 80px 20px;
        }
        .highlight {
            background: linear-gradient(120deg, #ffd70025 0%, #ffd70010 100%);
            border-left: 4px solid #ffd700;
            padding: 25px;
            border-radius: 0 12px 12px 0;
            margin: 30px 0;
        }
        .expert-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-top: 40px;
        }
        .expert-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 4px solid #0033a0;
        }
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 40px auto;
        }
        .timeline-item {
            padding: 20px 0;
            position: relative;
            padding-left: 40px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 25px;
            width: 20px;
            height: 20px;
            background: #0033a0;
            border-radius: 50%;
        }
        .timeline-item:after {
            content: '';
            position: absolute;
            left: 9px;
            top: 45px;
            width: 2px;
            height: calc(100% - 20px);
            background: #0033a0;
        }
        .timeline-item:last-child:after {
            display: none;
        }
