:root {
            --primary-red: #E30613;
            --secondary-red: #B00510;
            --dark-blue: #00205B;
            --light-blue: #0056B3;
            --neutral-gray: #F5F5F5;
            --dark-gray: #333333;
            --accent-gold: #FFD700;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 1rem;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 32, 91, 0.85), rgba(0, 32, 91, 0.9)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 120px;
            position: relative;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .hero-section .lead {
            font-size: 1.4rem;
            margin-bottom: 2rem;
        }
        .btn-primary-custom {
            background-color: var(--primary-red);
            border-color: var(--primary-red);
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: var(--secondary-red);
            border-color: var(--secondary-red);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .btn-outline-custom {
            background-color: transparent;
            border: 2px solid white;
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .btn-outline-custom:hover {
            background-color: white;
            color: var(--dark-blue);
            transform: translateY(-3px);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--primary-red);
        }
        .section-title.center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-custom {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        .card-custom:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .news-card .card-img-top {
            height: 180px;
        }
        .player-card .card-img-top {
            height: 250px;
        }
        .navbar-custom {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        .navbar-custom.scrolled {
            padding: 10px 0;
            background-color: rgba(255, 255, 255, 0.98);
        }
        .nav-link-custom {
            color: var(--dark-blue) !important;
            font-weight: 600;
            margin: 0 10px;
            position: relative;
            padding: 8px 0 !important;
        }
        .nav-link-custom:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-red);
            transition: width 0.3s ease;
        }
        .nav-link-custom:hover:after,
        .nav-link-custom.active:after {
            width: 100%;
        }
        .navbar-brand img {
            height: 50px;
            transition: all 0.3s ease;
        }
        .footer {
            background-color: var(--dark-blue);
            color: white;
            padding: 70px 0 30px;
        }
        .footer h5 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-red);
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background-color: var(--primary-red);
            transform: translateY(-5px);
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 50px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        .match-card {
            background: linear-gradient(to right, var(--dark-blue), var(--light-blue));
            color: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
        .match-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 32, 91, 0.3);
        }
        .club-badge {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin: 0 auto;
        }
        .stats-counter {
            text-align: center;
            padding: 30px 20px;
            background-color: var(--neutral-gray);
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        .stats-counter:hover {
            background-color: white;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }
        .stats-counter i {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 15px;
        }
        .counter-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--dark-blue);
            line-height: 1;
        }
        .academy-feature {
            padding: 30px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
        }
        .academy-feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .academy-feature i {
            font-size: 2.2rem;
            color: var(--primary-red);
            margin-bottom: 20px;
        }
        .merch-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            background-color: white;
        }
        .merch-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .merch-img {
            height: 250px;
            object-fit: cover;
            width: 100%;
        }
        .merch-info {
            padding: 20px;
        }
        .price {
            color: var(--primary-red);
            font-weight: 700;
            font-size: 1.4rem;
        }
        .sponsor-logo {
            height: 80px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 6px;
            margin: 5px 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: var(--primary-red);
            color: white;
            transform: translateY(-3px);
        }
        .friendlink {
            background-color: var(--dark-blue);
            padding: 50px 0;
        }
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-red);
            margin-right: 15px;
            margin-top: 5px;
        }
        .form-control-custom {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        .form-control-custom:focus {
            border-color: var(--primary-red);
            box-shadow: 0 0 0 0.25rem rgba(227, 6, 19, 0.25);
        }
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 150px 0 80px;
            }
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section .lead {
                font-size: 1.2rem;
            }
            .counter-number {
                font-size: 2.2rem;
            }
            .navbar-brand img {
                height: 40px;
            }
        }
        @media (max-width: 576px) {
            .hero-section {
                padding: 120px 0 60px;
            }
            .hero-section h1 {
                font-size: 2rem;
            }
            .btn-primary-custom, .btn-outline-custom {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
