:root {
            --primary-color: #1a365d;
            --secondary-color: #e53e3e;
            --accent-color: #f6ad55;
            --light-color: #f7fafc;
            --dark-color: #2d3748;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Noto Sans SC', 'Segoe UI', system-ui, sans-serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: white !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80') no-repeat center center/cover;
            color: white;
            padding: 120px 0 80px;
        }
        .match-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            height: 100%;
        }
        .match-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .team-flag {
            width: 80px;
            height: 60px;
            object-fit: contain;
            background: #f8f9fa;
            padding: 5px;
            border-radius: 8px;
        }
        .vs-badge {
            background: var(--secondary-color);
            color: white;
            font-weight: 800;
            padding: 8px 20px;
            border-radius: 50px;
        }
        .stat-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            height: 100%;
        }
        .stat-card:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .stat-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        .analysis-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
        }
        .article-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            transition: var(--transition);
            height: 100%;
        }
        .article-card:hover {
            box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        }
        .article-img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .prediction-meter {
            height: 25px;
            border-radius: 12px;
            overflow: hidden;
            background: #e2e8f0;
        }
        .meter-fill {
            height: 100%;
            border-radius: 12px;
            transition: width 1.5s ease;
        }
        .contact-section {
            background-color: var(--primary-color);
            color: white;
        }
        .contact-icon {
            font-size: 2rem;
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        .footer {
            background-color: #0f1c2f;
            color: #cbd5e0;
            padding: 60px 0 30px;
        }
        .flink {
            color: #a0aec0;
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 6px;
            transition: var(--transition);
            display: inline-block;
            margin: 5px;
            background: rgba(255,255,255,0.05);
        }
        .flink:hover {
            color: white;
            background: rgba(255,255,255,0.1);
            text-decoration: none;
        }
        .live-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .nav-link {
            font-weight: 500;
            transition: var(--transition);
            margin: 0 5px;
        }
        .nav-link:hover {
            color: var(--accent-color) !important;
        }
        .btn-custom {
            background-color: var(--secondary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
        }
        .btn-custom:hover {
            background-color: #c53030;
            color: white;
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .hero-section { padding: 80px 0 50px; }
            .display-4 { font-size: 2.2rem; }
            .section-title { font-size: 1.8rem; }
        }
        .sticky-nav {
            background-color: rgba(26, 54, 93, 0.98) !important;
            transition: var(--transition);
        }
