:root {
            --primary-yellow: #FFC107;
            --primary-yellow-dark: #e0a800;
            --club-blue: #0d47a1;
            --club-gold: #d4af37;
            --dark-bg: #121212;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        .bg-kb-dark {
            background-color: var(--dark-bg);
        }
        .text-kb-yellow {
            color: var(--primary-yellow);
        }
        .bg-kb-yellow {
            background-color: var(--primary-yellow);
        }
        .border-kb-yellow {
            border-color: var(--primary-yellow) !important;
        }
        .btn-kb-primary {
            background-color: var(--primary-yellow);
            color: var(--dark-bg);
            font-weight: 600;
            border: none;
            padding: 0.75rem 2rem;
            transition: all 0.3s ease;
        }
        .btn-kb-primary:hover {
            background-color: var(--primary-yellow-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
        }
        .hero-section {
            background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.9)), url('https://images.unsplash.com/photo-1553778263-73a83babcc9a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80') no-repeat center center;
            background-size: cover;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--primary-yellow);
        }
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-light) !important;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-yellow) !important;
        }
        .navbar-toggler {
            border-color: var(--primary-yellow);
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 193, 7, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        .card-hover {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: none;
            border-radius: 10px;
            overflow: hidden;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .stadium-img {
            background: url('https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
            background-size: cover;
            min-height: 500px;
            border-radius: 10px;
        }
        .player-card {
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid #dee2e6;
        }
        .player-card img {
            transition: transform 0.5s ease;
        }
        .player-card:hover img {
            transform: scale(1.05);
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1rem;
            margin: 0.25rem;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .flink:hover {
            background-color: var(--primary-yellow);
            color: var(--dark-bg);
            border-color: var(--primary-yellow);
            transform: translateY(-2px);
        }
        footer a:not(.flink):not(.social-link) {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:not(.flink):not(.social-link):hover {
            color: var(--primary-yellow);
            text-decoration: underline;
        }
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s ease;
        }
        .social-link:hover {
            background-color: var(--primary-yellow);
            color: var(--dark-bg);
            transform: scale(1.1);
        }
        .match-card {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-left: 5px solid var(--primary-yellow);
            color: white;
        }
        .news-card {
            height: 100%;
            border-top: 4px solid var(--primary-yellow);
        }
        .marquee {
            background-color: var(--primary-yellow);
            color: var(--dark-bg);
            font-weight: 600;
            padding: 0.75rem 0;
            overflow: hidden;
        }
        .marquee-content {
            display: inline-block;
            padding-left: 100%;
            animation: marquee 30s linear infinite;
            white-space: nowrap;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.4s ease;
        }
        .sponsor-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 70vh;
                text-align: center;
            }
            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .marquee-content {
                animation-duration: 25s;
            }
        }
