:root {
            --primary-color: #1a365d;
            --secondary-color: #e63946;
            --accent-color: #2a9d8f;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
        }
        body {
            font-family: 'Noto Sans SC', 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-color);
            line-height: 1.8;
            overflow-x: hidden;
        }
        .navbar {
            background-color: var(--primary-color);
            padding-top: 1rem;
            padding-bottom: 1rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: white !important;
        }
        .nav-link {
            color: rgba(255,255,255,0.85) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: white !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.8)), url('https://images.unsplash.com/photo-1551632811-561732d1e306?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .section-title {
            color: var(--primary-color);
            font-weight: 800;
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 2.5rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            overflow: hidden;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .card-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }
        .feature-card {
            border-top: 5px solid var(--accent-color);
        }
        .analysis-card {
            border-top: 5px solid var(--secondary-color);
        }
        .match-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 6px solid var(--primary-color);
        }
        .btn-primary {
            background-color: var(--secondary-color);
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #d32f2f;
            transform: scale(1.05);
        }
        .live-badge {
            background-color: #dc3545;
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .data-table {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .data-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            border: none;
        }
        .data-table td, .data-table th {
            padding: 1rem;
            vertical-align: middle;
        }
        .team-flag {
            width: 30px;
            height: auto;
            margin-right: 10px;
            border-radius: 2px;
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding-top: 3rem;
        }
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 0.5rem;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            background-color: rgba(0,0,0,0.2);
            padding: 1.5rem 0;
            margin-top: 3rem;
        }
        .friendlink a.flink {
            background-color: #f8f9fa;
            color: var(--primary-color);
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
            margin: 0.5rem;
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
        }
        .friendlink a.flink:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }
        .article-content {
            text-align: justify;
            hyphens: auto;
        }
        .article-content h3 {
            color: var(--primary-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-color);
            display: block;
        }
        .stats-label {
            font-size: 1rem;
            color: var(--dark-color);
            font-weight: 600;
        }
        .contact-info li {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        .contact-info i {
            color: var(--accent-color);
            width: 30px;
        }
        .seo-text {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 2rem;
            font-size: 0.95rem;
            line-height: 1.7;
            color: #555;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
