:root {
            --primary-color: #8a1538; 
            --secondary-color: #da291c; 
            --accent-color: #ffd700; 
            --dark-bg: #0a1a2a;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #f8f9fa;
        }
        body {
            font-family: 'Noto Sans SC', 'Segoe UI', system-ui, sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 26, 42, 0.85), rgba(10, 26, 42, 0.9)), url('https://images.unsplash.com/photo-1598899134739-24c46f58b8c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: var(--text-light);
            padding: 8rem 0 6rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
        }
        .match-card {
            background: linear-gradient(135deg, #0a1a2a 0%, #1a2b3c 100%);
            color: white;
        }
        .badge-custom {
            background: var(--accent-color);
            color: var(--dark-bg);
            font-weight: 600;
            padding: 0.5em 1em;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .flink {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            margin: 0.5rem;
            background: var(--light-bg);
            border-radius: 50px;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .flink:hover {
            background: white;
            border-color: var(--primary-color);
            color: var(--primary-color);
            transform: scale(1.05);
        }
        .footer {
            background: var(--dark-bg);
            color: var(--text-light);
            padding-top: 4rem;
        }
        .footer a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--accent-color);
        }
        .live-badge {
            animation: pulse 1.5s infinite;
            display: inline-block;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .analysis-box {
            border-left: 4px solid var(--primary-color);
            padding-left: 1.5rem;
            background: #f8f9fa;
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .player-img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid var(--accent-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 6rem 0 4rem;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
