/* Base Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #003366;
    --accent-color: #00a8ff;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --background-dark: #001a33;
    --background-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--background-dark);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #0088cc;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Header Styles */
.header {
    background-color: var(--primary-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(0, 86, 179, 0.9);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    font-size: 2rem;
    color: white;
    letter-spacing: 2px;
}

.logo h1 span {
    color: var(--accent-color);
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
    position: relative;
}

.nav-item a {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-item a:hover::after {
    width: 100%;
}

.nav-item.active a {
    color: var(--accent-color);
}

.nav-item.active a::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('https://images.unsplash.com/photo-1543351611-58f69d7c1781');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 56, 113, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* News Section */
.news {
    padding: 80px 0;
    background-color: var(--background-dark);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--accent-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.news-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.news-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* CTA Section */
.cta {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 56, 113, 0.8), rgba(0, 56, 113, 0.8)), url('https://images.unsplash.com/photo-1560272564-c83b66b1ad12');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: fadeIn 1s ease;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: left 0.3s ease;
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Social Feed Section */
.social-feed {
    padding: 80px 0;
    background-color: var(--background-dark);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.social-post {
    background-color: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.social-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.social-image {
    height: 0;
    padding-bottom: 125%; /* 4:5 aspect ratio (5/4 = 1.25) */
    background-size: cover;
    background-position: center;
    position: relative;
}

.social-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.social-content p {
    margin-bottom: 15px;
    color: var(--text-color);
    flex-grow: 1;
}

.social-meta {
    display: flex;
    gap: 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-meta i {
    margin-right: 5px;
}

/* Responsive adjustments for social feed */
@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

/* Match Schedule Section */
.match-schedule {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.schedule-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.match-card {
    background-color: var(--background-dark);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.match-date {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 10px;
    font-family: 'Bebas Neue', cursive;
}

.match-date .day {
    font-size: 2rem;
    display: block;
    line-height: 1;
}

.match-date .month {
    font-size: 1.2rem;
    display: block;
    text-transform: uppercase;
}

.match-date .year {
    font-size: 0.9rem;
    display: block;
}

.match-teams {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    text-align: center;
}

.team img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

.team span {
    font-size: 0.9rem;
    font-weight: bold;
}

.match-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
}

.match-time {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.match-venue {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.match-actions {
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.match-actions .btn {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-size: 0.9rem;
    border-radius: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.match-actions .btn:last-child {
    border-right: none;
}

.view-all {
    text-align: center;
    margin-top: 30px;
}

/* Responsive adjustments for match schedule */
@media (max-width: 768px) {
    .schedule-container {
        grid-template-columns: 1fr;
    }
    
    .team span {
        font-size: 0.8rem;
    }
    
    .match-time {
        font-size: 1rem;
    }
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    color: white;
}

/* Ticket Page Specific Styles */
.ticket-hero {
    height: 60vh;
    min-height: 400px;
    background-image: url('https://images.unsplash.com/photo-1543351611-58f69d7c1781');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.ticket-section {
    padding: 80px 0;
    background-color: var(--background-dark);
}

.ticket-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 4px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

/* Enhanced Ticket Matches Section */
/* ==============================================
   UPCOMING MATCHES SECTION
   ============================================== */

.ticket-matches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

/* Match Card Styling */
.ticket-match {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-match:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    border-color: var(--accent-color);
}

/* Match Info Section */
.match-info {
    display: flex;
    margin-bottom: 20px;
}

.match-date {
    background: linear-gradient(135deg, var(--accent-color), #0088cc);
    color: var(--secondary-color);
    padding: 12px;
    border-radius: 6px;
    margin-right: 25px;
    min-width: 70px;
    text-align: center;
    font-family: 'Bebas Neue', cursive;
}

.match-date .day {
    font-size: 1.8rem;
    display: block;
    line-height: 1;
}

.match-date .month {
    font-size: 1rem;
    display: block;
    text-transform: uppercase;
}

.match-date .year {
    font-size: 0.8rem;
    display: block;
}

/* Teams Display */
.match-teams {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.match-teams .team {
    display: flex;
    align-items: center;
    margin: 5px 0;
}

.match-teams .team img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.match-teams .team span {
    font-size: 1rem;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.match-teams .vs {
    text-align: center;
    margin: 5px 0;
    font-family: 'Bebas Neue', cursive;
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Match Details */
/* ===== CENTERED MATCH CARD DESIGN ===== */
.ticket-match {
    background-color: var(--secondary-color);
    border-radius: 12px;
    padding: 25px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center all child elements */
}

/* Match Date - Centered */
.match-date {
    background: linear-gradient(135deg, var(--accent-color), #0088cc);
    color: var(--secondary-color);
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-family: 'Bebas Neue', cursive;
    text-align: center;
}

/* Team Matchup - Perfectly Centered */
.match-teams {
    width: 100%;
    margin: 15px 0;
}

.match-teams .team {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 12px 0;
}

.match-teams .team img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    object-fit: contain;
}

.match-teams .team span {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: white;
}

.match-teams .vs {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin: 10px 0;
    font-family: 'Bebas Neue', cursive;
}

/* Match Details - Centered */
.match-details {
    width: 100%;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.match-time, 
.match-venue {
    display: flex;
    align-items: center;
    margin: 8px 0;
    font-size: 1.1rem;
    justify-content: center;
}

.match-time i, 
.match-venue i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Ticket Actions - Centered */
.ticket-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.ticket-price {
    font-size: 1rem;
    margin-bottom: 15px;
}

.ticket-price span {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--accent-color);
}

/* Grid Layout */
.ticket-matches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

@media (max-width: 768px) {
    .ticket-matches {
        grid-template-columns: 1fr;
    }
}
/* MEMBER */
.membership-cta {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 56, 113, 0.8), rgba(0, 56, 113, 0.8)), url('https://images.unsplash.com/photo-1560272564-c83b66b1ad12');
    background-size: cover;
    background-position: center;
}

.membership-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.membership-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ticket-info {
    padding: 80px 0;
    background-color: var(--background-dark);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.info-card p {
    color: var(--text-secondary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .ticket-matches {
        grid-template-columns: 1fr;
    }
    
    .match-info {
        flex-direction: column;
    }
    
    .match-date {
        margin-right: 0;
        margin-bottom: 15px;
        align-self: flex-start;
    }
    
    .membership-cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .ticket-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .ticket-price {
        align-self: flex-start;
    }
    
    .btn {
        width: 100%;
    }
}

/* ========= STADIUM PAGE STYLES ========= */
.stadium-hero {
    height: 60vh;
    min-height: 400px;
    background-image: url('https://images.unsplash.com/photo-1543351611-58f69d7c1781');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.stadium-details {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 60px 0;
}

.stadium-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stadium-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.stadium-image:hover img {
    transform: scale(1.05);
}

.stadium-text {
    flex: 1;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.info-item:hover i {
    color: var(--secondary-color);
}

.info-item h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.stadium-gallery {
    padding: 80px 0;
    background-color: var(--background-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.gallery-item:hover::before {
    background: rgba(0,0,0,0.1);
}

.stadium-map {
    padding: 80px 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.transport-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.transport-card:hover {
    transform: translateY(-10px);
    background-color: var(--accent-color);
}

.transport-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.transport-card:hover i {
    color: var(--secondary-color);
}

.transport-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .stadium-details {
        flex-direction: column;
    }
    
    .stadium-image, .stadium-text {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}


/* ========= SHOP PAGE STYLES ========= */
.shop-hero {
    height: 60vh;
    min-height: 400px;
    background-image: url('https://images.pexels.com/photos/10095953/pexels-photo-10095953.jpeg?_gl=1*12wis2w*_ga*OTkxOTc3MDg4LjE3NDcxNTM3MDU.*_ga_8JE65Q40S6*czE3NTAzOTg4ODMkbzY5JGcwJHQxNzUwMzk4ODgzJGo2MCRsMCRoMA..');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0;
}

.category-btn {
    padding: 12px 25px;
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 30px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover, .category-btn.active {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-family: 'Bebas Neue', cursive;
    font-size: 0.9rem;
    z-index: 2;
}

.product-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.7));
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.product-price {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-left: 10px;
}

.product-sizes {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-sizes span {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-sizes span:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.shop-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 56, 113, 0.9), rgba(0, 56, 113, 0.9)), url('https://images.unsplash.com/photo-1560272564-c83b66b1ad12');
    background-size: cover;
    background-position: center;
    margin-top: 60px;
}

.shop-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.shop-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-btn {
        flex: 0 0 auto;
    }
}

/* ========= MEMBER PAGE STYLES ========= */
.member-hero {
    height: 60vh;
    min-height: 400px;
    background-image: url('https://images.unsplash.com/photo-1543351611-58f69d7c1781');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 168, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.benefit-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.benefit-card p {
    color: var(--text-secondary);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tier-card {
    background-color: var(--secondary-color);
    padding: 40px 30px;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.tier-card.featured {
    border: 2px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 5px 20px;
    border-radius: 20px;
    font-family: 'Bebas Neue', cursive;
    font-size: 0.9rem;
}

.tier-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
    text-align: center;
}

.tier-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 25px;
}

.tier-price span {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.tier-features {
    margin-bottom: 30px;
}

.tier-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.tier-features i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 3px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: rgba(0, 168, 255, 0.2);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.member-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 56, 113, 0.9), rgba(0, 56, 113, 0.9)), url('https://images.unsplash.com/photo-1560272564-c83b66b1ad12');
    background-size: cover;
    background-position: center;
    margin-top: 60px;
}

.member-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.member-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tiers-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .member-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}