:root {
            --primary-color: #0d3b66;
            --secondary-color: #f4a261;
            --accent-color: #2a9d8f;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: var(--dark-color);
            line-height: 1.7;
            background-color: #fefefe;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-color);
        }
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1d5a96 100%);
            box-shadow: var(--shadow);
            padding-top: 0.8rem;
            padding-bottom: 0.8rem;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: white !important;
        }
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            border-radius: 4px;
            margin: 0 0.1rem;
        }
        .nav-link:hover, .nav-link.active {
            color: white !important;
            background-color: rgba(255, 255, 255, 0.15);
        }
        .hero-section {
            background: linear-gradient(rgba(13, 59, 102, 0.85), rgba(42, 157, 143, 0.8)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            color: white;
            padding: 6rem 0;
            margin-bottom: 3rem;
        }
        .hero-title {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 2.5rem;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            overflow: hidden;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        }
        .card-header {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            border-radius: 12px 12px 0 0 !important;
            padding: 1rem 1.5rem;
        }
        .live-badge {
            display: inline-block;
            background-color: #e63946;
            color: white;
            padding: 0.2rem 0.8rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .team-logo {
            max-height: 60px;
            width: auto;
            margin: 0 auto 1rem;
            display: block;
        }
        .data-stat {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .analysis-box {
            background-color: #f8f9fa;
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin-bottom: 1.5rem;
        }
        .friendlink a.flink {
            display: inline-block;
            background-color: white;
            padding: 0.6rem 1.5rem;
            margin: 0.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            color: var(--dark-color);
            font-weight: 500;
            border: 1px solid #eee;
        }
        .friendlink a.flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--primary-color);
            color: rgba(255, 255, 255, 0.85);
            padding: 3rem 0 1.5rem;
        }
        footer a {
            color: rgba(255, 255, 255, 0.85);
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
            font-size: 0.9rem;
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            color: white;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background: linear-gradient(to right, var(--accent-color), var(--primary-color));
            color: white;
            transform: translateY(-3px);
        }
        .table-hover tbody tr:hover {
            background-color: rgba(13, 59, 102, 0.05);
        }
        @media (max-width: 768px) {
            .hero-title { font-size: 2.3rem; }
            .section-title { font-size: 1.8rem; }
            .data-stat { font-size: 1.8rem; }
            .navbar-nav { text-align: center; }
        }
        .match-card {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            transition: var(--transition);
        }
        .match-card:hover {
            border-color: var(--accent-color);
        }
