:root {
            --primary-color: #0033a0;
            --secondary-color: #da291c;
            --accent-color: #ffcd00;
            --dark-color: #1a1a1a;
            --light-color: #f8f9fa;
            --success-color: #28a745;
            --info-color: #17a2b8;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .hero-gradient {
            background: linear-gradient(135deg, var(--primary-color) 0%, #002064 50%, #000d33 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(to right, var(--accent-color), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: var(--accent-color) !important;
        }
        .nav-link.active {
            color: var(--accent-color) !important;
            font-weight: 600;
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 10%;
            width: 80%;
            height: 2px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }
        .hero-section {
            padding-top: 120px;
            padding-bottom: 80px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero-section h1 {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        .hero-section .lead {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        .flag-icon {
            width: 60px;
            height: 40px;
            border-radius: 4px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            object-fit: cover;
            margin: 0 10px;
        }
        .section-title {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 2.5rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--accent-color);
            display: inline-block;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
        }
        .match-card {
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            border-left: 5px solid var(--secondary-color);
        }
        .live-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--secondary-color);
            color: white;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 20px;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .analysis-box {
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 2rem;
            border-left: 5px solid var(--info-color);
            margin-bottom: 2rem;
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--primary-color), #0048d8);
            border: none;
            color: white;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background: linear-gradient(to right, #002064, var(--primary-color));
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(0, 51, 160, 0.3);
            color: white;
        }
        .footer {
            background-color: var(--dark-color);
            color: #ddd;
            padding-top: 3rem;
            padding-bottom: 2rem;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--accent-color);
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #333;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        .flink {
            background-color: rgba(255,255,255,0.05);
            padding: 10px 20px;
            border-radius: 6px;
            margin: 5px;
            display: inline-block;
            transition: all 0.3s ease;
            color: #ccc;
            border: 1px solid #444;
        }
        .flink:hover {
            background-color: rgba(0, 51, 160, 0.2);
            color: var(--accent-color);
            border-color: var(--accent-color);
            transform: translateY(-2px);
            text-decoration: none;
        }
        .contact-info i {
            color: var(--accent-color);
            width: 24px;
            text-align: center;
            margin-right: 10px;
        }
        .table-custom thead th {
            background-color: var(--primary-color);
            color: white;
            border: none;
        }
        .table-custom tbody tr {
            transition: background-color 0.3s ease;
        }
        .table-custom tbody tr:hover {
            background-color: rgba(0, 51, 160, 0.05);
        }
        .breadcrumb {
            background-color: transparent;
            padding-left: 0;
        }
        .breadcrumb-item.active {
            color: var(--accent-color);
            font-weight: 500;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.2rem;
            }
            .hero-section .lead {
                font-size: 1.1rem;
            }
            .stat-number {
                font-size: 2rem;
            }
        }
        .loading-bar {
            height: 4px;
            background-color: var(--accent-color);
            width: 0;
            transition: width 0.5s ease;
        }
        .prediction-odds {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--secondary-color);
        }
        .expert-badge {
            background: linear-gradient(45deg, #ffcd00, #ff9800);
            color: #000;
            font-weight: 700;
            padding: 3px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            display: inline-block;
            margin-left: 10px;
        }
