:root {
            --primary-color: #0a3d62;
            --secondary-color: #f9ca24;
            --accent-color: #eb4d4b;
            --light-color: #f7f9fc;
            --dark-color: #2d3436;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.7;
            background-color: #fff;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--accent-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(10, 61, 98, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            padding: 120px 0;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
            color: var(--primary-color);
            font-weight: 700;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 70px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        .section-title.center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        .card-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .btn-primary-custom {
            background-color: var(--accent-color);
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: #d63031;
            transform: scale(1.05);
        }
        .match-card {
            background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
            border-left: 5px solid var(--accent-color);
        }
        .live-badge {
            background-color: #ff3838;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(249, 202, 36, 0.1);
        }
        .friendlink .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px;
            background-color: var(--light-color);
            border-radius: 8px;
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: 1px solid #e0e6ed;
        }
        .friendlink .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--primary-color);
            color: white;
        }
        footer a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icon:hover {
            background-color: var(--accent-color);
            transform: rotate(15deg);
        }
        .img-thumbnail {
            border-radius: 10px;
            transition: transform 0.5s;
        }
        .img-thumbnail:hover {
            transform: scale(1.03);
        }
        .breadcrumb {
            background-color: transparent;
            padding-left: 0;
        }
        .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.25rem rgba(249, 202, 36, 0.25);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(10, 61, 98, 0.05);
            color: var(--primary-color);
            font-weight: 600;
        }
        .progress {
            height: 10px;
            border-radius: 5px;
        }
        .progress-bar {
            background-color: var(--secondary-color);
        }
