:root {
            --primary-red: #D22630;
            --secondary-white: #FFFFFF;
            --accent-yellow: #FFD700;
            --dark-blue: #003366;
            --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: 60px;
            transition: transform 0.3s ease;
        }
        .navbar-brand img:hover {
            transform: scale(1.05);
        }
        .nav-link {
            font-weight: 600;
            color: var(--dark-blue) !important;
            margin: 0 8px;
            position: relative;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-red) !important;
        }
        .nav-link:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary-red);
            border-radius: 2px;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: var(--secondary-white);
            padding: 180px 0 120px;
            position: relative;
        }
        .hero-title {
            font-size: 3.8rem;
            font-weight: 800;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
            margin-bottom: 1.5rem;
        }
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            max-width: 800px;
        }
        .btn-primary-custom {
            background-color: var(--primary-red);
            border: none;
            padding: 14px 32px;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            color: white;
        }
        .btn-primary-custom:hover {
            background-color: #b02028;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            color: white;
        }
        .section-title {
            color: var(--dark-blue);
            font-weight: 800;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 5px;
            background-color: var(--primary-red);
            border-radius: 3px;
        }
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .news-date {
            color: var(--primary-red);
            font-weight: 600;
            font-size: 0.9rem;
        }
        .player-card .card-img-top {
            height: 300px;
        }
        .player-position {
            background-color: var(--primary-red);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
        }
        .fixture-card {
            background: linear-gradient(135deg, var(--dark-blue) 0%, #002244 100%);
            color: white;
            border-radius: 15px;
            padding: 25px;
        }
        .fixture-competition {
            color: var(--accent-yellow);
            font-weight: 700;
            font-size: 1.1rem;
        }
        .club-stats {
            background-color: var(--light-gray);
            border-radius: 15px;
            padding: 30px;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-red);
            line-height: 1;
        }
        .stat-label {
            color: var(--dark-blue);
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
            max-height: 80px;
            object-fit: contain;
        }
        .sponsor-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }
        footer {
            background-color: var(--dark-blue);
            color: var(--secondary-white);
        }
        .footer-links h5 {
            color: var(--accent-yellow);
            border-bottom: 2px solid var(--primary-red);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s, padding-left 0.3s;
        }
        .footer-links a:hover {
            color: var(--secondary-white);
            padding-left: 5px;
        }
        .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 ease;
            color: white;
            font-size: 1.2rem;
        }
        .social-icon:hover {
            background-color: var(--primary-red);
            transform: translateY(-3px);
        }
        .flink {
            background-color: rgba(255,255,255,0.05);
            border-radius: 10px;
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
            margin-bottom: 15px;
            height: 100%;
        }
        .flink:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-5px);
            color: var(--accent-yellow);
        }
        .flink-logo {
            max-height: 30px;
            max-width: 120px;
            object-fit: contain;
            filter: brightness(0) invert(1);
            margin-right: 10px;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            font-size: 0.9rem;
            color: #aaaaaa;
        }
        .stadium-img {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .mobile-nav-toggler {
            border: 2px solid var(--primary-red);
            color: var(--primary-red);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .navbar-brand img {
                height: 50px;
            }
        }
