:root {
            --primary-color: #1a365d;
            --secondary-color: #e63946;
            --accent-color: #2a9d8f;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        body {
            font-family: 'Noto Sans SC', 'Segoe UI', system-ui, sans-serif;
            color: var(--dark-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            margin-bottom: 60px;
        }
        .hero-title {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }
        .card-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        .match-card {
            border-left: 5px solid var(--secondary-color);
        }
        .analysis-card {
            border-top: 4px solid var(--accent-color);
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .live-score {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
            border-left: 5px solid var(--secondary-color);
        }
        .score-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--secondary-color);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        .stat-bar {
            height: 10px;
            border-radius: 5px;
            background: #e9ecef;
            margin: 15px 0;
            overflow: hidden;
        }
        .stat-fill {
            height: 100%;
            border-radius: 5px;
            background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
        }
        .prediction-badge {
            background: var(--secondary-color);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            display: inline-block;
            margin: 10px 0;
        }
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-color), #2c5282);
            border: none;
            border-radius: 8px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background: linear-gradient(135deg, #2c5282, var(--primary-color));
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }
        .footer {
            background: var(--primary-color);
            color: white;
            padding: 60px 0 30px;
        }
        .footer a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        .flink {
            background: rgba(255, 255, 255, 0.05);
            padding: 10px 20px;
            border-radius: 6px;
            display: inline-block;
            margin: 5px;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        .contact-info li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        .contact-info i {
            width: 24px;
            color: var(--accent-color);
            margin-right: 10px;
        }
        .table-custom {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .table-custom thead {
            background: var(--primary-color);
            color: white;
        }
        .table-custom tbody tr:hover {
            background-color: rgba(42, 157, 143, 0.05);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            margin-bottom: 40px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 20px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -33px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--secondary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--accent-color);
        }
        .analyst-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        .analyst-card:hover {
            transform: translateY(-5px);
        }
        .analyst-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .seo-content {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border-left: 5px solid var(--accent-color);
        }
        .highlight-text {
            background: linear-gradient(120deg, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0.05) 100%);
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
