:root {
            --primary-color: #1a5fb4;
            --secondary-color: #e95420;
            --dark-color: #2c3e50;
            --light-color: #ecf0f1;
            --success-color: #38b44a;
            --warning-color: #efb73e;
            --danger-color: #df382c;
        }
        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(26, 95, 180, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .feature-icon:hover {
            transform: translateY(-5px);
            background: var(--secondary-color);
        }
        .feature-icon i {
            font-size: 2rem;
            color: white;
        }
        .match-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 1.5rem;
        }
        .match-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .match-header {
            background: var(--dark-color);
            color: white;
            padding: 0.75rem 1rem;
            font-weight: 600;
        }
        .team-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }
        .score-display {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
        }
        .live-badge {
            background: var(--danger-color);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .news-card {
            border-left: 4px solid var(--primary-color);
            transition: border-color 0.3s ease;
            height: 100%;
        }
        .news-card:hover {
            border-left-color: var(--secondary-color);
        }
        .news-card h5 {
            transition: color 0.3s ease;
        }
        .news-card:hover h5 {
            color: var(--primary-color);
        }
        .footer {
            background: var(--dark-color);
            color: var(--light-color);
            padding-top: 3rem;
        }
        .footer a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .friendlink .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: #bdc3c7;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            margin: 0.25rem 0.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .friendlink .flink:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }
        .contact-info i {
            width: 30px;
            color: var(--secondary-color);
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
            font-weight: 700;
            color: var(--dark-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: var(--primary-color);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .btn-primary {
            background: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background: #144a8f;
            border-color: #144a8f;
            transform: translateY(-2px);
        }
        .btn-secondary {
            background: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            background: #c34113;
            border-color: #c34113;
            transform: translateY(-2px);
        }
        .bg-light-custom {
            background-color: #f8f9fa !important;
        }
        .league-logo {
            width: 40px;
            height: 40px;
            object-fit: contain;
            margin-right: 10px;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(26, 95, 180, 0.05);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(26, 95, 180, 0.1);
            color: var(--primary-color);
            font-weight: 600;
        }
