:root {
            --primary-color: #0a2e6f;
            --secondary-color: #e63946;
            --accent-color: #f4a261;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Noto Sans SC', 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .navbar-brand i {
            color: var(--secondary-color);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 46, 111, 0.85), rgba(10, 46, 111, 0.9)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            color: white;
            padding: 120px 0 80px;
            margin-bottom: 3rem;
        }
        .hero-section h1 {
            font-weight: 800;
            font-size: 3.2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .hero-section .lead {
            font-size: 1.3rem;
            opacity: 0.9;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
            color: var(--primary-color);
            font-weight: 700;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .card-match {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: var(--transition);
            height: 100%;
        }
        .card-match:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        .team-logo {
            width: 70px;
            height: 70px;
            object-fit: contain;
        }
        .match-time {
            background: var(--primary-color);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        .prediction-badge {
            background: linear-gradient(135deg, var(--secondary-color), #ff6b6b);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .live-badge {
            animation: pulse 2s infinite;
            background: #dc3545;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stats-card {
            background: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            border-left: 5px solid var(--accent-color);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .analysis-section {
            background-color: var(--light-bg);
            padding: 4rem 0;
        }
        .tab-content {
            padding: 2rem;
            background: white;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .nav-tabs .nav-link {
            color: var(--primary-color);
            font-weight: 600;
            border: none;
            padding: 1rem 1.8rem;
        }
        .nav-tabs .nav-link.active {
            background: white;
            color: var(--secondary-color);
            border-bottom: 3px solid var(--secondary-color);
        }
        .flink {
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 10px;
            padding: 1.2rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            height: 100%;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-5px);
            border-color: var(--primary-color);
        }
        .flink i {
            margin-right: 10px;
            font-size: 1.3rem;
        }
        .contact-info {
            background: var(--primary-color);
            color: white;
            padding: 3rem;
            border-radius: 15px;
        }
        .contact-info a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        .contact-info a:hover {
            color: var(--accent-color);
        }
        footer {
            background: #1a1a2e;
            color: #adb5bd;
            padding: 3rem 0 1.5rem;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: #c1121f;
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.2rem;
            }
            .hero-section {
                padding: 80px 0 50px;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .team-logo {
                width: 50px;
                height: 50px;
            }
        }
        .article-content {
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .article-content h3 {
            color: var(--primary-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        .data-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
        }
        .highlight-text {
            background: linear-gradient(120deg, rgba(244, 162, 97, 0.2) 0%, rgba(244, 162, 97, 0) 100%);
            padding: 1.5rem;
            border-left: 4px solid var(--accent-color);
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
