:root {
            --primary-yellow: #FFC107;
            --secondary-blue: #0D6EFD;
            --accent-yellow: #FFF200;
            --dark-blue: #001489;
            --light-gray: #F8F9FA;
            --text-dark: #212529;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        .navbar-brand img {
            height: 50px;
            transition: transform 0.3s ease;
        }
        .navbar-brand img:hover {
            transform: scale(1.05);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 20, 137, 0.85), rgba(0, 20, 137, 0.9)), url('https://images.unsplash.com/photo-1577223625818-75bc1f2ac0e5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        .btn-primary-custom {
            background-color: var(--primary-yellow);
            color: var(--dark-blue);
            border: none;
            padding: 12px 30px;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: var(--accent-yellow);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: 700;
            color: var(--dark-blue);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--primary-yellow);
        }
        .section-title.center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .player-card {
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }
        .player-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .player-img {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .player-card:hover .player-img {
            transform: scale(1.05);
        }
        .stadium-img {
            height: 300px;
            object-fit: cover;
            border-radius: 15px;
        }
        .news-card {
            border-left: 5px solid var(--primary-yellow);
            transition: all 0.3s ease;
        }
        .news-card:hover {
            border-left-color: var(--dark-blue);
            background-color: #f8f9fa;
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            background-color: #f8f9fa;
            border-radius: 8px;
            color: var(--dark-blue);
            text-decoration: none;
            margin: 5px;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background-color: var(--dark-blue);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--dark-blue);
            color: white;
        }
        .footer-link {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-link:hover {
            color: var(--primary-yellow);
        }
        .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%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-right: 10px;
        }
        .social-icon:hover {
            background-color: var(--primary-yellow);
            color: var(--dark-blue);
            transform: translateY(-5px);
        }
        .ticket-card {
            border: 2px solid var(--primary-yellow);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        .ticket-card:hover {
            border-color: var(--dark-blue);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .match-card {
            background: linear-gradient(to right, var(--dark-blue), #0026a8);
            color: white;
            border-radius: 15px;
            padding: 20px;
            transition: all 0.3s ease;
        }
        .match-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .countdown-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-yellow);
        }
        .countdown-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .player-img {
                height: 200px;
            }
            .stadium-img {
                height: 200px;
            }
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--dark-blue);
            line-height: 1;
        }
        .stat-label {
            font-size: 1rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .sponsor-logo {
            height: 60px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .sponsor-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--dark-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            z-index: 1000;
            opacity: 0;
            transition: all 0.3s ease;
        }
        .back-to-top.visible {
            opacity: 1;
        }
        .back-to-top:hover {
            background-color: var(--primary-yellow);
            color: var(--dark-blue);
            transform: translateY(-5px);
        }
