:root {
            --primary-color: #003366;
            --secondary-color: #FF9933;
            --accent-color: #138808;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gray-color: #6c757d;
        }
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
        }
        .navbar-brand {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color) !important;
        }
        .navbar-brand span {
            color: var(--secondary-color);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.9)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
            text-align: center;
            color: var(--primary-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #002244;
            border-color: #002244;
            transform: translateY(-2px);
        }
        .btn-secondary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            color: #000;
            padding: 10px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            background-color: #e6891e;
            border-color: #e6891e;
            color: #000;
            transform: translateY(-2px);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            line-height: 1;
        }
        .stats-label {
            font-size: 1.1rem;
            color: var(--gray-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding-top: 60px;
            padding-bottom: 30px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--secondary-color);
        }
        .footer-title {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary-color);
        }
        .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;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background-color: var(--secondary-color);
            color: #000;
            transform: translateY(-3px);
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 40px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .friendlink {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px 10px;
            background-color: white;
            border-radius: 4px;
            color: var(--primary-color);
            font-weight: 500;
            text-decoration: none;
            border: 1px solid #dee2e6;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }
        .news-card {
            border-left: 4px solid var(--secondary-color);
        }
        .player-card {
            overflow: hidden;
            border: none;
            border-radius: 8px;
        }
        .player-card img {
            transition: transform 0.5s ease;
        }
        .player-card:hover img {
            transform: scale(1.05);
        }
        .player-overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
        }
        .academy-badge {
            background-color: var(--accent-color);
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            display: inline-block;
        }
        .match-card {
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 20px;
            transition: all 0.3s ease;
        }
        .match-card:hover {
            border-color: var(--primary-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .match-date {
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            display: inline-block;
        }
        .stadium-badge {
            background-color: var(--accent-color);
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            display: inline-block;
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
            max-height: 60px;
        }
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            padding: 8px 15px;
            transition: color 0.3s ease;
        }
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 0;
        }
        .dropdown-item {
            padding: 10px 20px;
            transition: all 0.3s ease;
        }
        .dropdown-item:hover {
            background-color: var(--primary-color);
            color: white;
        }
        .ticket-card {
            background: linear-gradient(135deg, var(--primary-color), #004080);
            color: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            height: 100%;
        }
        .ticket-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin: 20px 0;
        }
        .ticket-feature {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .ticket-feature i {
            color: var(--secondary-color);
            margin-right: 10px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--secondary-color);
            color: #000;
            transform: translateY(-3px);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            margin-left: 20px;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: var(--primary-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            border: 3px solid var(--primary-color);
        }
        .timeline-year {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        .history-img {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .membership-card {
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
        }
        .membership-card:hover {
            border-color: var(--primary-color);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .membership-card.premium {
            border-color: var(--secondary-color);
            position: relative;
            overflow: hidden;
        }
        .membership-card.premium:before {
            content: 'RECOMMENDED';
            position: absolute;
            top: 20px;
            right: -35px;
            background-color: var(--secondary-color);
            color: #000;
            padding: 5px 40px;
            font-weight: 600;
            font-size: 0.8rem;
            transform: rotate(45deg);
        }
