:root {
            --primary-color: #1a365d;
            --secondary-color: #e53e3e;
            --accent-color: #38b2ac;
            --light-bg: #f7fafc;
            --dark-text: #2d3748;
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: #f8f9fa;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: var(--transition);
            margin: 0 5px;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2d5a9a 100%);
            color: white;
            padding: 5rem 0;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            margin-bottom: 3rem;
        }
        .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: 60px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .card {
            border: none;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            margin-bottom: 1.5rem;
            height: 100%;
            overflow: hidden;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        .card-header {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
            padding: 1rem 1.5rem;
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            line-height: 1;
        }
        .team-logo {
            max-width: 80px;
            height: auto;
            transition: var(--transition);
        }
        .team-logo:hover {
            transform: scale(1.1);
        }
        .match-prediction {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-left: 5px solid var(--secondary-color);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
        }
        .live-badge {
            background-color: #e53e3e;
            color: white;
            padding: 0.25rem 0.75rem;
            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; }
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--primary-color), #2c5282);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(26, 54, 93, 0.2);
        }
        .flink {
            display: inline-block;
            background: #edf2f7;
            color: var(--primary-color);
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .flink:hover {
            background: white;
            color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--primary-color);
            color: #cbd5e0;
            padding: 3rem 0 1.5rem;
        }
        footer a {
            color: #cbd5e0;
            text-decoration: none;
            transition: var(--transition);
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .contact-info i {
            width: 24px;
            color: var(--accent-color);
        }
        .sticky-sidebar {
            position: sticky;
            top: 20px;
        }
        .data-table {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .table th {
            background-color: var(--light-bg);
            color: var(--primary-color);
            font-weight: 600;
            border-top: none;
        }
        .progress {
            height: 10px;
            border-radius: 5px;
            margin: 0.5rem 0;
        }
        .article-content {
            font-size: 1.05rem;
            line-height: 1.9;
        }
        .article-content h3 {
            color: var(--primary-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        .article-content p {
            margin-bottom: 1.5rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 3rem 0;
            }
            .section-title {
                font-size: 1.75rem;
            }
            .stats-number {
                font-size: 2rem;
            }
        }
