/* ========================================
   NOVA ROYALS AC - Enhanced Redesign
   Theme: Warm Community + Royal Gold/Black
   ======================================== */

:root {
    /* Brand Colors - Core */
    --gold: #C9A227;
    --gold-light: #E8D48A;
    --gold-lighter: #F5E6B3;
    --gold-dark: #9A7B1A;
    --gold-darker: #6B5612;
    --black: #1A1A1A;
    --charcoal: #2D2D2D;
    --gray-dark: #4A4A4A;
    --gray: #6B6B6B;
    --gray-light: #A0A0A0;
    --gray-lighter: #D0D0D0;

    /* Warm Community Colors */
    --cream: #FDF8F0;
    --cream-dark: #F5EBD9;
    --warm-white: #FFFDF9;
    --warm-accent: #E8D5B5;
    --warm-brown: #8B7355;

    /* Functional */
    --success: #4CAF50;
    --success-light: #E8F5E9;
    --white: #FFFFFF;
    --error: #E53935;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.3);
    --shadow-gold-lg: 0 10px 40px rgba(201, 162, 39, 0.4);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========================================
   Reset & Base
   ======================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.section-label--light {
    color: var(--gold-light);
}

.label-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.section-title--light {
    color: var(--white);
}

.title-accent {
    color: var(--gold);
    position: relative;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.9rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn svg {
    transition: transform var(--transition);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-glow {
    animation: btn-glow 2s ease-in-out infinite;
}

@keyframes btn-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(201, 162, 39, 0.3); }
    50% { box-shadow: 0 0 25px rgba(201, 162, 39, 0.5), 0 0 50px rgba(201, 162, 39, 0.2); }
}

.btn-secondary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-secondary:hover {
    background: var(--charcoal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-donate {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    border-radius: var(--radius-full);
    border: none;
}

.btn-donate svg {
    fill: var(--black);
    stroke: none;
}

.btn-donate:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
}

.btn-white {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.btn.full-width {
    width: 100%;
}

/* ========================================
   Header
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: var(--space-sm) 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: var(--space-xs) 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 1001;
}

.logo-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-icon--large {
    width: 60px;
    height: 60px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}

.logo-ac {
    color: var(--gold);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-xs) 0;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--white);
    opacity: 0.7;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.social-icons a:hover {
    opacity: 1;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

.social-icons svg {
    width: 16px;
    height: 16px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1024px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--black);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav.mobile-open {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .nav-link {
        font-size: 1.25rem;
    }

    .header-actions .social-icons {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(80px + var(--space-2xl)) var(--space-md) var(--space-2xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

/* Hero Carousel */
.hero-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}

.hero-carousel-slide.active {
    opacity: 1;
}

/* Legacy single image support */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.85) 0%,
        rgba(26, 26, 26, 0.6) 40%,
        rgba(26, 26, 26, 0.75) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A227' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.hero-decoration--left {
    left: -200px;
    top: 20%;
    animation: float 20s ease-in-out infinite;
}

.hero-decoration--right {
    right: -150px;
    bottom: 10%;
    width: 300px;
    height: 300px;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(5deg); }
    50% { transform: translate(0, -50px) rotate(0deg); }
    75% { transform: translate(-20px, -30px) rotate(-5deg); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    color: var(--white);
    animation: fadeInUp 1s ease forwards;
}

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

.hero-badge-wrapper {
    margin-bottom: var(--space-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.625rem 1.5rem;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    backdrop-filter: blur(10px);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    fill: var(--gold);
    stroke: var(--gold);
}

.hero-title {
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.title-welcome {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    background: rgba(201, 162, 39, 0.12);
    padding: 0.35em 1.2em;
    border-radius: 50px;
    margin-bottom: var(--space-sm);
}

.title-main {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1.05;
}

.title-main .highlight {
    color: var(--gold);
    position: relative;
}

.hero-tagline {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1.15rem, 2.5vw, 1.75rem);
    font-weight: 700;
    font-style: italic;
    color: var(--gold-light);
    letter-spacing: 0.02em;
    margin-bottom: var(--space-md);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto var(--space-lg);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.hero-sports {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.sport-tag {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
}

.sport-divider {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.6;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 22px;
        opacity: 0.3;
    }
}

/* ========================================
   Stats Bar
   ======================================== */

.stats-bar {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14z' fill='%23000' fill-opacity='.03'/%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    text-align: center;
    position: relative;
}

.stat-item {
    padding: var(--space-md);
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(0, 0, 0, 0.1);
}

.stat-item:last-child::after {
    display: none;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-full);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.stat-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal);
    margin-top: var(--space-xs);
}

.stat-item.special .stat-icon {
    background: var(--black);
}

.stat-item.special .stat-icon svg {
    stroke: var(--gold);
    fill: var(--gold);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .stat-item:nth-child(1)::after,
    .stat-item:nth-child(3)::after {
        right: 0;
        width: 1px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   Featured Events Bar
   ======================================== */

.featured-events {
    background: var(--charcoal);
    padding: var(--space-xl) 0;
}

.featured-events-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.featured-events-header h2 {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
}

.featured-events-all {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-events-all:hover {
    color: var(--gold);
}

.featured-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.featured-event-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.featured-event-card:hover {
    background: rgba(201, 162, 39, 0.08);
    border-color: rgba(201, 162, 39, 0.25);
    transform: translateY(-2px);
}

.featured-event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
    padding: 0.5rem 0;
    flex-shrink: 0;
}

.featured-event-date .event-month {
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.featured-event-date .event-day {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.featured-event-info {
    flex: 1;
    min-width: 0;
}

.featured-event-info h3 {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.featured-event-info p {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--gray-light);
    line-height: 1.5;
}

.featured-event-arrow {
    color: var(--gray-light);
    flex-shrink: 0;
    transition: color 0.3s ease, transform 0.2s ease;
}

.featured-event-card:hover .featured-event-arrow {
    color: var(--gold);
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .featured-events-grid {
        grid-template-columns: 1fr;
    }

    .featured-events-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ========================================
   About Section
   ======================================== */

.about {
    padding: var(--space-3xl) 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.about-bg-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

.about-lead {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: var(--space-md);
}

.about-text {
    font-size: 1.0625rem;
    color: var(--gray-dark);
    margin-bottom: var(--space-md);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--cream-dark);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.value-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--black);
}

.value-content h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.value-content p {
    font-size: 0.9375rem;
    color: var(--gray);
}

.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
    padding: var(--space-lg);
}

.stack-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.stack-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack-image--1 {
    position: relative;
    z-index: 2;
    border: 4px solid var(--white);
}

.stack-image--2 {
    position: absolute;
    width: 60%;
    right: 0;
    bottom: 0;
    z-index: 3;
    border: 4px solid var(--white);
}

.about-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    background: var(--black);
    color: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 4px;
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 968px) {
    .about-image-stack {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ========================================
   Programs Section
   ======================================== */

.programs {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.programs-explore {
    text-align: center;
    padding: var(--space-xl) 0;
}

.programs-explore-text {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.programs-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.programs-explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.programs-explore-btn svg {
    transition: transform 0.2s ease;
}

.programs-explore-btn:hover svg {
    transform: translateX(4px);
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.program-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.program-card--featured {
    grid-row: span 2;
}

.program-image {
    position: relative;
    overflow: hidden;
}

.program-card--featured .program-image {
    height: 100%;
    min-height: 300px;
}

.program-card:not(.program-card--featured) .program-image {
    height: 180px;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.program-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, transparent 60%);
}

.program-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    color: var(--white);
}

.program-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
}

.program-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--black);
}

.program-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.program-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
}

.program-ages {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid var(--gold);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-light);
}

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

    .program-card--featured {
        grid-row: span 1;
    }

    .program-card--featured .program-image {
        height: 250px;
        min-height: auto;
    }
}

/* ========================================
   Updates Section
   ======================================== */

.updates {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.updates-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray);
    background: var(--warm-white);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn svg {
    opacity: 0.5;
}

.tab-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.tab-btn:hover svg {
    opacity: 1;
    stroke: var(--gold);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-color: var(--gold);
    color: var(--black);
}

.tab-btn.active svg {
    opacity: 1;
    stroke: var(--black);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

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

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.result-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream-dark);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.result-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.375rem 0.75rem;
    background: var(--success-light);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--success);
}

.result-badge svg {
    fill: var(--success);
}

.result-header {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--cream-dark);
}

.league-name {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 4px;
}

.result-date {
    font-size: 0.8125rem;
    color: var(--gray-light);
}

.result-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.team {
    text-align: center;
    flex: 1;
}

.team-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.team-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray);
    background: var(--cream);
    border-radius: var(--radius-md);
}

.team-score.win {
    color: var(--white);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.vs-badge {
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-xs) var(--space-sm);
    background: var(--cream);
    border-radius: var(--radius-full);
}

.result-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success);
    padding-top: var(--space-md);
    border-top: 1px solid var(--cream-dark);
}

.result-status svg {
    stroke: var(--success);
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-xl);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold-dark);
    text-align: center;
    width: 100%;
    justify-content: center;
}

.view-all-link:hover {
    color: var(--gold);
}

.view-all-link:hover svg {
    transform: translateX(6px);
}

.view-all-link svg {
    transition: var(--transition);
}

.news-placeholder {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    background: var(--warm-white);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--cream-dark);
}

.placeholder-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background: var(--cream);
    border-radius: var(--radius-full);
}

.placeholder-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--gold);
}

.news-placeholder h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.news-placeholder p {
    color: var(--gray);
}

/* Email Signup Card (Upcoming Events Tab) */
.email-signup-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--cream-dark);
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 0 auto;
}

.email-signup-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold);
}

.email-signup-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--white);
}

.email-signup-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-sm);
}

.email-signup-description {
    font-size: 1.0625rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.email-signup-form {
    margin-bottom: var(--space-md);
}

.email-signup-input-wrapper {
    display: flex;
    gap: var(--space-sm);
    max-width: 460px;
    margin: 0 auto;
}

.email-signup-input-wrapper input {
    flex: 1;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.email-signup-input-wrapper input::placeholder {
    color: var(--gray-light);
}

.email-signup-input-wrapper input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.email-signup-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 1rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.email-signup-btn:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.email-signup-btn:active {
    transform: translateY(0);
}

.email-signup-btn svg {
    stroke: var(--black);
    transition: var(--transition);
}

.email-signup-btn:hover svg {
    transform: translateX(4px);
}

.email-signup-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--gray-light);
}

.email-signup-note svg {
    stroke: var(--success);
}

/* Email Signup Responsive */
@media (max-width: 600px) {
    .email-signup-card {
        padding: var(--space-xl) var(--space-md);
    }

    .email-signup-title {
        font-size: 1.5rem;
    }

    .email-signup-description {
        font-size: 1rem;
    }

    .email-signup-input-wrapper {
        flex-direction: column;
    }

    .email-signup-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Gallery Section
   ======================================== */

.gallery {
    background: var(--black);
    padding-bottom: var(--space-2xl);
}

.gallery-header {
    padding: var(--space-3xl) 0 var(--space-xl);
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: var(--transition);
}

.gallery-tag {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-left: var(--space-sm);
}

.gallery-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--gold);
    border-radius: 2px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cta {
    display: flex;
    justify-content: center;
    margin-top: var(--space-xl);
    padding: 0 var(--space-md);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-expand-wrapper {
    display: flex;
    justify-content: center;
    padding: 2rem 0 1rem;
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--cream-dark);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-quote {
    margin-bottom: var(--space-md);
}

.testimonial-quote svg {
    fill: var(--gold-light);
}

.testimonial-card p {
    font-size: 1.0625rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--cream-dark);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid var(--gold);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info cite {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    font-style: normal;
    color: var(--black);
}

.author-info span {
    font-size: 0.8125rem;
    color: var(--gold-dark);
}

@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ========================================
   Store Section
   ======================================== */

.store {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 0.375rem 1rem;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
}

.product-badge--new {
    background: var(--black);
    color: var(--white);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: var(--space-lg);
    text-align: center;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.product-description {
    font-size: 0.9375rem;
    color: var(--gray);
    margin-bottom: var(--space-md);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-link:hover {
    color: var(--gold);
}

.product-link:hover svg {
    transform: translateX(4px);
}

.product-link svg {
    transition: var(--transition);
}

.store-cta {
    display: flex;
    justify-content: center;
    margin-top: var(--space-xl);
}

/* Store Coming Soon */
.store-coming-soon {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--gold-light);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.store-coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.coming-soon-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    border-radius: var(--radius-full);
    animation: pulse-gentle 2s ease-in-out infinite;
}

@keyframes pulse-gentle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.coming-soon-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--gold);
}

.coming-soon-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.coming-soon-text {
    font-size: 1.125rem;
    color: var(--gray-dark);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto var(--space-xl);
}

.coming-soon-signup {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--cream-dark);
}

.signup-label {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.store-notify-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 450px;
    margin: 0 auto;
}

.store-notify-form input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--black);
    background: var(--white);
    transition: var(--transition);
}

.store-notify-form input::placeholder {
    color: var(--gray-light);
}

.store-notify-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
}

.store-notify-form .btn {
    white-space: nowrap;
}

@media (max-width: 540px) {
    .store-coming-soon {
        padding: var(--space-xl) var(--space-md);
    }

    .coming-soon-icon {
        width: 80px;
        height: 80px;
    }

    .coming-soon-icon svg {
        width: 40px;
        height: 40px;
    }

    .store-notify-form {
        flex-direction: column;
    }

    .store-notify-form .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 868px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Store Coming Soon Full Page */
.store-coming-soon-page {
    padding: var(--space-3xl) 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.store-coming-soon-page .coming-soon-content {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.store-coming-soon-page .coming-soon-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.store-coming-soon-page .coming-soon-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    animation: pulse-gentle 3s ease-in-out infinite;
}

.store-coming-soon-page .coming-soon-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--white);
}

.store-coming-soon-page .coming-soon-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-md);
}

.store-coming-soon-page .coming-soon-text {
    font-size: 1.25rem;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.store-coming-soon-page .coming-soon-subtext {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: var(--space-xl);
}

.store-coming-soon-page .coming-soon-signup {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
    margin-bottom: var(--space-xl);
}

.store-coming-soon-page .coming-soon-contact p {
    color: var(--gray);
    margin-bottom: var(--space-md);
}

@media (max-width: 540px) {
    .store-coming-soon-page .coming-soon-content {
        padding: var(--space-xl) var(--space-md);
        margin: 0 var(--space-md);
    }

    .store-coming-soon-page .coming-soon-icon {
        width: 80px;
        height: 80px;
    }

    .store-coming-soon-page .coming-soon-icon svg {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    position: relative;
    padding: var(--space-3xl) 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.9) 0%,
        rgba(26, 26, 26, 0.8) 100%
    );
}

.cta-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.cta-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid var(--gold);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-content h2 .highlight {
    color: var(--gold);
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-stat {
    text-align: center;
}

.cta-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.cta-stat-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
    .cta-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

.contact-description {
    font-size: 1.0625rem;
    color: var(--gray-dark);
    margin-bottom: var(--space-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
}

.contact-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 0.9375rem;
    color: var(--gray-dark);
    line-height: 1.5;
}

.contact-text a {
    color: var(--gold-dark);
}

.contact-text a:hover {
    color: var(--gold);
}

.social-links {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--cream-dark);
}

.social-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray);
    margin-bottom: var(--space-sm);
}

.social-icons-contact {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: var(--radius-full);
    color: var(--charcoal);
    transition: var(--transition);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--cream-dark);
}

.form-header {
    margin-bottom: var(--space-lg);
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.form-header p {
    font-size: 0.9375rem;
    color: var(--gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.9rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--cream);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-md);
    transition: var(--transition);
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--warm-white);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
}

.contact-form .btn {
    margin-top: var(--space-sm);
}

/* ========================================
   Partners Section
   ======================================== */

.partners {
    padding: var(--space-3xl) 0;
    background: var(--cream);
    overflow: hidden;
}

.partners-marquee {
    margin-top: var(--space-lg);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: var(--space-2xl);
    will-change: transform;
}

.partner-logo {
    flex-shrink: 0;
}

.partner-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 60px;
    padding: 0 var(--space-lg);
    background: var(--warm-white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray);
    transition: var(--transition);
}

.partner-logo:hover .partner-placeholder {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.partner-cta {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 0.9375rem;
    color: var(--gray);
}

.partner-cta a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--gold-dark);
    font-weight: 600;
}

.partner-cta a:hover {
    color: var(--gold);
}

.partner-cta a:hover svg {
    transform: translateX(4px);
}

.partner-cta svg {
    transition: var(--transition);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--black);
    color: var(--white);
}

.footer-top {
    padding: var(--space-3xl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-2xl);
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--charcoal);
    border-radius: var(--radius-full);
    color: var(--gray-light);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-links h4,
.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--gray-light);
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-newsletter p {
    font-size: 0.9375rem;
    color: var(--gray-light);
    margin-bottom: var(--space-md);
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--white);
    background: var(--charcoal);
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: var(--gray);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gold);
    border: none;
    border-radius: var(--radius-md);
    color: var(--black);
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

.footer-bottom {
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--charcoal);
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray);
}

.footer-bottom .credit a {
    color: var(--gold);
}

.footer-bottom .credit a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   Animations & Utilities
   ======================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ========================================
   Inner Page Styles
   ======================================== */

/* Solid Header for Inner Pages */
.header--solid {
    background: var(--black);
    position: relative;
}

.header--solid .logo-text {
    color: var(--white);
}

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    padding: var(--space-3xl) 0 var(--space-xl);
    margin-top: 0;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.page-hero-label .label-line {
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

/* About Mission Section */
.about-mission {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-2xl);
    align-items: start;
}

.mission-content {
    max-width: 700px;
}

.mission-lead {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: var(--space-md);
}

.mission-text {
    font-size: 1.0625rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.mission-value {
    padding: var(--space-md);
    background: var(--cream);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--gold);
}

.mission-value .value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    margin-bottom: var(--space-sm);
}

.mission-value .value-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.mission-value h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.mission-value p {
    font-size: 0.875rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

.mission-image {
    position: relative;
}

.mission-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.mission-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold-lg);
}

.mission-badge .badge-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--black);
    font-weight: 600;
}

.mission-badge .badge-year {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.mission-image--logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    min-height: 500px;
}

.mission-logo {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 40px rgba(201, 162, 39, 0.3));
}

/* About Stats Section */
.about-stats {
    padding: var(--space-2xl) 0;
    background: var(--black);
}

.about-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.about-stats .stat-item {
    text-align: center;
    padding: var(--space-lg);
}

.about-stats .stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.about-stats .stat-label {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* About CTA Section */
.about-cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    text-align: center;
}

.about-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.about-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-md);
}

.about-cta .highlight {
    color: var(--gold);
}

.about-cta p {
    font-size: 1.125rem;
    color: var(--gray-dark);
    margin-bottom: var(--space-lg);
}

/* Inner Page Responsive */
@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .mission-image {
        order: -1;
    }

    .mission-image img {
        height: 400px;
    }

    .mission-badge {
        bottom: 20px;
        right: 20px;
    }

    .about-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 280px;
        padding: var(--space-2xl) 0 var(--space-lg);
    }

    .mission-values {
        grid-template-columns: 1fr;
    }

    .about-stats .stat-number {
        font-size: 2.5rem;
    }
}

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

    .about-stats .stat-item {
        padding: var(--space-md);
    }

    .mission-image img {
        height: 300px;
    }

    .mission-badge {
        width: 80px;
        height: 80px;
    }

    .mission-badge .badge-year {
        font-size: 1.5rem;
    }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Print styles */
@media print {
    .header,
    .hero-scroll,
    .cta-section,
    .contact-form-wrapper {
        display: none;
    }

    body {
        font-size: 12pt;
        color: black;
        background: white;
    }
}

/* ========================================
   Events Page Styles
   ======================================== */

/* Upcoming Events Section */
.events-upcoming {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

/* Event Card */
.event-card {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--cream-dark);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

/* Event Date Badge */
.event-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: var(--space-md);
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
    color: var(--white);
    text-align: center;
}

.event-date-badge .event-month {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 4px;
}

.event-date-badge .event-day {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
}

.event-date-badge .event-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--gray-light);
    margin-top: 4px;
}

/* Event Content */
.event-content {
    flex: 1;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
}

/* Event Category Tags */
.event-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
    width: fit-content;
}

.event-category--training {
    background: rgba(76, 175, 80, 0.1);
    color: #2E7D32;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.event-category--tournament {
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold-dark);
    border: 1px solid rgba(201, 162, 39, 0.4);
}

.event-category--community {
    background: rgba(33, 150, 243, 0.1);
    color: #1565C0;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.event-category--fundraiser {
    background: rgba(156, 39, 176, 0.1);
    color: #7B1FA2;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.event-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

/* Event Meta Info */
.event-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--gray);
}

.event-meta-item svg {
    flex-shrink: 0;
    stroke: var(--gold);
}

.event-description {
    font-size: 0.9375rem;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.event-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Events Gallery Section */
.events-gallery {
    padding: var(--space-3xl) 0;
    background: var(--black);
}

.events-gallery .gallery-grid {
    margin-top: var(--space-xl);
}

/* Events CTA Section */
.events-cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    text-align: center;
}

.events-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.events-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-md);
}

.events-cta .highlight {
    color: var(--gold);
}

.events-cta p {
    font-size: 1.125rem;
    color: var(--gray-dark);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

/* Events Page Responsive */
@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .event-card {
        flex-direction: column;
    }

    .event-date-badge {
        flex-direction: row;
        min-width: auto;
        padding: var(--space-md) var(--space-lg);
        gap: var(--space-sm);
    }

    .event-date-badge .event-month {
        margin-bottom: 0;
    }

    .event-date-badge .event-day {
        font-size: 2rem;
    }

    .event-date-badge .event-year {
        margin-top: 0;
    }

    .event-content {
        padding: var(--space-md);
    }

    .event-title {
        font-size: 1.25rem;
    }
}

/* ========================================
   Contact Page Styles
   ======================================== */

.contact-page {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info-section {
    padding-right: var(--space-lg);
}

.contact-intro {
    font-size: 1.0625rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

/* Contact Details List */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-detail-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--cream-dark);
    transition: var(--transition);
}

.contact-detail-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.contact-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
}

.contact-detail-content h3 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 4px;
}

.contact-detail-content p {
    font-size: 1rem;
    color: var(--black);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 4px;
}

.contact-detail-content p a {
    color: var(--black);
}

.contact-detail-content p a:hover {
    color: var(--gold);
}

.contact-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-top: 4px;
}

.contact-detail-link:hover {
    color: var(--gold);
}

.contact-detail-link svg {
    transition: var(--transition);
}

.contact-detail-link:hover svg {
    transform: translate(3px, -3px);
}

.contact-detail-note {
    font-size: 0.8125rem;
    color: var(--gray);
}

/* Office Hours */
.office-hours {
    padding: var(--space-lg);
    background: var(--cream);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
}

.office-hours h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-md);
}

.office-hours h3 svg {
    stroke: var(--gold);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--cream-dark);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
}

.hours-time {
    font-size: 0.875rem;
    color: var(--gray-dark);
}

.hours-note {
    font-size: 0.8125rem;
    color: var(--gray);
    font-style: italic;
    line-height: 1.5;
}

/* Social Connect */
.social-connect {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--cream-dark);
}

.social-connect h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.social-connect > p {
    font-size: 0.9375rem;
    color: var(--gray);
    margin-bottom: var(--space-md);
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.social-link-card {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--cream);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: var(--transition);
}

.social-link-card svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-link-card:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* Contact Form Section */
.contact-form-section {
    position: sticky;
    top: 100px;
}

.contact-form-section .contact-form-wrapper {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--cream-dark);
}

.required {
    color: var(--error);
}

/* Map Section */
.contact-map-section {
    position: relative;
    background: var(--black);
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(30%);
}

.map-overlay-card {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 300px;
}

.map-card-content {
    padding: var(--space-lg);
}

.map-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.map-card-content p {
    font-size: 0.9375rem;
    color: var(--gray-dark);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

/* Contact CTA */
.contact-cta {
    padding: var(--space-3xl) 0;
    background: var(--black);
    text-align: center;
}

.contact-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.contact-cta .highlight {
    color: var(--gold);
}

.contact-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.contact-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .contact-info-section {
        padding-right: 0;
    }

    .contact-form-section {
        position: static;
    }

    .map-overlay-card {
        left: var(--space-md);
        bottom: var(--space-md);
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: var(--space-2xl) 0;
    }

    .social-links-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 350px;
    }

    .map-overlay-card {
        position: relative;
        left: 0;
        bottom: 0;
        max-width: 100%;
        border-radius: 0;
    }

    .contact-cta {
        padding: var(--space-2xl) 0;
    }
}

@media (max-width: 576px) {
    .contact-detail-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* ========================================
   Store Page Styles
   ======================================== */

/* Store Support Banner */
.store-support-banner {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: var(--space-md) 0;
}

.support-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.support-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.support-icon svg {
    stroke: var(--black);
}

.support-text {
    text-align: center;
}

.support-text p {
    color: var(--black);
    margin: 0;
}

.support-text p:first-child {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

.support-text p:last-child {
    font-size: 0.875rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .support-banner-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
}

/* Store Categories */
.store-categories {
    padding: var(--space-2xl) 0;
    background: var(--warm-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--cream-dark);
    transition: var(--transition);
}

.category-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.category-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--black);
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.category-card p {
    font-size: 0.875rem;
    color: var(--gray);
}

@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }

    .category-card {
        padding: var(--space-md);
    }

    .category-icon {
        width: 56px;
        height: 56px;
    }

    .category-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Store Featured Products */
.store-featured {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.featured-product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.featured-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.featured-product-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.featured-product-card:hover .featured-product-image img {
    transform: scale(1.05);
}

.featured-product-info {
    padding: var(--space-lg);
    text-align: center;
}

.featured-product-info .product-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.featured-product-info .product-description {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: var(--space-md);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
    .featured-products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Store Product Sections */
.store-section {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.store-section--alt {
    background: var(--cream);
}

.store-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.store-product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.store-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.store-product-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.store-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.store-product-card:hover .store-product-image img {
    transform: scale(1.05);
}

.store-product-info {
    padding: var(--space-md);
    text-align: center;
}

.store-product-info .product-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.store-product-info .product-price {
    font-size: 1.125rem;
    margin-bottom: 0;
}

.quick-view-btn {
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.store-product-card:hover .quick-view-btn,
.featured-product-card:hover .quick-view-btn {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .store-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .store-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .store-products-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .store-product-info {
        padding: var(--space-sm);
    }

    .store-product-info .product-name {
        font-size: 0.875rem;
    }
}

/* Size Guide Section */
.store-size-guide {
    padding: var(--space-3xl) 0;
    background: var(--black);
}

.size-guide-content {
    max-width: 900px;
    margin: 0 auto;
}

.size-guide-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.size-guide-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.size-guide-header p {
    font-size: 1rem;
    color: var(--gray-light);
}

.size-guide-tables {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.size-table {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.size-table h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.size-table table {
    width: 100%;
    border-collapse: collapse;
}

.size-table th,
.size-table td {
    padding: var(--space-sm);
    text-align: center;
    border-bottom: 1px solid var(--gray-dark);
}

.size-table th {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.size-table td {
    font-size: 0.9375rem;
    color: var(--white);
}

.size-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .size-guide-tables {
        grid-template-columns: 1fr;
    }
}

/* Store CTA Section */
.store-cta-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    text-align: center;
}

.store-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.store-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-md);
}

.store-cta-content .highlight {
    color: var(--gold);
}

.store-cta-content p {
    font-size: 1.125rem;
    color: var(--gray-dark);
    margin-bottom: var(--space-lg);
}

/* ========================================
   Get Involved Page Styles
   ======================================== */

/* Ways to Participate Section */
.involve-ways {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.involve-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.involve-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--cream-dark);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.involve-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.involve-card--featured {
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
    border-color: var(--gold);
}

.involve-card--featured h3,
.involve-card--featured p {
    color: var(--white);
}

.involve-card--featured .involve-features li {
    color: rgba(255, 255, 255, 0.8);
}

.involve-card--featured .involve-features svg {
    stroke: var(--gold);
}

.involve-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
}

.involve-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--black);
}

.involve-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-sm);
}

.involve-card > p {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.involve-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.involve-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--gray-dark);
}

.involve-features svg {
    flex-shrink: 0;
    stroke: var(--success);
}

.involve-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Registration Section */
.involve-register {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.register-info {
    color: var(--white);
}

.register-info p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.register-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.register-benefit {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
}

.benefit-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.benefit-text span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.register-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* FAQ Section */
.involve-faq {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--cream-dark);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
}

.faq-question svg {
    flex-shrink: 0;
    stroke: var(--gold);
    transition: transform var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-question:hover {
    background: var(--cream);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition), padding var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
    font-size: 0.9375rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--cream-dark);
}

.faq-cta p {
    font-size: 1.125rem;
    color: var(--gray-dark);
    margin-bottom: var(--space-md);
}

/* Get Involved Page Responsive */
@media (max-width: 992px) {
    .involve-grid {
        grid-template-columns: 1fr;
    }

    .register-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .involve-card {
        padding: var(--space-lg);
    }

    .involve-card-icon {
        width: 56px;
        height: 56px;
    }

    .involve-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .involve-card h3 {
        font-size: 1.25rem;
    }

    .register-form-wrapper {
        padding: var(--space-lg);
    }
}

@media (max-width: 576px) {
    .involve-ways,
    .involve-register,
    .involve-faq {
        padding: var(--space-2xl) 0;
    }

    .register-benefit {
        flex-direction: column;
        text-align: center;
    }

    .benefit-text strong,
    .benefit-text span {
        text-align: center;
    }
}

/* ========================================
   Donate Page Styles
   ======================================== */

/* Tax Deductible Notice */
.donate-notice {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: var(--space-lg) 0;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    max-width: 800px;
    margin: 0 auto;
}

.notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.notice-icon svg {
    stroke: var(--black);
}

.notice-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.notice-text p {
    font-size: 0.9375rem;
    color: var(--charcoal);
    line-height: 1.5;
}

@media (max-width: 600px) {
    .notice-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Impact Section */
.donate-impact {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.impact-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream-dark);
    text-align: center;
    transition: var(--transition);
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.impact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-full);
}

.impact-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--black);
}

.impact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-sm);
}

.impact-card p {
    font-size: 0.9375rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Donation Tiers Section */
.donate-tiers {
    padding: var(--space-3xl) 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.donate-tiers::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A227' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    position: relative;
}

.tier-card {
    background: var(--charcoal);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-dark);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.tier-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.tier-card--featured {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-color: var(--gold);
    transform: scale(1.05);
}

.tier-card--featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.tier-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.tier-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.tier-description {
    font-size: 0.875rem;
    color: var(--gray-light);
    line-height: 1.5;
    margin-bottom: var(--space-lg);
    min-height: 3em;
}

.tier-card .btn {
    width: 100%;
}

@media (max-width: 1100px) {
    .tiers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tier-card--featured {
        transform: none;
    }

    .tier-card--featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Donation Form Wrapper */
.donate-form-wrapper {
    background: var(--charcoal);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--gray-dark);
    position: relative;
}

.donate-form-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.donate-form-content > p {
    font-size: 1rem;
    color: var(--gray-light);
    margin-bottom: var(--space-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.donate-secure {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    font-size: 0.8125rem;
    color: var(--gray);
}

.donate-secure svg {
    stroke: var(--gray);
}

/* Other Ways to Give Section */
.donate-other {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.other-ways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.other-way-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream-dark);
    transition: var(--transition);
}

.other-way-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.other-way-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
}

.other-way-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--black);
}

.other-way-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-sm);
}

.other-way-content p {
    font-size: 0.9375rem;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.other-way-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.other-way-link:hover {
    color: var(--gold);
}

.other-way-link:hover svg {
    transform: translateX(4px);
}

.other-way-link svg {
    transition: var(--transition);
}

@media (max-width: 992px) {
    .other-ways-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Stripe Donation Form */
.stripe-donation-form {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: var(--space-xl);
}

.form-section-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-md);
}

/* Amount Selection Grid */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.amount-btn {
    padding: var(--space-md);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    background: var(--gray-dark);
    border: 2px solid var(--gray-dark);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.amount-btn:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

.amount-btn.active,
.amount-btn--featured.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-color: var(--gold);
    color: var(--black);
}

.amount-btn--featured {
    background: rgba(201, 162, 39, 0.15);
    border-color: var(--gold);
}

@media (max-width: 500px) {
    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Custom Amount Input */
.custom-amount-wrapper {
    margin-bottom: var(--space-md);
}

.custom-amount-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-light);
    margin-bottom: var(--space-xs);
}

.custom-amount-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--gray-dark);
    border: 2px solid var(--gray-dark);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.custom-amount-input-wrapper:focus-within {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
}

.currency-symbol {
    padding: 0 var(--space-sm) 0 var(--space-md);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
}

.custom-amount-input {
    flex: 1;
    padding: var(--space-md);
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--white);
    background: transparent;
    border: none;
    outline: none;
}

.custom-amount-input::placeholder {
    color: var(--gray);
}

/* Remove number input spinners */
.custom-amount-input::-webkit-outer-spin-button,
.custom-amount-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.custom-amount-input[type="number"] {
    -moz-appearance: textfield;
}

/* Selected Amount Display */
.selected-amount-display {
    text-align: center;
    padding: var(--space-sm) var(--space-md);
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--gray-light);
}

.selected-amount-display strong {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.25rem;
}

/* Donor Information Form */
.form-row-donate {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

@media (max-width: 500px) {
    .form-row-donate {
        grid-template-columns: 1fr;
    }
}

.form-group-donate {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-donate label {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-light);
}

.form-group-donate .required {
    color: var(--gold);
}

.form-group-donate input {
    padding: 0.9rem var(--space-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    background: var(--gray-dark);
    border: 2px solid var(--gray-dark);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.form-group-donate input::placeholder {
    color: var(--gray);
}

.form-group-donate input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
}

/* Form Error Display */
.form-error {
    display: none;
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    background: rgba(229, 57, 53, 0.1);
    border: 1px solid var(--error);
    border-radius: var(--radius-md);
    color: #ff6b6b;
    font-size: 0.9375rem;
    text-align: center;
}

.form-error.visible {
    display: block;
}

.form-error.config-mode {
    background: rgba(201, 162, 39, 0.1);
    border-color: var(--gold);
    color: var(--white);
    text-align: left;
}

.config-notice h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.config-notice ol,
.config-notice ul {
    margin: var(--space-sm) 0 var(--space-md) var(--space-md);
    padding-left: var(--space-md);
}

.config-notice li {
    margin-bottom: var(--space-xs);
    list-style: decimal;
}

.config-notice ul li {
    list-style: disc;
}

.config-notice p {
    margin-bottom: var(--space-xs);
}

.config-notice-links a {
    color: var(--gold);
    text-decoration: underline;
}

.config-notice-links a:hover {
    color: var(--gold-light);
}

/* Submit Button */
.donate-submit-btn {
    width: 100%;
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

.donate-submit-btn .btn-icon,
.donate-submit-btn .btn-text {
    transition: opacity var(--transition);
}

.donate-submit-btn .btn-loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

.donate-submit-btn.loading .btn-icon,
.donate-submit-btn.loading .btn-text {
    display: none;
}

.donate-submit-btn.loading .btn-loading {
    display: inline-flex;
}

.donate-submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* Spinner Animation */
.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Payment Badges */
.payment-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.stripe-badge {
    height: 24px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
}

.stripe-badge:hover {
    opacity: 1;
}

/* Payment Result Pages (Success/Cancel) */
.payment-result {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-3xl) + 80px) 0 var(--space-3xl);
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
}

.payment-result-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-2xl);
}

.payment-result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-xl);
    background: linear-gradient(135deg, var(--success) 0%, #2e7d32 100%);
    border-radius: var(--radius-full);
    animation: pop-in 0.5s ease-out;
}

.payment-result-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--white);
    stroke-width: 2.5;
}

.payment-result-icon--cancel {
    background: linear-gradient(135deg, var(--gray) 0%, var(--gray-dark) 100%);
}

@keyframes pop-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.payment-result-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.payment-result-content .highlight {
    color: var(--gold);
}

.payment-result-message {
    font-size: 1.125rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.payment-result-details {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
    text-align: left;
}

.payment-result-details p {
    color: var(--gray-light);
    margin-bottom: var(--space-sm);
}

.payment-result-details ul {
    margin: 0;
    padding-left: var(--space-lg);
}

.payment-result-details li {
    color: var(--white);
    margin-bottom: var(--space-xs);
    list-style: disc;
}

.payment-result-details--centered {
    text-align: center;
}

.payment-result-details--centered ul {
    display: inline-block;
    text-align: left;
}

.payment-result-share {
    margin-bottom: var(--space-xl);
}

.payment-result-share p {
    color: var(--gray);
    margin-bottom: var(--space-sm);
    font-size: 0.875rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.75rem 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--white);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.share-btn svg {
    width: 16px;
    height: 16px;
}

.share-btn--facebook {
    background: #1877F2;
}

.share-btn--facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.share-btn--twitter {
    background: #1DA1F2;
}

.share-btn--twitter:hover {
    background: #1a94da;
    transform: translateY(-2px);
}

.payment-result-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.payment-result-help {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-dark);
}

.payment-result-help p {
    color: var(--gray);
    font-size: 0.9375rem;
}

.payment-result-help a {
    color: var(--gold);
    text-decoration: underline;
}

.payment-result-help a:hover {
    color: var(--gold-light);
}

@media (max-width: 600px) {
    .payment-result-content {
        padding: var(--space-lg);
    }

    .payment-result-icon {
        width: 80px;
        height: 80px;
    }

    .payment-result-icon svg {
        width: 36px;
        height: 36px;
    }

    .share-buttons {
        flex-direction: column;
    }

    .payment-result-actions {
        flex-direction: column;
    }

    .payment-result-actions .btn {
        width: 100%;
    }
}

/* Thank You Section */
.donate-thanks {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.thanks-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-full);
    animation: pulse-heart 2s ease-in-out infinite;
}

@keyframes pulse-heart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.thanks-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--black);
    fill: var(--black);
}

.thanks-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-md);
}

.thanks-content .highlight {
    color: var(--gold);
}

.thanks-content > p {
    font-size: 1.125rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.thanks-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--cream-dark);
}

.thanks-stat {
    text-align: center;
}

.thanks-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.thanks-stat-label {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
}

@media (max-width: 600px) {
    .thanks-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .thanks-stat-number {
        font-size: 2rem;
    }
}

/* ========================================
   News Page Styles
   ======================================== */

.news-section {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

/* News Filter Tabs */
.news-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.news-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray);
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.news-filter-btn svg {
    width: 18px;
    height: 18px;
    opacity: 0.5;
    transition: var(--transition);
}

.news-filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.news-filter-btn:hover svg {
    opacity: 1;
    stroke: var(--gold);
}

.news-filter-btn.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-color: var(--gold);
    color: var(--black);
}

.news-filter-btn.active svg {
    opacity: 1;
    stroke: var(--black);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

/* News Card */
.news-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream-dark);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.news-card--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.news-card-image {
    position: relative;
    overflow: hidden;
}

.news-card:not(.news-card--featured) .news-card-image {
    height: 200px;
}

.news-card--featured .news-card-image {
    height: 100%;
    min-height: 300px;
    flex: 1;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.news-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

.news-card--featured .news-card-overlay {
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.8) 100%);
}

/* News Card Content */
.news-card-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card--featured .news-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    color: var(--white);
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
}

.news-card-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
}

.news-card-category--match {
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold-dark);
    border: 1px solid var(--gold);
}

.news-card-category--club {
    background: rgba(26, 26, 26, 0.08);
    color: var(--charcoal);
    border: 1px solid var(--gray-lighter);
}

.news-card-category--community {
    background: rgba(76, 175, 80, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.news-card-category--tournament {
    background: rgba(33, 150, 243, 0.1);
    color: #1976D2;
    border: 1px solid #2196F3;
}

.news-card--featured .news-card-category--match {
    background: rgba(201, 162, 39, 0.3);
    color: var(--gold-light);
}

.news-card--featured .news-card-category--club {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.news-card--featured .news-card-category--community {
    background: rgba(76, 175, 80, 0.2);
    color: #81C784;
}

.news-card--featured .news-card-category--tournament {
    background: rgba(33, 150, 243, 0.2);
    color: #64B5F6;
    border-color: rgba(100, 181, 246, 0.5);
}

.news-card-date {
    font-size: 0.8125rem;
    color: var(--gray);
}

.news-card--featured .news-card-date {
    color: rgba(255, 255, 255, 0.7);
}

.news-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

.news-card--featured .news-card-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
}

.news-card-excerpt {
    font-size: 0.9375rem;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    flex: 1;
}

.news-card--featured .news-card-excerpt {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: auto;
}

.news-card-link:hover {
    color: var(--gold);
}

.news-card-link:hover svg {
    transform: translateX(4px);
}

.news-card-link svg {
    transition: var(--transition);
}

.news-card--featured .news-card-link {
    color: var(--gold-light);
}

.news-card--featured .news-card-link:hover {
    color: var(--gold);
}

/* Load More Button */
.news-load-more {
    display: flex;
    justify-content: center;
    margin-top: var(--space-2xl);
}

/* News CTA Section */
.news-cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
    text-align: center;
}

.news-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.news-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.news-cta .highlight {
    color: var(--gold);
}

.news-cta p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.news-cta-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 500px;
    margin: 0 auto;
}

.news-cta-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    background: var(--charcoal);
    border: 2px solid var(--gray-dark);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.news-cta-form input::placeholder {
    color: var(--gray);
}

.news-cta-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--black);
}

/* News Page Responsive */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-card--featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .news-card--featured .news-card-image {
        height: 350px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .news-filters {
        gap: var(--space-xs);
    }

    .news-filter-btn {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
    }

    .news-filter-btn svg {
        display: none;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card--featured {
        grid-column: span 1;
    }

    .news-card--featured .news-card-image {
        height: 280px;
    }

    .news-card--featured .news-card-content {
        padding: var(--space-lg);
    }

    .news-cta-form {
        flex-direction: column;
    }

    .news-cta-form .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .news-filter-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.75rem;
    }

    .news-card-title {
        font-size: 1.125rem;
    }

    .news-card--featured .news-card-title {
        font-size: 1.25rem;
    }
}

/* ========================================
   League Page Styles
   ======================================== */

/* Sport Navigation Tabs */
.league-nav {
    background: var(--cream);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--cream-dark);
}

.sport-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.sport-tab {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray);
    background: var(--warm-white);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.sport-tab svg {
    opacity: 0.5;
    transition: var(--transition);
}

.sport-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.sport-tab:hover svg {
    opacity: 1;
    stroke: var(--gold);
}

.sport-tab.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-color: var(--gold);
    color: var(--black);
}

.sport-tab.active svg {
    opacity: 1;
    stroke: var(--black);
}

/* Sport Content Sections */
.sport-content {
    display: none;
}

.sport-content.active {
    display: block;
}

/* League Standings Section */
.league-standings {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.standings-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--cream-dark);
}

/* Standings Table */
.standings-table {
    width: 100%;
    border-collapse: collapse;
}

.standings-table thead {
    background: var(--black);
}

.standings-table th {
    padding: var(--space-md) var(--space-sm);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-align: center;
}

.standings-table th.col-team {
    text-align: left;
    padding-left: var(--space-lg);
}

.standings-table th.col-pos {
    width: 60px;
}

.standings-table th.col-stat {
    width: 50px;
}

.standings-table th.col-pts {
    width: 60px;
}

.standings-table tbody tr {
    border-bottom: 1px solid var(--cream-dark);
    transition: var(--transition);
}

.standings-table tbody tr:last-child {
    border-bottom: none;
}

.standings-table tbody tr:hover {
    background: var(--cream);
}

.standings-table td {
    padding: var(--space-md) var(--space-sm);
    font-size: 0.9375rem;
    text-align: center;
    color: var(--charcoal);
}

.standings-table td.col-team {
    text-align: left;
    padding-left: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.team-indicator {
    width: 4px;
    height: 24px;
    background: transparent;
    border-radius: 2px;
    flex-shrink: 0;
}

.team-indicator.our-team {
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.highlight-row {
    background: rgba(201, 162, 39, 0.08);
}

.highlight-row:hover {
    background: rgba(201, 162, 39, 0.15);
}

.position-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gray);
    background: var(--cream);
    border-radius: var(--radius-sm);
}

.position-badge.position-1 {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
}

.position-badge.position-2 {
    background: var(--gray-lighter);
    color: var(--charcoal);
}

.position-badge.position-3 {
    background: #CD7F32;
    color: var(--white);
}

/* Standings Legend */
.standings-legend {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-md);
    background: var(--cream);
    border-top: 1px solid var(--cream-dark);
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray);
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.legend-green {
    background: var(--success);
}

.legend-red {
    background: var(--error);
}

/* Recent Results Section */
.recent-results {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.recent-results .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

/* Match Card */
.match-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream-dark);
    transition: var(--transition);
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--cream-dark);
}

.match-league {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.match-date {
    font-size: 0.8125rem;
    color: var(--gray-light);
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.match-team {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.match-team.home {
    text-align: left;
    align-items: flex-start;
}

.match-team.away {
    text-align: right;
    align-items: flex-end;
}

.match-team .team-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
}

.match-team .team-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray);
    background: var(--cream);
    border-radius: var(--radius-md);
}

.match-team .team-score.win {
    color: var(--white);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.match-vs {
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-xs) var(--space-sm);
    background: var(--cream);
    border-radius: var(--radius-full);
}

.match-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    padding-top: var(--space-md);
    border-top: 1px solid var(--cream-dark);
}

.match-result.win {
    color: var(--success);
}

.match-result.win svg {
    stroke: var(--success);
}

.match-result.draw {
    color: var(--gray);
}

.match-result.draw svg {
    stroke: var(--gray);
}

.match-result.loss {
    color: var(--error);
}

.match-result.loss svg {
    stroke: var(--error);
}

/* Cricket Match Card */
.cricket-card .cricket-match {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.cricket-team {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm);
    background: var(--cream);
    border-radius: var(--radius-md);
}

.cricket-team .team-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--black);
}

.cricket-score {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.cricket-score small {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray);
}

/* Upcoming Fixtures Section */
.upcoming-fixtures {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.fixtures-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.fixture-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream-dark);
    transition: var(--transition);
}

.fixture-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.fixture-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: var(--space-md);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-lg);
    text-align: center;
}

.fixture-day {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.fixture-month {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal);
}

.fixture-details {
    flex: 1;
}

.fixture-league {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-xs);
}

.fixture-teams {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
}

.fixture-team {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--black);
}

.fixture-vs {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-light);
    text-transform: uppercase;
}

.fixture-info {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.fixture-time,
.fixture-venue {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--gray);
}

.fixture-time svg,
.fixture-venue svg {
    stroke: var(--gold);
    flex-shrink: 0;
}

.fixture-action {
    flex-shrink: 0;
}

/* Season Statistics Section */
.season-stats {
    padding: var(--space-3xl) 0;
    background: var(--black);
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--charcoal);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-dark);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.stat-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.stat-card-icon svg {
    stroke: var(--black);
}

.stat-card-content {
    display: flex;
    flex-direction: column;
}

.stat-card-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-card-label {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-light);
    margin-top: 4px;
}

/* Top Performers */
.top-performers {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-dark);
}

.performers-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.performers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.performer-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--charcoal);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-dark);
    transition: var(--transition);
}

.performer-card:hover {
    border-color: var(--gold);
}

.performer-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.performer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.performer-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.performer-position {
    font-size: 0.8125rem;
    color: var(--gray-light);
}

.performer-stat {
    text-align: right;
}

.performer-stat .stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.performer-stat .stat-type {
    font-size: 0.75rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* League Page Responsive */
@media (max-width: 992px) {
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .performers-grid {
        grid-template-columns: 1fr;
    }

    .fixture-card {
        flex-wrap: wrap;
    }

    .fixture-action {
        width: 100%;
        margin-top: var(--space-sm);
    }
}

@media (max-width: 768px) {
    .standings-table th.hide-mobile,
    .standings-table td.hide-mobile {
        display: none;
    }

    .standings-table th,
    .standings-table td {
        padding: var(--space-sm) var(--space-xs);
        font-size: 0.8125rem;
    }

    .standings-table td.col-team {
        padding-left: var(--space-sm);
    }

    .standings-table th.col-team {
        padding-left: var(--space-sm);
    }

    .stats-cards {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: var(--space-md);
    }

    .stat-card-icon {
        width: 56px;
        height: 56px;
    }

    .stat-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .stat-card-number {
        font-size: 1.75rem;
    }

    .match-teams {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .match-team.home,
    .match-team.away {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .fixture-card {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .fixture-date {
        margin: 0 auto;
    }

    .fixture-teams {
        justify-content: center;
    }

    .fixture-info {
        justify-content: center;
    }

    .performer-card {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .performer-info {
        width: 100%;
        align-items: center;
    }

    .performer-stat {
        width: 100%;
        text-align: center;
        margin-top: var(--space-sm);
    }
}

/* ========================================
   Lightbox / Modal
   ======================================== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 85vh;
    padding: var(--space-md);
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox.active .lightbox-image {
    opacity: 1;
    transform: scale(1);
}

.lightbox-caption {
    margin-top: var(--space-md);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    opacity: 0.9;
}

.lightbox-counter {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0.7;
    letter-spacing: 0.1em;
}

/* Lightbox Close Button */
.lightbox-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-full);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
}

/* Lightbox Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-full);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--gold);
}

.lightbox-nav:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.lightbox-prev {
    left: var(--space-md);
}

.lightbox-next {
    right: var(--space-md);
}

.lightbox-nav svg {
    width: 32px;
    height: 32px;
}

/* Lightbox Responsive */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95vw;
        max-height: 80vh;
        padding: var(--space-sm);
    }

    .lightbox-image {
        max-height: 70vh;
    }

    .lightbox-close {
        top: var(--space-sm);
        right: var(--space-sm);
        width: 40px;
        height: 40px;
    }

    .lightbox-close svg {
        width: 20px;
        height: 20px;
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
    }

    .lightbox-prev {
        left: var(--space-xs);
    }

    .lightbox-next {
        right: var(--space-xs);
    }

    .lightbox-nav svg {
        width: 24px;
        height: 24px;
    }

    .lightbox-caption {
        font-size: 0.875rem;
    }

    .lightbox-counter {
        bottom: var(--space-md);
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .lightbox-nav {
        width: 36px;
        height: 36px;
    }

    .lightbox-nav svg {
        width: 20px;
        height: 20px;
    }
}
