/**
 * USWDGC 2026 Landing Page
 * Design: "Utah Majesty" - Cinematic, athletic, prestigious
 * Brand Colors: Navy #003462, Teal #009f91, Gold #fabe28
 */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Roboto:wght@400;500;700&display=swap');

/* ==========================================================================
   @font-face - Suiza (Licensed for USWDGC content only)
   ========================================================================== */

@font-face {
    font-family: 'Suiza';
    src: url('/fonts/suiza/Suiza-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Suiza';
    src: url('/fonts/suiza/Suiza-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Suiza';
    src: url('/fonts/suiza/Suiza-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Suiza';
    src: url('/fonts/suiza/Suiza-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Suiza';
    src: url('/fonts/suiza/Suiza-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   CSS Custom Properties - USWDGC Brand Theme
   Official Brand Guide: Suiza (headlines), Roboto (body)
   ========================================================================== */

.page-majors-uswdgc2026 {
    /* Official USWDGC Brand Colors */
    --uswdgc-navy: #003462;      /* Dark Blue - Primary */
    --uswdgc-teal: #009f91;      /* Teal - Accent */
    --uswdgc-gold: #fabe28;      /* Yellow - Highlight */

    /* Derived shades */
    --uswdgc-navy-light: #0a4a7a;
    --uswdgc-teal-dark: #007d72;
    --uswdgc-gold-dark: #d9a520;

    /* Derived colors for effects */
    --uswdgc-surface: rgba(0, 52, 98, 0.95);
    --uswdgc-surface-light: rgba(0, 52, 98, 0.7);
    --uswdgc-glow-teal: rgba(0, 159, 145, 0.4);
    --uswdgc-glow-gold: rgba(250, 190, 40, 0.3);

    /* Typography - Per Brand Guide */
    --font-display: 'Suiza', system-ui, sans-serif;
    --font-body: 'Roboto', system-ui, sans-serif;
    --font-ui: 'Roboto', system-ui, sans-serif;

    /* Base font size - slightly larger for readability */
    font-size: 1.0625rem; /* 17px base */
    line-height: 1.6;
}

/* ==========================================================================
   Base Page Styles
   ========================================================================== */

.page-majors-uswdgc2026 {
    font-family: var(--font-body);
    background: var(--theme-bg-primary);
    padding: 0 !important;
    max-width: 100% !important;
}

/* ==========================================================================
   Hero Section - Full-Bleed Cinematic
   ========================================================================== */

.uswdgc-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(to bottom,
            rgba(0, 52, 98, 0) 0%,
            rgba(0, 52, 98, 0.3) 50%,
            rgba(0, 52, 98, 0.85) 85%,
            var(--uswdgc-navy) 100%),
        url('/images/majors/uswdgc2026/uswdgc-hero-v2.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.uswdgc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 80%, var(--uswdgc-glow-teal) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 90%, var(--uswdgc-glow-gold) 0%, transparent 50%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
    opacity: 0.5;
}

@keyframes heroGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

.uswdgc-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg,
        var(--uswdgc-teal) 0%,
        var(--uswdgc-gold) 50%,
        var(--uswdgc-teal) 100%);
}

/* Mountain silhouette decoration - hidden when using photo background */
.uswdgc-hero-mountains {
    display: none;
}

.uswdgc-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 2rem 4rem;
    max-width: 900px;
}

/* Hide redundant branding elements when using photo background */
.uswdgc-hero-pdga-major,
.uswdgc-hero-anniversary,
.uswdgc-hero-dates,
.uswdgc-hero-location {
    display: none !important;
}

/* Logo is baked into hero image - hide the card */
.uswdgc-hero-logo-card {
    display: none !important;
}

/* PDGA Major Logo - official branding (hidden with photo bg) */
.uswdgc-hero-pdga-major {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.uswdgc-pdga-major-logo {
    height: 80px;
    width: auto;
    /* Logo is white/reverse - perfect for dark background */
}

@media (min-width: 768px) {
    .uswdgc-pdga-major-logo {
        height: 100px;
    }
}

@media (min-width: 1200px) {
    .uswdgc-pdga-major-logo {
        height: 120px;
    }
}

/* 25th Anniversary Badge */
.uswdgc-hero-anniversary {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.15s both;
}

.uswdgc-anniversary-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1;
    color: var(--uswdgc-gold);
}

.uswdgc-anniversary-number sup {
    font-size: 0.4em;
    font-weight: 600;
    vertical-align: top;
    margin-left: 0.1em;
    position: relative;
    top: 0.2em;
}

.uswdgc-anniversary-label {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.9);
    margin-top: -0.25rem;
}

/* USWDGC Logo frosted glass card */
.uswdgc-hero-logo-card {
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 0 60px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* USWDGC Logo in hero */
.uswdgc-hero-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
}

/* Title Sponsor in Hero */
.uswdgc-title-sponsor {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.uswdgc-title-sponsor-label {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(0, 52, 98, 0.6);
    display: block;
    margin-bottom: 0.75rem;
}

.uswdgc-title-sponsor-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.uswdgc-title-sponsor-link:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(200, 30, 30, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.uswdgc-title-sponsor-logo {
    max-height: 44px;
    max-width: 160px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.uswdgc-title-sponsor-link:hover .uswdgc-title-sponsor-logo {
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .uswdgc-hero-logo-card {
        padding: 2.5rem 3rem;
    }

    .uswdgc-hero-logo {
        max-width: 360px;
    }

    .uswdgc-title-sponsor-link {
        padding: 1rem 2rem;
    }

    .uswdgc-title-sponsor-logo {
        max-height: 52px;
        max-width: 200px;
    }
}

@media (min-width: 1200px) {
    .uswdgc-hero-logo-card {
        padding: 3rem 4rem;
    }

    .uswdgc-hero-logo {
        max-width: 420px;
    }
}

/* ==========================================================================
   Title Sponsor Banner (below hero)
   ========================================================================== */

.uswdgc-title-sponsor-banner {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 1.25rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.uswdgc-title-sponsor-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 30, 30, 0.4), var(--uswdgc-gold), rgba(200, 30, 30, 0.4), transparent);
}

.uswdgc-title-sponsor-banner__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}

.uswdgc-title-sponsor-banner__label {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
}

.uswdgc-title-sponsor-banner__link {
    display: inline-block;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.uswdgc-title-sponsor-banner__link:hover {
    transform: scale(1.05);
}

.uswdgc-title-sponsor-banner__logo {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4));
}

@media (min-width: 768px) {
    .uswdgc-title-sponsor-banner {
        padding: 2.5rem 2rem;
    }

    .uswdgc-title-sponsor-banner__logo {
        height: 240px;
    }
}

/* PDGA Logo in hero badge */
.uswdgc-pdga-logo {
    height: 1.25rem;
    width: auto;
    /* Default: white logo for dark backgrounds */
    filter: none;
}

/* Light mode: convert white logo to PDGA blue */
@media (prefers-color-scheme: light) {
    .uswdgc-pdga-logo {
        filter: invert(15%) sepia(95%) saturate(2150%) hue-rotate(204deg) brightness(92%) contrast(107%);
    }
}

/* Also support the data attribute theme switching */
[data-theme="light"] .uswdgc-pdga-logo,
.light-mode .uswdgc-pdga-logo {
    filter: invert(15%) sepia(95%) saturate(2150%) hue-rotate(204deg) brightness(92%) contrast(107%);
}

.uswdgc-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 0.95;
    margin: 0 0 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.uswdgc-hero-year {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 700;
    line-height: 0.9;
    margin: 0 0 1rem;
    background: linear-gradient(135deg, var(--uswdgc-gold) 0%, #ffe066 50%, var(--uswdgc-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    text-shadow: 0 0 60px var(--uswdgc-glow-gold);
}

.uswdgc-hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 0.5rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.uswdgc-hero-dates {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--uswdgc-gold);
    margin: 0 0 0.5rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.uswdgc-hero-location {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Hero CTA container - path-based */
.uswdgc-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.uswdgc-hero-ctas-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.uswdgc-hero-ctas-primary {
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.uswdgc-hero-ctas-secondary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out 0.55s both;
}

.uswdgc-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--uswdgc-gold) 0%, var(--uswdgc-gold-dark) 100%);
    border: none;
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--uswdgc-navy);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out 0.5s both;
    box-shadow: 0 4px 20px var(--uswdgc-glow-gold);
}

.uswdgc-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--uswdgc-glow-gold);
    background: linear-gradient(135deg, #ffe066 0%, var(--uswdgc-gold) 100%);
    color: var(--uswdgc-navy);
}

.uswdgc-hero-cta i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.uswdgc-hero-cta:hover i {
    transform: translateX(4px);
}

.uswdgc-hero-cta-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    box-shadow: none;
}

.uswdgc-hero-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    box-shadow: none;
    transform: translateY(-2px);
}

/* Info variant - for pre-registration state */
.uswdgc-hero-cta-info {
    background: linear-gradient(135deg, var(--uswdgc-teal) 0%, var(--uswdgc-teal-dark) 100%);
    color: #ffffff;
}

.uswdgc-hero-cta-info:hover {
    background: linear-gradient(135deg, #4ecdc4 0%, var(--uswdgc-teal) 100%);
    color: #ffffff;
    box-shadow: 0 8px 30px var(--uswdgc-glow-teal);
}

/* BEM-style modifiers for hero CTAs */
.uswdgc-hero-cta--primary {
    background: linear-gradient(135deg, var(--uswdgc-gold) 0%, var(--uswdgc-gold-dark) 100%);
    color: var(--uswdgc-navy);
    box-shadow: 0 4px 20px var(--uswdgc-glow-gold);
}

.uswdgc-hero-cta--outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    box-shadow: none;
}

.uswdgc-hero-cta--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    box-shadow: none;
    transform: translateY(-2px);
}

/* Hero CTA with subtitle */
.uswdgc-hero-cta--with-sub {
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
    gap: 0.25rem;
}

.uswdgc-hero-cta__main {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.uswdgc-hero-cta__sub {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.02em;
    opacity: 0.8;
}

.uswdgc-hero-cta--primary .uswdgc-hero-cta__sub {
    color: var(--uswdgc-navy);
    opacity: 0.6;
}

.uswdgc-hero-cta--outline .uswdgc-hero-cta__sub {
    color: rgba(255, 255, 255, 0.6);
}

.uswdgc-hero-pdga-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s ease;
    animation: fadeInUp 0.6s ease-out 0.6s both;
    margin-top: 1rem;
    padding-bottom: 2rem; /* Space from bottom of hero */
}

.uswdgc-hero-pdga-link:hover {
    color: #ffffff;
}

.uswdgc-pdga-logo-small {
    height: 1rem;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.uswdgc-hero-pdga-link:hover .uswdgc-pdga-logo-small {
    opacity: 1;
}

.uswdgc-hero-pdga-link i {
    font-size: 0.75rem;
}

/* Scroll indicator - hidden by default, shown only when hero is tall enough */
.uswdgc-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: none; /* Hide to avoid overlap with PDGA link */
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s ease-in-out infinite;
}

/* Only show scroll indicator on larger screens with more space */
@media (min-width: 992px) and (min-height: 800px) {
    .uswdgc-scroll-indicator {
        display: flex;
    }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

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

/* ==========================================================================
   Section Base Styles
   ========================================================================== */

.uswdgc-section {
    padding: 5rem 2rem;
    position: relative;
}

.uswdgc-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.uswdgc-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.uswdgc-section-label {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--uswdgc-teal);
    margin-bottom: 0.75rem;
}

.uswdgc-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--theme-text-primary);
    margin: 0;
}

.uswdgc-section-subtitle {
    font-size: 1.1875rem;
    color: var(--theme-text-secondary);
    margin-top: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.uswdgc-about {
    background: var(--theme-bg-secondary);
}

/* ==========================================================================
   Photo Breaks - Parallax visual dividers between sections
   ========================================================================== */

.uswdgc-photo-break {
    position: relative;
    width: 100%;
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Hide the img element - we use background-image for parallax */
.uswdgc-photo-break-img {
    display: none;
}

/* Specific backgrounds for each photo break */
.uswdgc-photo-break--mountain {
    background-image: url('/images/majors/uswdgc2026/mountain-basket-portrait.webp');
    background-position: center 60%; /* Show the basket */
}

.uswdgc-photo-break--community {
    background-image: url('/images/majors/uswdgc2026/players-watching.jpg');
    background-position: center center;
}

.uswdgc-photo-break--valley {
    background-image: url('/images/majors/uswdgc2026/brighton-valley-view.webp');
    background-position: center 40%;
}

.uswdgc-photo-break--sunset {
    background-image: url('/images/majors/uswdgc2026/brighton-sunset.webp');
    background-position: center center;
}

/* Subtle overlay for depth */
.uswdgc-photo-break::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 52, 98, 0.1) 0%,
        transparent 20%,
        transparent 80%,
        rgba(0, 52, 98, 0.1) 100%
    );
    pointer-events: none;
}

@media (min-width: 768px) {
    .uswdgc-photo-break {
        height: 500px;
    }
}

@media (min-width: 1200px) {
    .uswdgc-photo-break {
        height: 600px;
    }

    /* On desktop, shift mountain photo down more to show the basket */
    .uswdgc-photo-break--mountain {
        background-position: center 85%;
    }
}

/* iOS/mobile: background-attachment:fixed doesn't work well, use regular scroll */
@supports (-webkit-touch-callout: none) {
    .uswdgc-photo-break {
        background-attachment: scroll;
    }
}

@media (hover: none) {
    .uswdgc-photo-break {
        background-attachment: scroll;
    }
}

/* ==========================================================================
   PLAYING AT ELEVATION SECTION
   ========================================================================== */

.uswdgc-elevation {
    background: linear-gradient(180deg, #f8f6f1 0%, #ffffff 50%, #f8f6f1 100%);
    position: relative;
}

.uswdgc-elevation .uswdgc-section-label {
    color: var(--uswdgc-teal) !important;
}

.uswdgc-elevation .uswdgc-section-title {
    color: var(--uswdgc-navy) !important;
}

.uswdgc-elevation .uswdgc-section-subtitle {
    color: #4a5568 !important;
}

/* Division Clarification Callout */
.uswdgc-elevation-callout {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 159, 145, 0.1) 0%, rgba(0, 159, 145, 0.05) 100%);
    border: 2px solid var(--uswdgc-teal);
    border-radius: 12px;
}

.uswdgc-elevation-callout-icon {
    flex-shrink: 0;
    color: var(--uswdgc-teal);
    font-size: 1.5rem;
}

.uswdgc-elevation-callout-content {
    font-size: 1rem;
    color: var(--uswdgc-navy);
    line-height: 1.6;
}

.uswdgc-division-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    background: var(--uswdgc-navy);
    border-radius: 4px;
    font-family: var(--uswdgc-font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.uswdgc-elevation-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .uswdgc-elevation-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }
}

/* Left Column - Infographic + Hero Tip */
.uswdgc-elevation-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Infographic */
.uswdgc-elevation-infographic {
    text-align: center;
}

.uswdgc-elevation-infographic-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 52, 98, 0.15);
}

.uswdgc-elevation-caption {
    margin-top: 1rem;
    font-family: var(--uswdgc-font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--uswdgc-navy);
    letter-spacing: 0.02em;
}

.uswdgc-elevation-caption i {
    color: var(--uswdgc-teal);
    margin-right: 0.5rem;
}

/* Tips Column */
.uswdgc-elevation-tips {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Hero Tip - Elevation Sickness Warning */
.uswdgc-elevation-hero-tip {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--uswdgc-navy) 0%, #001a33 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 52, 98, 0.25);
    position: relative;
    overflow: hidden;
}

.uswdgc-elevation-hero-tip::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, rgba(250, 190, 40, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

@media (min-width: 576px) {
    .uswdgc-elevation-hero-tip {
        flex-direction: row;
        align-items: flex-start;
        padding: 2rem;
    }
}

.uswdgc-elevation-hero-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--uswdgc-gold) 0%, #f5a623 100%);
    border-radius: 16px;
    color: var(--uswdgc-navy);
    font-size: 1.75rem;
    box-shadow: 0 4px 16px rgba(250, 190, 40, 0.4);
}

.uswdgc-elevation-hero-content {
    flex: 1;
}

.uswdgc-elevation-hero-label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin-bottom: 0.5rem;
    background: var(--uswdgc-gold);
    border-radius: 20px;
    font-family: var(--uswdgc-font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--uswdgc-navy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.uswdgc-elevation-hero-content h3 {
    margin: 0 0 0.75rem 0;
    font-family: var(--uswdgc-font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.uswdgc-elevation-hero-content p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.uswdgc-elevation-hero-content strong {
    color: var(--uswdgc-gold);
}

.uswdgc-elevation-tip {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 52, 98, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.uswdgc-elevation-tip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 52, 98, 0.12);
}

.uswdgc-elevation-tip-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--uswdgc-teal) 0%, #00b3a3 100%);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.25rem;
}

.uswdgc-elevation-tip-content h4 {
    margin: 0 0 0.25rem 0;
    font-family: var(--uswdgc-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--uswdgc-navy);
}

.uswdgc-elevation-tip-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
}

/* Guide Download Card */
.uswdgc-elevation-guide {
    margin-top: 1rem;
}

.uswdgc-elevation-guide-link {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 52, 98, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uswdgc-elevation-guide-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 52, 98, 0.2);
}

.uswdgc-elevation-guide-thumb {
    width: 100%;
    height: auto;
    display: block;
}

.uswdgc-elevation-guide-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(0deg, rgba(0, 52, 98, 0.95) 0%, rgba(0, 52, 98, 0.8) 100%);
    color: #ffffff;
    font-family: var(--uswdgc-font-display);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.uswdgc-elevation-guide-cta i {
    margin-right: 0.5rem;
}

.uswdgc-elevation-guide-link:hover .uswdgc-elevation-guide-cta {
    background: linear-gradient(0deg, var(--uswdgc-teal) 0%, rgba(0, 159, 145, 0.9) 100%);
}

/* Event Info Banner */
.uswdgc-event-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--uswdgc-navy) 0%, #001a33 100%);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0, 52, 98, 0.3);
}

@media (min-width: 768px) {
    .uswdgc-event-banner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem 3rem;
        padding: 2rem 3rem;
    }
}

/* Banner Logos */
.uswdgc-banner-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.uswdgc-banner-pdga {
    order: -1;
}

.uswdgc-banner-brighton {
    border-radius: 50%;
    border: 2px solid var(--uswdgc-teal);
    box-shadow: 0 4px 15px rgba(0, 159, 145, 0.3);
}

/* Banner Tagline - "Celebrating 25 years..." */
.uswdgc-banner-tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    font-style: italic;
    font-weight: 500;
    color: var(--uswdgc-gold);
    margin: 0;
    letter-spacing: 0.02em;
    text-align: center;
    order: 10; /* Ensure it's last in flex order */
}

@media (min-width: 768px) {
    .uswdgc-banner-tagline {
        flex-basis: 100%;
        font-size: 1.125rem;
        margin-top: 0.5rem;
        padding-top: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (min-width: 768px) {
    .uswdgc-banner-logo {
        height: 80px;
    }
}

@media (min-width: 1200px) {
    .uswdgc-banner-logo {
        height: 100px;
    }
}

.uswdgc-event-anniversary {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.uswdgc-anniversary-num {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    color: var(--uswdgc-gold);
    display: inline-flex;
    align-items: flex-start;
}

.uswdgc-anniversary-num sup {
    font-size: 0.35em;
    font-weight: 600;
    line-height: 1;
    margin-top: 0.3em;
}

.uswdgc-anniversary-text {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

.uswdgc-event-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .uswdgc-event-details {
        text-align: left;
        border-left: 2px solid var(--uswdgc-teal);
        padding-left: 2rem;
    }
}

.uswdgc-event-dates {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--uswdgc-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .uswdgc-event-dates {
        justify-content: flex-start;
    }
}

.uswdgc-event-dates i {
    color: var(--uswdgc-teal);
    font-size: 0.8em;
}

.uswdgc-event-location {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .uswdgc-event-location {
        justify-content: flex-start;
    }
}

.uswdgc-event-location i {
    color: var(--uswdgc-teal);
}

.uswdgc-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.uswdgc-about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--theme-text-secondary);
    margin-bottom: 1.5rem;
}

.uswdgc-about-content p:last-child {
    margin-bottom: 0;
}

.uswdgc-about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.uswdgc-stat {
    background: var(--theme-surface-1);
    border: 1px solid var(--theme-border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.uswdgc-stat:hover {
    border-color: var(--uswdgc-teal);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 159, 145, 0.15);
}

.uswdgc-stat-highlight {
    background: linear-gradient(135deg, rgba(250, 190, 40, 0.15) 0%, rgba(250, 190, 40, 0.05) 100%);
    border-color: var(--uswdgc-gold);
}

.uswdgc-stat-highlight:hover {
    border-color: var(--uswdgc-gold);
    box-shadow: 0 8px 30px rgba(250, 190, 40, 0.2);
}

.uswdgc-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--uswdgc-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.uswdgc-stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--theme-text-muted);
}

/* ==========================================================================
   Schedule Section
   ========================================================================== */

.uswdgc-schedule {
    background: linear-gradient(180deg, var(--theme-bg-primary) 0%, var(--theme-bg-secondary) 100%);
}

/* Timeline Toggle */
.uswdgc-timeline-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.uswdgc-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--theme-border-color);
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--theme-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.uswdgc-toggle-btn:hover {
    border-color: var(--uswdgc-teal);
    color: var(--uswdgc-teal);
}

.uswdgc-toggle-btn.active {
    background: linear-gradient(135deg, var(--uswdgc-teal) 0%, var(--uswdgc-teal-dark) 100%);
    border-color: var(--uswdgc-teal);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--uswdgc-glow-teal);
}

.uswdgc-toggle-btn.active:hover {
    color: #ffffff;
}

.uswdgc-toggle-btn i {
    font-size: 0.875rem;
}

/* Timeline container states */
.uswdgc-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.uswdgc-timeline.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.uswdgc-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--uswdgc-teal) 0%, var(--uswdgc-gold) 100%);
    transform: translateX(-50%);
}

.uswdgc-timeline-item {
    position: relative;
    padding: 1.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Consistent layout: dates on left (right-aligned), content on right (left-aligned) */
.uswdgc-timeline-date {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
}

.uswdgc-timeline-content {
    grid-column: 2;
    text-align: left;
}

.uswdgc-timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--uswdgc-teal);
    border: 3px solid var(--theme-bg-primary);
    border-radius: 50%;
    z-index: 1;
}

.uswdgc-timeline-item:hover .uswdgc-timeline-dot {
    background: var(--uswdgc-gold);
    box-shadow: 0 0 20px var(--uswdgc-glow-gold);
}

.uswdgc-timeline-date {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--uswdgc-teal);
}

.uswdgc-timeline-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--theme-text-primary);
    margin-bottom: 0.25rem;
}

.uswdgc-timeline-desc {
    font-size: 0.9375rem;
    color: var(--theme-text-muted);
}

.uswdgc-timeline-desc a {
    color: var(--uswdgc-teal);
    text-decoration: none;
    transition: color 0.2s ease;
}

.uswdgc-timeline-desc a:hover {
    color: var(--uswdgc-gold);
}

.uswdgc-timeline-desc a i {
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

/* Timeline Course Badge (Pool-Specific) */
.uswdgc-timeline-course {
    display: none;
    margin-top: 0.625rem;
}

.uswdgc-timeline-course:not(:empty) {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.uswdgc-timeline-course-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem 0.25rem 0.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(0, 159, 145, 0.08) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.2s ease;
}

.uswdgc-timeline-course-badge:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 159, 145, 0.12) 100%);
    border-color: rgba(212, 175, 55, 0.4);
    text-decoration: none;
}

/* Course emblem inside badge */
.uswdgc-timeline-course-emblem {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

/* Fallback icon when no emblem available */
.uswdgc-timeline-course-badge i {
    color: var(--path-competitor-accent, #d4af37);
    font-size: 0.6875rem;
}

.uswdgc-timeline-course-name {
    font-weight: 600;
    color: #fff;
}

/* Pool-specific timeline course badge colors */
[data-active-pool="A"] .uswdgc-timeline-course-badge {
    background: linear-gradient(135deg, rgba(191, 255, 31, 0.15) 0%, rgba(191, 255, 31, 0.05) 100%);
    border-color: rgba(191, 255, 31, 0.35);
}

[data-active-pool="A"] .uswdgc-timeline-course-badge:hover {
    background: linear-gradient(135deg, rgba(191, 255, 31, 0.25) 0%, rgba(191, 255, 31, 0.1) 100%);
    border-color: rgba(191, 255, 31, 0.5);
}

[data-active-pool="A"] .uswdgc-timeline-course-badge i {
    color: #BFFF1F;
}

[data-active-pool="A"] .uswdgc-timeline-course-emblem {
    border-color: rgba(191, 255, 31, 0.6);
}

[data-active-pool="B"] .uswdgc-timeline-course-badge {
    background: linear-gradient(135deg, rgba(88, 238, 238, 0.15) 0%, rgba(88, 238, 238, 0.05) 100%);
    border-color: rgba(88, 238, 238, 0.35);
}

[data-active-pool="B"] .uswdgc-timeline-course-badge:hover {
    background: linear-gradient(135deg, rgba(88, 238, 238, 0.25) 0%, rgba(88, 238, 238, 0.1) 100%);
    border-color: rgba(88, 238, 238, 0.5);
}

[data-active-pool="B"] .uswdgc-timeline-course-badge i {
    color: #58EEEE;
}

[data-active-pool="B"] .uswdgc-timeline-course-emblem {
    border-color: rgba(88, 238, 238, 0.6);
}

[data-active-pool="C"] .uswdgc-timeline-course-badge {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15) 0%, rgba(167, 139, 250, 0.05) 100%);
    border-color: rgba(167, 139, 250, 0.35);
}

[data-active-pool="C"] .uswdgc-timeline-course-badge:hover {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.25) 0%, rgba(167, 139, 250, 0.1) 100%);
    border-color: rgba(167, 139, 250, 0.5);
}

[data-active-pool="C"] .uswdgc-timeline-course-badge i {
    color: #a78bfa;
}

[data-active-pool="C"] .uswdgc-timeline-course-emblem {
    border-color: rgba(167, 139, 250, 0.6);
}

[data-active-pool="D"] .uswdgc-timeline-course-badge {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.15) 0%, rgba(244, 114, 182, 0.05) 100%);
    border-color: rgba(244, 114, 182, 0.35);
}

[data-active-pool="D"] .uswdgc-timeline-course-badge:hover {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.25) 0%, rgba(244, 114, 182, 0.1) 100%);
    border-color: rgba(244, 114, 182, 0.5);
}

[data-active-pool="D"] .uswdgc-timeline-course-badge i {
    color: #f472b6;
}

[data-active-pool="D"] .uswdgc-timeline-course-emblem {
    border-color: rgba(244, 114, 182, 0.6);
}

/* Light mode - course badge readability fix */
[data-bs-theme="light"] .uswdgc-timeline-course-badge,
html:not([data-bs-theme="dark"]) .uswdgc-timeline-course-badge {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(0, 159, 145, 0.1) 100%);
    border-color: rgba(212, 175, 55, 0.35);
    color: var(--uswdgc-navy, #003462);
}

[data-bs-theme="light"] .uswdgc-timeline-course-name,
html:not([data-bs-theme="dark"]) .uswdgc-timeline-course-name {
    color: var(--uswdgc-navy, #003462);
}

[data-bs-theme="light"] .uswdgc-timeline-course-emblem,
html:not([data-bs-theme="dark"]) .uswdgc-timeline-course-emblem {
    border-color: rgba(0, 52, 98, 0.25);
}

[data-bs-theme="light"] .uswdgc-timeline-course-badge i,
html:not([data-bs-theme="dark"]) .uswdgc-timeline-course-badge i {
    color: var(--uswdgc-teal, #009f91);
}

/* Light mode pool overrides */
[data-bs-theme="light"] [data-active-pool="A"] .uswdgc-timeline-course-badge,
html:not([data-bs-theme="dark"]) [data-active-pool="A"] .uswdgc-timeline-course-badge {
    background: linear-gradient(135deg, rgba(101, 163, 13, 0.12) 0%, rgba(101, 163, 13, 0.06) 100%);
    border-color: rgba(101, 163, 13, 0.4);
}

[data-bs-theme="light"] [data-active-pool="A"] .uswdgc-timeline-course-badge i,
html:not([data-bs-theme="dark"]) [data-active-pool="A"] .uswdgc-timeline-course-badge i {
    color: #4d7c0f;
}

[data-bs-theme="light"] [data-active-pool="A"] .uswdgc-timeline-course-emblem,
html:not([data-bs-theme="dark"]) [data-active-pool="A"] .uswdgc-timeline-course-emblem {
    border-color: rgba(101, 163, 13, 0.5);
}

[data-bs-theme="light"] [data-active-pool="B"] .uswdgc-timeline-course-badge,
html:not([data-bs-theme="dark"]) [data-active-pool="B"] .uswdgc-timeline-course-badge {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(6, 182, 212, 0.06) 100%);
    border-color: rgba(6, 182, 212, 0.4);
}

[data-bs-theme="light"] [data-active-pool="B"] .uswdgc-timeline-course-badge i,
html:not([data-bs-theme="dark"]) [data-active-pool="B"] .uswdgc-timeline-course-badge i {
    color: #0e7490;
}

[data-bs-theme="light"] [data-active-pool="B"] .uswdgc-timeline-course-emblem,
html:not([data-bs-theme="dark"]) [data-active-pool="B"] .uswdgc-timeline-course-emblem {
    border-color: rgba(6, 182, 212, 0.5);
}

[data-bs-theme="light"] [data-active-pool="C"] .uswdgc-timeline-course-badge,
html:not([data-bs-theme="dark"]) [data-active-pool="C"] .uswdgc-timeline-course-badge {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-color: rgba(124, 58, 237, 0.35);
}

[data-bs-theme="light"] [data-active-pool="C"] .uswdgc-timeline-course-badge i,
html:not([data-bs-theme="dark"]) [data-active-pool="C"] .uswdgc-timeline-course-badge i {
    color: #6d28d9;
}

[data-bs-theme="light"] [data-active-pool="C"] .uswdgc-timeline-course-emblem,
html:not([data-bs-theme="dark"]) [data-active-pool="C"] .uswdgc-timeline-course-emblem {
    border-color: rgba(124, 58, 237, 0.45);
}

[data-bs-theme="light"] [data-active-pool="D"] .uswdgc-timeline-course-badge,
html:not([data-bs-theme="dark"]) [data-active-pool="D"] .uswdgc-timeline-course-badge {
    background: linear-gradient(135deg, rgba(219, 39, 119, 0.1) 0%, rgba(219, 39, 119, 0.05) 100%);
    border-color: rgba(219, 39, 119, 0.35);
}

[data-bs-theme="light"] [data-active-pool="D"] .uswdgc-timeline-course-badge i,
html:not([data-bs-theme="dark"]) [data-active-pool="D"] .uswdgc-timeline-course-badge i {
    color: #be185d;
}

[data-bs-theme="light"] [data-active-pool="D"] .uswdgc-timeline-course-emblem,
html:not([data-bs-theme="dark"]) [data-active-pool="D"] .uswdgc-timeline-course-emblem {
    border-color: rgba(219, 39, 119, 0.45);
}

/* ==========================================================================
   Courses Section
   ========================================================================== */

.uswdgc-courses {
    background: var(--uswdgc-navy);
    position: relative;
    overflow: hidden;
}

.uswdgc-courses::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 100% at 0% 0%, rgba(0, 159, 145, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 80% 80% at 100% 100%, rgba(250, 190, 40, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.uswdgc-courses .uswdgc-section-title,
.uswdgc-courses .uswdgc-section-subtitle {
    color: #ffffff;
}

.uswdgc-courses .uswdgc-section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.uswdgc-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.uswdgc-course-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.uswdgc-course-card:hover {
    transform: translateY(-8px);
    border-color: var(--uswdgc-teal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Circular course logo container */
.uswdgc-course-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 159, 145, 0.15) 0%, rgba(250, 190, 40, 0.1) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.uswdgc-course-logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--uswdgc-teal);
    box-shadow: 0 4px 20px rgba(0, 159, 145, 0.3);
    transition: all 0.3s ease;
}

.uswdgc-course-card:hover .uswdgc-course-logo {
    border-color: var(--uswdgc-gold);
    box-shadow: 0 6px 25px rgba(250, 190, 40, 0.4);
    transform: scale(1.05);
}

.uswdgc-course-logo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 159, 145, 0.3) 0%, rgba(250, 190, 40, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.uswdgc-course-logo-placeholder i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Legacy rectangular image styles (kept for backwards compatibility) */
.uswdgc-course-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid var(--uswdgc-teal);
}

.uswdgc-course-image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgba(0, 159, 145, 0.3) 0%, rgba(250, 190, 40, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid var(--uswdgc-teal);
}

.uswdgc-course-image-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.uswdgc-course-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.uswdgc-course-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem;
    min-height: 3rem; /* Ensures alignment when names wrap differently */
}

.uswdgc-course-location {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.uswdgc-course-location i {
    color: var(--uswdgc-teal);
    margin-top: 0.2rem; /* Align icon with first line of text */
}

.uswdgc-course-summary {
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
}

/* Pool/Division Schedule Display - Editorial Style */
.uswdgc-course-pools {
    margin-top: 1.25rem;
    margin-bottom: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.uswdgc-pool-row {
    display: flex;
    align-items: baseline;
    gap: 0.875rem;
}

.uswdgc-pool-days {
    font-family: var(--font-ui);
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    min-width: 4.5rem;
    flex-shrink: 0;
}

.uswdgc-pool-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    align-items: center;
}

.uswdgc-pool-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.1875rem 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 3px;
    cursor: help;
    transition: all 0.15s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.uswdgc-pool-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

/* Pool badge colors - refined, editorial palette */
.uswdgc-pool-a {
    background: #BFFF1F;
    color: #2B3D00;
    box-shadow: 0 1px 3px rgba(191, 255, 31, 0.3);
}

.uswdgc-pool-a:hover {
    box-shadow: 0 3px 10px rgba(191, 255, 31, 0.4);
}

.uswdgc-pool-b {
    background: #58EEEE;
    color: #095D5D;
    box-shadow: 0 1px 3px rgba(88, 238, 238, 0.3);
}

.uswdgc-pool-b:hover {
    box-shadow: 0 3px 10px rgba(88, 238, 238, 0.4);
}

.uswdgc-pool-c {
    background: #818cf8;
    color: #1e1b4b;
    box-shadow: 0 1px 3px rgba(129, 140, 248, 0.3);
}

.uswdgc-pool-c:hover {
    box-shadow: 0 3px 10px rgba(129, 140, 248, 0.4);
}

.uswdgc-pool-d {
    background: #f472b6;
    color: #831843;
    box-shadow: 0 1px 3px rgba(244, 114, 182, 0.3);
}

.uswdgc-pool-d:hover {
    box-shadow: 0 3px 10px rgba(244, 114, 182, 0.4);
}

/* Custom tooltip for pool badges */
.uswdgc-pool-badge[data-tooltip] {
    position: relative;
}

.uswdgc-pool-badge[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 0.75rem;
    background: var(--uswdgc-navy);
    color: #ffffff;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    white-space: normal;
    max-width: 200px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    pointer-events: none;
}

.uswdgc-pool-badge[data-tooltip]::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--uswdgc-navy);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
}

.uswdgc-pool-badge[data-tooltip]:hover::after,
.uswdgc-pool-badge[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
}

.uswdgc-course-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0.75rem 0 1rem;
}

.uswdgc-course-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.uswdgc-course-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.uswdgc-course-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.uswdgc-course-link i {
    font-size: 0.75rem;
    opacity: 0.7;
}

.uswdgc-course-link-history {
    background: rgba(0, 159, 145, 0.15);
    border-color: rgba(0, 159, 145, 0.3);
    color: var(--uswdgc-teal);
}

.uswdgc-course-link-history:hover {
    background: rgba(0, 159, 145, 0.25);
    border-color: var(--uswdgc-teal);
    color: #2dd4bf;
}

.uswdgc-course-link-youtube {
    background: rgba(255, 107, 107, 0.12);
    border-color: rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

.uswdgc-course-link-youtube:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
    color: #ff8787;
}

.uswdgc-course-link-youtube i {
    font-size: 0.875rem;
    opacity: 1;
}

.uswdgc-course-link-pdga {
    background: rgba(0, 82, 155, 0.15);
    border-color: rgba(0, 82, 155, 0.3);
    color: #4da3ff;
}

.uswdgc-course-link-pdga:hover {
    background: rgba(0, 82, 155, 0.25);
    border-color: #4da3ff;
    color: #7ab8ff;
}

.uswdgc-pdga-logo-inline {
    height: 1rem;
    width: auto;
    vertical-align: middle;
    filter: brightness(1.3);
}

/* ==========================================================================
   Volunteer Section
   ========================================================================== */

.uswdgc-volunteer {
    background: var(--theme-bg-primary);
}

.uswdgc-volunteer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.uswdgc-volunteer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 159, 145, 0.15);
    border: 1px solid var(--uswdgc-teal);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--uswdgc-teal);
}

.uswdgc-volunteer-badge.recognized {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--theme-success);
    color: var(--theme-success);
}

.uswdgc-volunteer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.uswdgc-volunteer-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--theme-surface-1);
    border: 2px dashed var(--theme-border-color);
    border-radius: 12px;
}

.uswdgc-volunteer-empty i {
    font-size: 3rem;
    color: var(--uswdgc-teal);
    margin-bottom: 1rem;
}

.uswdgc-volunteer-empty h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--theme-text-primary);
    margin: 0 0 0.5rem;
}

.uswdgc-volunteer-empty p {
    color: var(--theme-text-muted);
    margin: 0;
}

/* Volunteer Summary - Progressive Disclosure */
.uswdgc-volunteer-summary {
    background: linear-gradient(135deg, var(--uswdgc-navy) 0%, var(--uswdgc-navy-light) 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 159, 145, 0.3);
    position: relative;
    overflow: hidden;
}

.uswdgc-volunteer-summary::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, var(--uswdgc-glow-teal) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.uswdgc-volunteer-summary-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.uswdgc-volunteer-summary-icon {
    width: 64px;
    height: 64px;
    background: var(--uswdgc-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.uswdgc-volunteer-summary-icon i {
    font-size: 1.75rem;
    color: white;
}

.uswdgc-volunteer-summary-text {
    flex: 1;
}

.uswdgc-volunteer-summary-text h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem;
}

.uswdgc-volunteer-summary-text p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

.uswdgc-volunteer-expand-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
}

.uswdgc-volunteer-expand-btn i {
    transition: transform 0.3s ease;
}

/* Collapsed state for grid and sections */
.uswdgc-volunteer-grid-collapsed {
    display: none;
    opacity: 0;
    transform: translateY(-20px);
}

/* Expanded state for grid */
.uswdgc-volunteer-grid-expanded {
    display: grid;
    opacity: 1;
    transform: translateY(0);
    animation: volunteerGridReveal 0.4s ease-out;
}

/* Expanded state for sections container */
.uswdgc-volunteer-sections.uswdgc-volunteer-grid-expanded {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    animation: volunteerGridReveal 0.4s ease-out;
}

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

/* Summary hidden when expanded */
.uswdgc-volunteer-summary-hidden {
    display: none;
}

/* Collapse button wrapper */
.uswdgc-volunteer-collapse-wrapper {
    text-align: center;
    margin-top: 1.5rem;
}

.uswdgc-volunteer-collapse-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.uswdgc-volunteer-collapse-btn i {
    transition: transform 0.3s ease;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .uswdgc-volunteer-summary {
        padding: 1.5rem;
    }

    .uswdgc-volunteer-summary-content {
        flex-direction: column;
        text-align: center;
    }

    .uswdgc-volunteer-summary-text h4 {
        font-size: 1.25rem;
    }

    .uswdgc-volunteer-summary-text p {
        font-size: 1rem;
    }

    .uswdgc-volunteer-expand-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Volunteer Event Cards */
.uswdgc-event-card {
    display: flex;
    flex-direction: column;
    background: var(--theme-surface-1);
    border: 1px solid var(--theme-border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.uswdgc-event-card:hover {
    border-color: var(--uswdgc-teal);
    box-shadow: 0 8px 30px rgba(0, 159, 145, 0.1);
}

.uswdgc-event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--theme-border-color);
}

.uswdgc-event-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem;
}

.uswdgc-event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.uswdgc-event-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--theme-text-primary);
    margin: 0 0 0.5rem;
}

.uswdgc-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--theme-text-muted);
}

.uswdgc-event-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.uswdgc-event-meta i {
    color: var(--uswdgc-teal);
}

.uswdgc-event-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.uswdgc-event-badge.rsvp {
    background: rgba(0, 159, 145, 0.15);
    color: var(--uswdgc-teal);
}

.uswdgc-event-badge.closed {
    background: rgba(148, 163, 184, 0.15);
    color: var(--theme-text-muted);
}

/* Championship Week Event Badge - Gold Theme */
.uswdgc-event-badge.championship {
    background: rgba(250, 190, 40, 0.2);
    color: var(--uswdgc-gold);
    border: 1px solid rgba(250, 190, 40, 0.3);
}

.uswdgc-event-badge.championship.rsvp {
    background: rgba(250, 190, 40, 0.25);
    color: var(--uswdgc-gold);
}

/* Championship Week Single Card - Out-of-towner Interest */
.uswdgc-championship-week-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(250, 190, 40, 0.1) 0%, rgba(250, 190, 40, 0.02) 100%);
    border: 2px solid rgba(250, 190, 40, 0.4);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.uswdgc-championship-week-card:hover {
    border-color: var(--uswdgc-gold);
    box-shadow: 0 8px 30px rgba(250, 190, 40, 0.15);
}

.uswdgc-championship-week-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--uswdgc-gold) 0%, #d4940c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.uswdgc-championship-week-icon i {
    font-size: 1.75rem;
    color: #1a1a2e;
}

.uswdgc-championship-week-content {
    flex: 1;
}

.uswdgc-championship-week-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.uswdgc-championship-week-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--uswdgc-gold);
    margin: 0;
}

.uswdgc-championship-week-dates {
    font-size: 0.9rem;
    color: var(--theme-text-muted);
    font-weight: 500;
}

.uswdgc-championship-week-description {
    font-size: 1rem;
    color: var(--theme-text-secondary);
    margin: 0 0 0.75rem;
    line-height: 1.6;
}

.uswdgc-championship-week-interest {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--uswdgc-gold);
    font-weight: 500;
}

.uswdgc-championship-week-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
}

.uswdgc-championship-week-actions .uswdgc-event-badge {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

@media (max-width: 767px) {
    .uswdgc-championship-week-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .uswdgc-championship-week-header {
        justify-content: center;
    }

    .uswdgc-championship-week-actions {
        align-items: center;
        width: 100%;
    }

    .uswdgc-championship-week-actions .uswdgc-btn {
        width: 100%;
    }
}

/* Volunteer Sections Container */
.uswdgc-volunteer-sections {
    flex-direction: column;
    gap: 3rem;
}

/* Collapsed state - must come after base styles */
.uswdgc-volunteer-sections.uswdgc-volunteer-grid-collapsed {
    display: none !important;
}

/* Individual Volunteer Section */
.uswdgc-volunteer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Volunteer Section Headers */
.uswdgc-volunteer-section-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.uswdgc-volunteer-section-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.uswdgc-volunteer-section-header h3 .date-range {
    font-size: 1rem;
    font-weight: 400;
    color: var(--theme-text-muted);
    text-transform: none;
    letter-spacing: normal;
    display: block;
    margin-top: 0.25rem;
}

.uswdgc-volunteer-section-header .section-subtitle {
    font-size: 1rem;
    color: var(--theme-text-secondary);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Local Open Houses Section - Teal styling */
.open-house-section .uswdgc-volunteer-section-header .section-subtitle i {
    color: var(--uswdgc-teal);
}

.uswdgc-event-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--theme-text-secondary);
    margin-bottom: 1rem;
}

.uswdgc-event-location-detail {
    font-size: 0.875rem;
    color: var(--theme-text-muted);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.uswdgc-event-location-detail i {
    color: var(--uswdgc-teal);
}

.uswdgc-event-rsvp-count {
    font-size: 0.875rem;
    color: var(--uswdgc-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.uswdgc-event-rsvp-count i {
    opacity: 0.8;
}

.uswdgc-event-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
}

/* RSVP Buttons */
.uswdgc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.uswdgc-btn-primary {
    background: linear-gradient(135deg, var(--uswdgc-teal) 0%, var(--uswdgc-teal-dark) 100%);
    color: #ffffff;
}

.uswdgc-btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #00b3a3 0%, var(--uswdgc-teal) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--uswdgc-glow-teal);
}

.uswdgc-btn-outline {
    background: transparent;
    border: 1px solid var(--theme-border-color);
    color: var(--theme-text-primary);
}

.uswdgc-btn-outline:hover:not(:disabled) {
    border-color: var(--uswdgc-teal);
    color: var(--uswdgc-teal);
}

.uswdgc-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Gold Button - for Championship Week events */
.uswdgc-btn-gold {
    background: linear-gradient(135deg, var(--uswdgc-gold) 0%, #d4940c 100%);
    color: #1a1a2e;
    font-weight: 700;
}

.uswdgc-btn-gold:hover:not(:disabled) {
    background: linear-gradient(135deg, #ffc73d 0%, var(--uswdgc-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(250, 190, 40, 0.4);
    color: #1a1a2e;
}

/* ==========================================================================
   Community Powered Section - Victory Celebration
   ========================================================================== */

.uswdgc-community-powered {
    background: linear-gradient(180deg, #001a33 0%, var(--uswdgc-navy) 50%, #001a33 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0 6rem;
}

/* Animated Rays Background */
.uswdgc-rays {
    position: absolute;
    inset: 0;
    background:
        conic-gradient(from 0deg at 50% 100%,
            transparent 0deg,
            rgba(250, 190, 40, 0.03) 10deg,
            transparent 20deg,
            rgba(250, 190, 40, 0.02) 30deg,
            transparent 40deg,
            rgba(250, 190, 40, 0.03) 50deg,
            transparent 60deg,
            rgba(250, 190, 40, 0.02) 70deg,
            transparent 80deg,
            rgba(250, 190, 40, 0.03) 90deg,
            transparent 100deg,
            rgba(250, 190, 40, 0.02) 110deg,
            transparent 120deg,
            rgba(250, 190, 40, 0.03) 130deg,
            transparent 140deg,
            rgba(250, 190, 40, 0.02) 150deg,
            transparent 160deg,
            rgba(250, 190, 40, 0.03) 170deg,
            transparent 180deg
        );
    opacity: 0.8;
    animation: raysPulse 8s ease-in-out infinite;
}

@keyframes raysPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

/* Particle dots */
.uswdgc-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, var(--uswdgc-gold) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, var(--uswdgc-teal) 1px, transparent 1px),
        radial-gradient(circle at 40% 70%, var(--uswdgc-gold) 1px, transparent 1px),
        radial-gradient(circle at 90% 60%, var(--uswdgc-teal) 1px, transparent 1px),
        radial-gradient(circle at 10% 80%, var(--uswdgc-gold) 1px, transparent 1px),
        radial-gradient(circle at 60% 10%, var(--uswdgc-teal) 1px, transparent 1px),
        radial-gradient(circle at 30% 50%, var(--uswdgc-gold) 1px, transparent 1px),
        radial-gradient(circle at 70% 85%, var(--uswdgc-teal) 1px, transparent 1px);
    background-size: 100% 100%;
    opacity: 0.4;
    animation: particlesFloat 20s linear infinite;
}

@keyframes particlesFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

.uswdgc-community-powered .uswdgc-section-inner {
    position: relative;
    z-index: 1;
}

.uswdgc-community-powered .uswdgc-section-label {
    color: var(--uswdgc-teal);
}

.uswdgc-community-powered .uswdgc-section-title {
    color: #fff;
    font-size: 3rem;
    background: linear-gradient(135deg, #fff 0%, var(--uswdgc-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.uswdgc-community-powered .uswdgc-section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Victory Banner */
.uswdgc-victory-banner {
    margin-bottom: 1rem;
}

.uswdgc-victory-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--uswdgc-gold) 0%, #d9a520 100%);
    color: var(--uswdgc-navy);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 100px;
    box-shadow:
        0 4px 20px rgba(250, 190, 40, 0.4),
        0 0 40px rgba(250, 190, 40, 0.2);
    animation: victoryGlow 2s ease-in-out infinite;
}

.uswdgc-victory-badge i {
    font-size: 1rem;
}

@keyframes victoryGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(250, 190, 40, 0.4), 0 0 40px rgba(250, 190, 40, 0.2); }
    50% { box-shadow: 0 4px 30px rgba(250, 190, 40, 0.6), 0 0 60px rgba(250, 190, 40, 0.3); }
}

/* Progress Bar - Overflowing */
.uswdgc-progress-container {
    max-width: 500px;
    margin: 2.5rem auto;
}

.uswdgc-progress-bar {
    position: relative;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    overflow: visible;
}

.uswdgc-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--progress, 100%);
    background: linear-gradient(90deg, var(--uswdgc-teal) 0%, var(--uswdgc-gold) 100%);
    border-radius: 100px;
    transition: width 1s ease-out;
}

.uswdgc-progress-overflow {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--uswdgc-gold);
    border-radius: 50%;
    box-shadow:
        0 0 20px rgba(250, 190, 40, 0.6),
        0 0 40px rgba(250, 190, 40, 0.3);
    animation: overflowPulse 1.5s ease-in-out infinite;
}

.uswdgc-progress-overflow::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    color: var(--uswdgc-navy);
}

@keyframes overflowPulse {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.15); }
}

.uswdgc-progress-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(90deg, transparent 0%, rgba(250, 190, 40, 0.3) 100%);
    border-radius: 100px;
    filter: blur(8px);
    opacity: 0.6;
}

.uswdgc-progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
}

.uswdgc-progress-raised {
    color: var(--uswdgc-gold);
    font-weight: 600;
}

.uswdgc-progress-goal {
    color: rgba(255, 255, 255, 0.5);
}

/* Stats Scoreboard */
.uswdgc-scoreboard {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin: 3rem auto;
    max-width: 700px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.uswdgc-score-item {
    flex: 1;
    padding: 0 1.5rem;
    position: relative;
}

.uswdgc-score-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.uswdgc-score-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.uswdgc-score-icon {
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    font-size: 1rem;
    color: var(--uswdgc-teal);
    opacity: 0.4;
}

.uswdgc-score-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

/* MVP Spotlight */
.uswdgc-mvp-spotlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem auto;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, rgba(250, 190, 40, 0.1) 0%, rgba(250, 190, 40, 0.02) 100%);
    border: 1px solid rgba(250, 190, 40, 0.3);
    border-radius: 16px;
    max-width: 420px;
}

.uswdgc-mvp-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.uswdgc-mvp-crown {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%) rotate(-12deg);
    color: var(--uswdgc-gold);
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(250, 190, 40, 0.5));
    z-index: 2;
    animation: crownBob 3s ease-in-out infinite;
}

@keyframes crownBob {
    0%, 100% { transform: translateX(-50%) rotate(-12deg) translateY(0); }
    50% { transform: translateX(-50%) rotate(-8deg) translateY(-2px); }
}

.uswdgc-mvp-avatar {
    width: 72px !important;
    height: 72px !important;
    border-radius: 50% !important;
    border: 3px solid var(--uswdgc-gold) !important;
    box-shadow: 0 4px 20px rgba(250, 190, 40, 0.3);
}

.uswdgc-mvp-content {
    text-align: left;
}

.uswdgc-mvp-label {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--uswdgc-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.25rem;
}

.uswdgc-mvp-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.uswdgc-mvp-name a {
    color: inherit;
    text-decoration: none;
}

.uswdgc-mvp-name a:hover {
    color: var(--uswdgc-gold);
}

.uswdgc-mvp-pdga {
    margin-top: 0.25rem;
    font-size: 0.875rem;
}

.uswdgc-mvp-pdga a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.uswdgc-mvp-pdga a:hover {
    color: var(--uswdgc-gold);
}

.uswdgc-mvp-pdga img {
    height: 0.875rem;
    width: auto;
    vertical-align: middle;
    margin-right: 0.25rem;
}

.uswdgc-mvp-stats {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.uswdgc-mvp-amount {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--uswdgc-teal);
}

.uswdgc-mvp-contributions {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* CTA Button */
.uswdgc-community-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--uswdgc-teal);
    color: var(--uswdgc-teal);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 100px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.uswdgc-community-cta:hover {
    background: var(--uswdgc-teal);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 159, 145, 0.3);
}

.uswdgc-community-cta i {
    transition: transform 0.3s ease;
}

.uswdgc-community-cta:hover i {
    transform: translateX(4px);
}

/* Powered By */
.uswdgc-powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.uswdgc-powered-by span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.uswdgc-powered-by img {
    height: 32px;
    width: auto;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 640px) {
    .uswdgc-community-powered .uswdgc-section-title {
        font-size: 2rem;
    }

    .uswdgc-scoreboard {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .uswdgc-score-item {
        padding: 0;
    }

    .uswdgc-score-divider {
        width: 60%;
        height: 1px;
        margin: 0 auto;
    }

    .uswdgc-score-value {
        font-size: 2.5rem;
    }

    .uswdgc-score-icon {
        display: none;
    }

    .uswdgc-mvp-spotlight {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .uswdgc-mvp-content {
        text-align: center;
    }

    .uswdgc-mvp-stats {
        justify-content: center;
    }
}

/* ==========================================================================
   Spectator Section
   ========================================================================== */

.uswdgc-spectator {
    background: linear-gradient(180deg, var(--uswdgc-navy) 0%, var(--uswdgc-navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.uswdgc-spectator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, var(--uswdgc-glow-teal) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--uswdgc-glow-gold) 0%, transparent 50%);
    opacity: 0.3;
    pointer-events: none;
}

.uswdgc-spectator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Info highlights */
.uswdgc-spectator-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.uswdgc-spectator-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 52, 98, 0.85) 0%, rgba(0, 42, 78, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.uswdgc-spectator-highlight:hover {
    background: linear-gradient(135deg, rgba(0, 52, 98, 0.9) 0%, rgba(0, 52, 78, 0.95) 100%);
    border-color: rgba(0, 159, 145, 0.4);
    transform: translateX(4px);
    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 159, 145, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.uswdgc-spectator-highlight i {
    font-size: 1.5rem;
    color: var(--uswdgc-gold);
    flex-shrink: 0;
    width: 2.5rem;
    text-align: center;
}

.uswdgc-spectator-highlight h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.uswdgc-spectator-highlight p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Subscribe card */
.uswdgc-subscribe-card {
    background: linear-gradient(135deg, rgba(0, 52, 98, 0.9) 0%, rgba(0, 42, 78, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

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

.uswdgc-subscribe-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--uswdgc-teal) 0%, var(--uswdgc-teal-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px var(--uswdgc-glow-teal);
}

.uswdgc-subscribe-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.uswdgc-subscribe-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.uswdgc-subscribe-card > p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* Alert messages */
.uswdgc-subscribe-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
}

.uswdgc-subscribe-alert-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.uswdgc-subscribe-alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.uswdgc-subscribe-alert-info {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

.uswdgc-subscribe-alert i {
    font-size: 1.125rem;
}

/* Subscribe form */
.uswdgc-subscribe-form {
    margin: 0;
}

.uswdgc-subscribe-input-group {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.uswdgc-subscribe-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--uswdgc-navy);
    outline: none;
    min-width: 0;
}

.uswdgc-subscribe-input::placeholder {
    color: rgba(30, 58, 95, 0.5);
}

.uswdgc-subscribe-input:focus {
    background: #ffffff;
}

.uswdgc-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--uswdgc-gold) 0%, var(--uswdgc-gold-dark) 100%);
    border: none;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--uswdgc-navy);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.uswdgc-subscribe-btn:hover {
    background: linear-gradient(135deg, #ffe066 0%, var(--uswdgc-gold) 100%);
    box-shadow: 0 4px 20px var(--uswdgc-glow-gold);
}

.uswdgc-subscribe-btn i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.uswdgc-subscribe-btn:hover i {
    transform: translateX(4px);
}

.uswdgc-subscribe-hint {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 1rem 0 0 0;
}

/* Quick subscribe button (authenticated users) */
.uswdgc-quick-subscribe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, var(--uswdgc-gold) 0%, var(--uswdgc-gold-dark) 100%);
    border: none;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--uswdgc-navy);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.uswdgc-quick-subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.uswdgc-quick-subscribe-btn:hover::before {
    left: 100%;
}

.uswdgc-quick-subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--uswdgc-glow-gold);
}

.uswdgc-quick-subscribe-btn:disabled {
    cursor: not-allowed;
    transform: none;
}

.uswdgc-quick-subscribe-text,
.uswdgc-quick-subscribe-loading,
.uswdgc-quick-subscribe-success {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.uswdgc-quick-subscribe-btn-success {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
}

/* Subscribed badge */
.uswdgc-subscribed-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 1.5rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: #4ade80;
}

.uswdgc-subscribed-badge i {
    font-size: 1.125rem;
}

.uswdgc-subscribed-badge-animate {
    animation: badgePop 0.4s ease-out;
}

@keyframes badgePop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Subscribe icon success state */
.uswdgc-subscribe-icon-success {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.4) !important;
    animation: iconPulse 0.6s ease-out;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .uswdgc-spectator-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .uswdgc-spectator-info {
        order: 2;
    }

    .uswdgc-spectator-subscribe {
        order: 1;
    }
}

@media (max-width: 767px) {
    .uswdgc-subscribe-card {
        padding: 2rem 1.5rem;
    }

    .uswdgc-subscribe-input-group {
        flex-direction: column;
        border-radius: 8px;
        overflow: visible;
        box-shadow: none;
        gap: 0.75rem;
    }

    .uswdgc-subscribe-input {
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .uswdgc-subscribe-btn {
        border-radius: 8px;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .uswdgc-spectator-highlight {
        padding: 1.25rem;
    }

    .uswdgc-spectator-highlight i {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   Sponsors Section
   ========================================================================== */

.uswdgc-sponsors {
    background: linear-gradient(180deg, #f8f6f1 0%, #f5f3ee 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Light section text colors */
.uswdgc-sponsors .uswdgc-section-label {
    color: var(--uswdgc-teal) !important;
}

.uswdgc-sponsors .uswdgc-section-title {
    color: var(--uswdgc-navy) !important;
}

.uswdgc-sponsors .uswdgc-section-subtitle {
    color: #4a5568 !important;
}

.uswdgc-sponsors .uswdgc-sponsors-cta a {
    color: var(--uswdgc-navy);
    border-color: var(--uswdgc-navy);
}

.uswdgc-sponsors .uswdgc-sponsors-cta a:hover {
    color: #ffffff;
    background: var(--uswdgc-teal);
    border-color: var(--uswdgc-teal);
}

.uswdgc-sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 3rem;
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(0, 52, 98, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(0, 52, 98, 0.08);
}

.uswdgc-sponsor-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.uswdgc-sponsor-link:hover {
    background: rgba(0, 52, 98, 0.05);
    transform: translateY(-2px);
}

.uswdgc-sponsor-logo {
    max-width: 160px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: all 0.3s ease;
}

.uswdgc-sponsor-link:hover .uswdgc-sponsor-logo {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Utah Sports Commission SVG has white text - invert for light background */
.uswdgc-sponsor-usc .uswdgc-sponsor-logo {
    filter: invert(1);
}

.uswdgc-sponsors-cta {
    margin-top: 2rem;
}

.uswdgc-sponsors-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--uswdgc-teal);
    font-size: 0.875rem;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(0, 159, 145, 0.3);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.uswdgc-sponsors-contact:hover {
    color: #fff;
    background: var(--uswdgc-teal);
    border-color: var(--uswdgc-teal);
}

/* ==========================================================================
   Title Sponsor Showcase - MVP Disc Sports
   ========================================================================== */

.uswdgc-title-sponsor-showcase {
    margin-bottom: 3rem;
    position: relative;
}

.uswdgc-title-sponsor-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--uswdgc-gold) 0%, #d9a520 100%);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(250, 190, 40, 0.3);
}

.uswdgc-badge-text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--uswdgc-navy);
}

.uswdgc-badge-year {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--uswdgc-navy);
    background: rgba(255, 255, 255, 0.5);
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
}

.uswdgc-title-sponsor-card {
    display: block;
    position: relative;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.uswdgc-title-sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 0 80px rgba(200, 30, 30, 0.15);
}

/* Animated glow effect */
.uswdgc-title-sponsor-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(200, 30, 30, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 80% 20%, rgba(250, 190, 40, 0.1) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.uswdgc-title-sponsor-card:hover .uswdgc-title-sponsor-glow {
    opacity: 1;
}

/* Subtle diagonal stripe pattern */
.uswdgc-title-sponsor-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent 0,
        transparent 10px,
        rgba(255, 255, 255, 0.01) 10px,
        rgba(255, 255, 255, 0.01) 20px
    );
    pointer-events: none;
}

/* Gold corner accent */
.uswdgc-title-sponsor-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(225deg, rgba(250, 190, 40, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.uswdgc-title-sponsor-content {
    position: relative;
    z-index: 1;
}

.uswdgc-title-sponsor-showcase-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s ease;
}

.uswdgc-title-sponsor-card:hover .uswdgc-title-sponsor-showcase-logo {
    transform: scale(1.03);
}

.uswdgc-title-sponsor-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.uswdgc-tagline-text {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
}

.uswdgc-tagline-divider {
    color: var(--uswdgc-gold);
    font-size: 0.625rem;
}

.uswdgc-title-sponsor-cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.uswdgc-title-sponsor-cta i {
    font-size: 0.625rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.uswdgc-title-sponsor-card:hover .uswdgc-title-sponsor-cta {
    background: linear-gradient(135deg, var(--uswdgc-gold) 0%, #d9a520 100%);
    border-color: var(--uswdgc-gold);
    color: var(--uswdgc-navy);
}

.uswdgc-title-sponsor-card:hover .uswdgc-title-sponsor-cta i {
    opacity: 1;
    transform: translateX(2px);
}

/* Title Sponsor Card Wrapper */
.uswdgc-title-sponsor-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media (min-width: 1024px) {
    .uswdgc-title-sponsor-card-wrapper {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }

    .uswdgc-title-sponsor-card-wrapper .uswdgc-title-sponsor-card {
        border-radius: 20px 0 0 20px;
        flex: 0 0 auto;
        min-width: 340px;
    }

    .uswdgc-title-sponsor-card-wrapper .uswdgc-partnership-story {
        border-radius: 0 20px 20px 0;
        flex: 1;
    }
}

/* Partnership Story */
.uswdgc-partnership-story {
    background: linear-gradient(135deg, #f8f6f1 0%, #f0ede6 100%);
    border: 1px solid rgba(0, 52, 98, 0.1);
    border-top: none;
    border-radius: 0 0 20px 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    align-items: center;
}

@media (min-width: 768px) {
    .uswdgc-partnership-story {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .uswdgc-partnership-story {
        border-top: 1px solid rgba(0, 52, 98, 0.1);
        border-left: none;
        padding: 2rem 2.5rem;
        gap: 2rem;
    }
}

/* Phone Frame for Holy Shot Video */
.uswdgc-story-video-wrapper {
    flex-shrink: 0;
}

.uswdgc-story-phone-frame {
    position: relative;
    width: 160px;
    height: 320px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 1.75rem;
    padding: 0.5rem;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
}

.uswdgc-story-phone-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.uswdgc-story-phone-notch {
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 16px;
    background: #000;
    border-radius: 0 0 10px 10px;
    z-index: 10;
}

.uswdgc-story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.25rem;
}

.uswdgc-story-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    z-index: 5;
}

.uswdgc-story-play-btn:hover {
    background: var(--uswdgc-gold);
    border-color: var(--uswdgc-gold);
    color: var(--uswdgc-navy);
    transform: translate(-50%, -50%) scale(1.1);
}

.uswdgc-story-play-btn.is-playing {
    opacity: 0;
    pointer-events: none;
}

.uswdgc-story-mute-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 0.75rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    z-index: 5;
}

.uswdgc-story-phone-frame:hover .uswdgc-story-mute-btn,
.uswdgc-story-mute-btn.is-unmuted {
    opacity: 1;
}

.uswdgc-story-mute-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.uswdgc-story-fullscreen-btn {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 0.75rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    z-index: 5;
}

.uswdgc-story-phone-frame:hover .uswdgc-story-fullscreen-btn {
    opacity: 1;
}

.uswdgc-story-fullscreen-btn:hover {
    background: var(--uswdgc-gold);
    color: var(--uswdgc-navy);
    transform: scale(1.1);
}

/* Fullscreen video styling for 9:16 aspect ratio */
.uswdgc-story-video:fullscreen,
.uswdgc-story-video:-webkit-full-screen {
    object-fit: contain;
    background: #000;
}

.uswdgc-story-content {
    flex: 1;
    min-width: 0;
}

.uswdgc-story-headline {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--uswdgc-navy);
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}

.uswdgc-story-text {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #4a5568;
    margin: 0 0 0.75rem;
}

.uswdgc-story-text:last-of-type {
    margin-bottom: 1rem;
}

.uswdgc-story-highlight {
    color: var(--uswdgc-navy);
    font-weight: 500;
}

.uswdgc-story-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.uswdgc-story-documentary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #c81e1e 0%, #a01818 100%);
    border-radius: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(200, 30, 30, 0.25);
}

.uswdgc-story-documentary:hover {
    background: linear-gradient(135deg, #d92626 0%, #b81c1c 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 30, 30, 0.35);
}

.uswdgc-story-documentary i {
    font-size: 0.75rem;
}

.uswdgc-story-source {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--uswdgc-teal);
    text-decoration: none;
    padding: 0.375rem 0.875rem;
    background: rgba(0, 159, 145, 0.08);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.uswdgc-story-source:hover {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
    color: #fff;
}

.uswdgc-story-source i {
    font-size: 0.875rem;
}

/* Mobile adjustments for partnership story */
@media (max-width: 767px) {
    .uswdgc-partnership-story {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.25rem;
        align-items: center;
        text-align: center;
    }

    .uswdgc-story-phone-frame {
        width: 140px;
        height: 280px;
        border-radius: 1.5rem;
        transform: rotate(0deg);
    }

    .uswdgc-story-phone-notch {
        width: 40px;
        height: 14px;
    }

    .uswdgc-story-video {
        border-radius: 1rem;
    }

    .uswdgc-story-play-btn {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }

    .uswdgc-story-headline {
        font-size: 1rem;
    }

    .uswdgc-story-text {
        font-size: 0.875rem;
        text-align: left;
    }
}

/* Supporting Sponsors Label */
.uswdgc-supporting-sponsors-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(0, 52, 98, 0.5);
    margin-bottom: 0.5rem;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .uswdgc-title-sponsor-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .uswdgc-title-sponsor-showcase-logo {
        max-width: 200px;
    }

    .uswdgc-tagline-text {
        font-size: 0.6875rem;
        letter-spacing: 0.15em;
    }

    .uswdgc-title-sponsor-card::after {
        width: 80px;
        height: 80px;
    }
}

/* Large screens */
@media (min-width: 1024px) {
    .uswdgc-title-sponsor-card {
        padding: 3rem 4rem;
    }

    .uswdgc-title-sponsor-showcase-logo {
        max-width: 340px;
    }
}

.uswdgc-sponsor-placeholder {
    width: 150px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   Connect Section
   ========================================================================== */

.uswdgc-connect {
    background: linear-gradient(180deg, #001a33 0%, #000a15 50%, #000508 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 6rem;
}

/* Subtle vignette effect for cinematic fade */
.uswdgc-connect::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 30%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.uswdgc-connect::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 50% 50%, var(--uswdgc-glow-teal) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0.3;
}

.uswdgc-connect .uswdgc-section-inner {
    position: relative;
    z-index: 1;
}

/* USWDGC Logo frosted card in connect section */
.uswdgc-connect-logo-card {
    display: inline-block;
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 0 40px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.uswdgc-connect-logo {
    max-width: 240px;
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .uswdgc-connect-logo-card {
        padding: 2rem 3rem;
    }

    .uswdgc-connect-logo {
        max-width: 320px;
    }
}

/* Standalone white logo (no card) */
.uswdgc-connect-logo-standalone {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 2rem;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

@media (min-width: 768px) {
    .uswdgc-connect-logo-standalone {
        max-width: 360px;
    }
}

.uswdgc-connect .uswdgc-section-label {
    color: var(--uswdgc-teal);
}

.uswdgc-connect .uswdgc-section-title {
    color: #ffffff;
}

.uswdgc-connect .uswdgc-section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.uswdgc-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.uswdgc-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(0, 159, 145, 0.15);
    border: 1px solid rgba(0, 159, 145, 0.4);
    border-radius: 50%;
    color: var(--uswdgc-teal);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 159, 145, 0.2);
}

.uswdgc-social-link:hover {
    background: var(--uswdgc-teal);
    border-color: var(--uswdgc-teal);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 159, 145, 0.5);
    color: #ffffff;
}

/* ==========================================================================
   What's Next Section
   ========================================================================== */

.uswdgc-next {
    background: var(--theme-bg-primary);
    border-top: 1px solid var(--theme-border-color);
}

.uswdgc-next-list {
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.uswdgc-next-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--theme-border-color);
}

.uswdgc-next-list li:last-child {
    border-bottom: none;
}

.uswdgc-next-list li::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 0.5rem;
    background: var(--uswdgc-teal);
    border-radius: 50%;
}

.uswdgc-next-list li strong {
    color: var(--uswdgc-gold);
}

/* Next Volunteer Event Card */
.uswdgc-next-event {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(0, 159, 145, 0.08);
    border: 1px solid rgba(0, 159, 145, 0.2);
    border-radius: 12px;
}

.uswdgc-next-event-image {
    flex-shrink: 0;
    width: 140px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.uswdgc-next-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uswdgc-next-event-details {
    flex: 1;
}

.uswdgc-next-event-title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--theme-text-primary);
}

.uswdgc-next-event-location {
    margin: 0 0 0.25rem;
    font-size: 0.875rem;
    color: var(--theme-text-secondary);
}

.uswdgc-next-event-location i {
    color: var(--uswdgc-teal);
    margin-right: 0.5rem;
}

.uswdgc-next-event-rsvps {
    margin: 0;
    font-size: 0.875rem;
    color: var(--uswdgc-gold);
}

.uswdgc-next-event-rsvps i {
    margin-right: 0.5rem;
}

.uswdgc-next-event-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--uswdgc-navy);
    background: var(--uswdgc-gold);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.uswdgc-next-event-cta:hover {
    background: var(--uswdgc-gold-dark);
    transform: translateX(3px);
}

.uswdgc-next-event-cta i {
    transition: transform 0.2s ease;
}

.uswdgc-next-event-cta:hover i {
    transform: translateX(3px);
}

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

    .uswdgc-next-event-location,
    .uswdgc-next-event-rsvps {
        justify-content: center;
    }
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 991px) {
    .uswdgc-about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .uswdgc-about-stats {
        order: -1;
    }
}

@media (max-width: 767px) {
    .uswdgc-hero {
        min-height: 70vh;
    }

    .uswdgc-section {
        padding: 3rem 1rem;
    }

    .uswdgc-timeline::before {
        left: 0;
    }

    .uswdgc-timeline-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding-left: 2rem;
    }

    .uswdgc-timeline-item:nth-child(odd) .uswdgc-timeline-content,
    .uswdgc-timeline-item:nth-child(even) .uswdgc-timeline-content {
        text-align: left !important;
        grid-column: 1 !important;
    }

    .uswdgc-timeline-item:nth-child(odd) .uswdgc-timeline-date,
    .uswdgc-timeline-item:nth-child(even) .uswdgc-timeline-date {
        grid-column: 1 !important;
        text-align: left !important;
    }

    .uswdgc-timeline-dot {
        left: 0;
    }

    /* Stack all RSVP buttons to the left on mobile */
    .uswdgc-timeline-item:nth-child(odd) .uswdgc-timeline-rsvp,
    .uswdgc-timeline-item:nth-child(even) .uswdgc-timeline-rsvp {
        justify-content: flex-start !important;
    }

    /* Stack all timeline triggers to the left on mobile */
    .uswdgc-timeline-item:nth-child(odd) .uswdgc-timeline-trigger,
    .uswdgc-timeline-item:nth-child(even) .uswdgc-timeline-trigger {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .uswdgc-timeline-item:nth-child(odd) .uswdgc-timeline-trigger .uswdgc-timeline-title,
    .uswdgc-timeline-item:nth-child(even) .uswdgc-timeline-trigger .uswdgc-timeline-title {
        flex-direction: row !important;
    }

    .uswdgc-timeline-item:nth-child(odd) .uswdgc-timeline-trigger:hover,
    .uswdgc-timeline-item:nth-child(even) .uswdgc-timeline-trigger:hover {
        transform: translateX(4px);
    }

    /* Force all timeline text and descriptions left */
    .uswdgc-timeline-item .uswdgc-timeline-description,
    .uswdgc-timeline-item .uswdgc-timeline-title,
    .uswdgc-timeline-item h3,
    .uswdgc-timeline-item p {
        text-align: left !important;
    }

    .uswdgc-volunteer-grid {
        grid-template-columns: 1fr;
    }

    .uswdgc-courses-grid {
        grid-template-columns: 1fr;
    }

    /* Pool schedule mobile adjustments */
    .uswdgc-course-pools {
        padding-top: 0.75rem;
        gap: 0.5rem;
    }

    .uswdgc-pool-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.375rem;
    }

    .uswdgc-pool-days {
        font-size: 0.5625rem;
        min-width: auto;
    }

    .uswdgc-hero-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Animation Utilities
   ========================================================================== */

.fade-in-up {
    animation: fadeInUp 0.6s ease-out both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ==========================================================================
   Legacy Support - Preserve existing modal functionality
   ========================================================================== */

.page-majors-uswdgc2026 .modal-content {
    background: var(--theme-surface-1);
    border: 1px solid var(--theme-border-color);
}

.page-majors-uswdgc2026 .modal-header {
    border-bottom-color: var(--theme-border-color);
}

.page-majors-uswdgc2026 .modal-footer {
    border-top-color: var(--theme-border-color);
}

/* ==========================================================================
   Timeline Sub-Items (Volunteer Events)
   ========================================================================== */

.uswdgc-timeline-sub {
    padding: 0.75rem 0;
}

.uswdgc-timeline-sub .uswdgc-timeline-title {
    font-size: 1rem;
    font-weight: 500;
}

.uswdgc-timeline-sub .uswdgc-timeline-desc {
    font-size: 0.8125rem;
}

.uswdgc-timeline-dot-sub {
    width: 10px;
    height: 10px;
    background: rgba(0, 159, 145, 0.5);
    border-width: 2px;
}

.uswdgc-timeline-dot-volunteer {
    background: var(--uswdgc-teal);
    box-shadow: 0 0 12px var(--uswdgc-glow-teal);
}

.uswdgc-timeline-dot-gold {
    background: var(--uswdgc-gold);
    box-shadow: 0 0 16px var(--uswdgc-glow-gold);
}

.uswdgc-timeline-dot-info {
    background: var(--theme-info, #3b82f6);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

/* ==========================================================================
   Timeline RSVP Buttons - "Championship Pass" Design
   Premium credential-style buttons with satisfying micro-interactions
   ========================================================================== */

.uswdgc-timeline-rsvp {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: 0.875rem;
    flex-wrap: wrap;
}

/* Base button - embossed credential style */
.uswdgc-btn-sm {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: var(--font-display, 'Suiza', sans-serif);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    overflow: hidden;
    transition:
        transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.2s ease,
        background 0.2s ease;
}

/* Shimmer overlay for premium feel */
.uswdgc-btn-sm::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    transition: left 0.4s ease;
}

.uswdgc-btn-sm:hover::before {
    left: 100%;
}

/* "I'm Going" - Premium gold action button */
.uswdgc-btn-sm.uswdgc-btn-primary {
    background:
        linear-gradient(135deg, var(--uswdgc-gold) 0%, #e5a91f 50%, var(--uswdgc-gold) 100%);
    color: var(--uswdgc-navy);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.15),
        0 1px 2px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.uswdgc-btn-sm.uswdgc-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 6px 16px var(--uswdgc-glow-gold),
        0 2px 4px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background:
        linear-gradient(135deg, #ffe066 0%, var(--uswdgc-gold) 50%, #ffe066 100%);
}

.uswdgc-btn-sm.uswdgc-btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* "Interested" - Subtle teal outline */
.uswdgc-btn-sm.uswdgc-btn-outline {
    background: rgba(0, 159, 145, 0.08);
    border: 1.5px solid rgba(0, 159, 145, 0.4);
    color: var(--uswdgc-teal);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.uswdgc-btn-sm.uswdgc-btn-outline:hover {
    background: rgba(0, 159, 145, 0.15);
    border-color: var(--uswdgc-teal);
    transform: translateY(-2px);
    box-shadow:
        0 4px 12px var(--uswdgc-glow-teal),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.uswdgc-btn-sm.uswdgc-btn-outline:active {
    transform: translateY(0);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Count badge inside buttons */
.uswdgc-btn-sm .count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.375rem;
    margin-left: 0.25rem;
    border-radius: 10px;
    font-size: 0.625rem;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.15);
    animation: countPulse 2s ease-in-out infinite;
}

.uswdgc-btn-sm.uswdgc-btn-primary .count-badge {
    background: rgba(0, 52, 98, 0.2);
    color: var(--uswdgc-navy);
}

.uswdgc-btn-sm.uswdgc-btn-outline .count-badge {
    background: rgba(0, 159, 145, 0.2);
    color: var(--uswdgc-teal);
}

@keyframes countPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Confirmed status badge - achievement unlocked feel */
.uswdgc-rsvp-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    border-radius: 6px;
    font-family: var(--font-display, 'Suiza', sans-serif);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    overflow: hidden;
}

/* Subtle animated background glow */
.uswdgc-rsvp-status::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, currentColor 0%, transparent 70%);
    opacity: 0.08;
    transform: translate(-50%, -50%);
    animation: statusGlow 3s ease-in-out infinite;
}

@keyframes statusGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.08; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.12; }
}

.uswdgc-rsvp-status-interested {
    background: linear-gradient(135deg, rgba(0, 159, 145, 0.12) 0%, rgba(0, 159, 145, 0.18) 100%);
    color: var(--uswdgc-teal);
    border: 1px solid rgba(0, 159, 145, 0.3);
    box-shadow: 0 2px 8px rgba(0, 159, 145, 0.15);
}

.uswdgc-rsvp-status-going {
    background: linear-gradient(135deg, rgba(250, 190, 40, 0.15) 0%, rgba(250, 190, 40, 0.25) 100%);
    color: #c48a00;
    border: 1px solid rgba(250, 190, 40, 0.4);
    box-shadow: 0 2px 8px rgba(250, 190, 40, 0.2);
}

.uswdgc-rsvp-status i {
    font-size: 0.75rem;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

/* Clear button - minimal, non-distracting */
.uswdgc-btn-sm.uswdgc-btn-clear {
    background: transparent;
    border: 1px solid var(--theme-border-color);
    color: var(--theme-text-muted);
    padding: 0.375rem 0.625rem;
    font-size: 0.625rem;
    opacity: 0.7;
}

.uswdgc-btn-sm.uswdgc-btn-clear:hover {
    opacity: 1;
    border-color: var(--theme-text-muted);
    background: rgba(128, 128, 128, 0.1);
}

/* Attendee count display */
.uswdgc-rsvp-count {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    color: var(--theme-text-muted);
    margin-left: 0.25rem;
}

.uswdgc-rsvp-count::before {
    content: '•';
    opacity: 0.5;
}

/* Align RSVP buttons consistently (content always on right side) */
.uswdgc-timeline-rsvp {
    justify-content: flex-start;
}

/* Entrance animation for buttons */
.uswdgc-timeline-rsvp .uswdgc-btn-sm,
.uswdgc-timeline-rsvp .uswdgc-rsvp-status {
    animation: rsvpFadeIn 0.4s ease-out backwards;
}

.uswdgc-timeline-rsvp > *:nth-child(1) { animation-delay: 0.1s; }
.uswdgc-timeline-rsvp > *:nth-child(2) { animation-delay: 0.2s; }
.uswdgc-timeline-rsvp > *:nth-child(3) { animation-delay: 0.3s; }

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

/* Quick RSVP success state */
.uswdgc-rsvp-btn-success {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4) !important;
    animation: rsvpSuccessPulse 0.4s ease-out;
}

@keyframes rsvpSuccessPulse {
    0% {
        transform: scale(0.95);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* Quick RSVP cleared/cancelled state */
.uswdgc-rsvp-btn-cleared {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(107, 114, 128, 0.3) !important;
    animation: rsvpClearedPulse 0.3s ease-out;
}

@keyframes rsvpClearedPulse {
    0% {
        transform: scale(0.98);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.02);
    }
}

/* Active state for RSVP buttons */
.uswdgc-btn-sm.active {
    position: relative;
}

.uswdgc-btn-sm.uswdgc-btn-outline.active {
    background: rgba(0, 159, 145, 0.25);
    border-color: var(--uswdgc-teal);
}

.uswdgc-btn-sm.uswdgc-btn-primary.active {
    box-shadow:
        0 2px 8px var(--uswdgc-glow-gold),
        inset 0 0 0 2px rgba(255, 255, 255, 0.3);
}

/* Timeline Notice Banner */
.uswdgc-timeline-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--theme-text-secondary);
}

.uswdgc-timeline-notice-compact {
    position: relative;
    z-index: 2;
    padding: 0.875rem 1.25rem;
    margin-bottom: 1.5rem;
    background: #f0f5fa;
    border: 1px solid #d4e3f0;
    border-left: 4px solid #0068BA;
    border-radius: 6px;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(0, 104, 186, 0.1);
}

.uswdgc-timeline-notice-compact span {
    color: #1a365d;
}

.uswdgc-notice-pdga-logo {
    height: 28px;
    width: auto;
    flex-shrink: 0;
    padding: 6px 10px;
    background: #0068BA;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Dark mode support for PDGA notice */
.dark-theme .uswdgc-timeline-notice-compact,
html[data-theme="dark"] .uswdgc-timeline-notice-compact {
    background: #1a2a3d;
    border-color: #2d4a6a;
}

.dark-theme .uswdgc-timeline-notice-compact span,
html[data-theme="dark"] .uswdgc-timeline-notice-compact span {
    color: #e2e8f0;
}

/* PDGA blue background works in both light and dark modes */

.uswdgc-timeline-notice i {
    color: var(--theme-info, #3b82f6);
    flex-shrink: 0;
}

.uswdgc-timeline-notice a {
    color: var(--uswdgc-teal);
    text-decoration: none;
    font-weight: 500;
}

.uswdgc-timeline-notice a:hover {
    color: var(--uswdgc-gold);
}

/* Info button inline with timeline title */
.uswdgc-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 0.5rem;
    background: transparent;
    border: none;
    color: var(--uswdgc-teal);
    cursor: pointer;
    transition: all 0.2s ease;
    vertical-align: middle;
}

.uswdgc-info-btn:hover {
    color: var(--uswdgc-gold);
    transform: scale(1.1);
}

.uswdgc-info-btn i {
    font-size: 1rem;
}

/* ==========================================================================
   USWDGC Modal Styles
   ========================================================================== */

.uswdgc-modal-content {
    background: var(--uswdgc-navy);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
}

.uswdgc-modal-header {
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #0d2240 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 1.5rem;
}

/* Gold accent bar at top of modal header */
.uswdgc-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--path-competitor-accent, #d4af37) 0%, var(--uswdgc-teal, #009F91) 100%);
}

.uswdgc-modal-header .modal-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.uswdgc-modal-header .modal-title i {
    color: var(--path-competitor-accent, #d4af37);
    font-size: 1rem;
}

.uswdgc-modal-header .btn-close {
    filter: invert(1) brightness(0.7);
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.uswdgc-modal-header .btn-close:hover {
    opacity: 1;
}

.uswdgc-modal-body {
    background: linear-gradient(180deg, var(--uswdgc-navy) 0%, #001a33 100%);
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.uswdgc-modal-footer {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Volunteer Info Modal Content */
.uswdgc-volunteer-info {
    background: var(--uswdgc-navy, #0a1628);
    color: rgba(255, 255, 255, 0.85);
    padding: 1.5rem;
    border-radius: 12px;
    margin: -1.5rem;
    margin-top: 0;
}

.uswdgc-volunteer-info h6 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--uswdgc-gold, #d4a84b);
    margin: 1.5rem 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.uswdgc-volunteer-info h6:first-child {
    margin-top: 0;
}

.uswdgc-volunteer-info h6 i {
    color: var(--uswdgc-teal, #2a9d8f);
}

.uswdgc-volunteer-info ul {
    margin: 0;
    padding-left: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
}

.uswdgc-volunteer-info ul li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.uswdgc-volunteer-info ul li:last-child {
    margin-bottom: 0;
}

.uswdgc-volunteer-info ul li strong {
    color: #ffffff;
    font-weight: 600;
}

.uswdgc-volunteer-info p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0.5rem 0;
}

.uswdgc-volunteer-info p strong {
    color: #ffffff;
    font-weight: 600;
}

.uswdgc-volunteer-dates li {
    padding: 0.25rem 0;
}

.uswdgc-volunteer-info .uswdgc-btn {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
}

/* Map Modal Styles */
.uswdgc-modal-map .modal-body {
    padding: 0;
}

.uswdgc-map-image {
    width: 100%;
    height: auto;
    display: block;
}

.uswdgc-map-legend {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.uswdgc-map-legend span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.uswdgc-map-legend i {
    font-size: 0.875rem;
}

/* Map Preview in Courses Section */
.uswdgc-map-preview {
    max-width: 900px;
    margin: 3rem auto 0;
}

/* Map Thumbnail Trigger */
.uswdgc-map-trigger {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.uswdgc-map-trigger:hover {
    border-color: var(--uswdgc-teal);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 159, 145, 0.2);
}

.uswdgc-map-trigger img {
    width: 100%;
    height: auto;
    display: block;
}

.uswdgc-map-trigger-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.uswdgc-map-trigger-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.uswdgc-map-trigger-text i {
    color: var(--uswdgc-teal);
}

/* Lodging Callout */
.uswdgc-lodging-callout {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 159, 145, 0.1) 0%, rgba(0, 159, 145, 0.05) 100%);
    border: 1px solid rgba(0, 159, 145, 0.2);
    border-left: 4px solid var(--uswdgc-teal);
    border-radius: 8px;
}

.uswdgc-lodging-icon {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--uswdgc-teal);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
}

.uswdgc-lodging-content {
    flex: 1;
}

.uswdgc-lodging-content h3 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--uswdgc-teal);
}

.uswdgc-lodging-content p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.uswdgc-lodging-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .uswdgc-lodging-callout {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        gap: 1rem;
        border-left-width: 1px;
        border-top: 4px solid var(--uswdgc-teal);
    }

    .uswdgc-lodging-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .uswdgc-lodging-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Mobile Timeline Adjustments
   ========================================================================== */

@media (max-width: 767px) {
    .uswdgc-timeline-toggle {
        gap: 0.375rem;
    }

    .uswdgc-toggle-btn {
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
    }

    .uswdgc-toggle-btn span {
        display: none;
    }

    .uswdgc-toggle-btn i {
        font-size: 1rem;
    }

    .uswdgc-timeline-sub {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
    }

    .uswdgc-timeline-notice {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem;
    }

    .uswdgc-timeline-notice-compact {
        border-left-width: 4px;
    }

    .uswdgc-notice-pdga-logo {
        height: 24px;
        padding: 3px 6px;
    }

    .uswdgc-modal-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .uswdgc-map-legend {
        justify-content: center;
    }
}

/* Show toggle text on tablets and larger */
@media (min-width: 768px) {
    .uswdgc-toggle-btn {
        padding: 0.75rem 2rem;
    }
}

/* ==========================================================================
   History Section - 25 Years of USWDGC
   ========================================================================== */

.uswdgc-history {
    background: linear-gradient(180deg, var(--theme-bg-secondary) 0%, var(--theme-bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.uswdgc-history::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(250, 190, 40, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Progressive Disclosure Toggle */
.uswdgc-history-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 auto 2rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--uswdgc-gold);
    border-radius: 50px;
    color: var(--uswdgc-gold);
    font-family: var(--uswdgc-font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.uswdgc-history-toggle:hover {
    background: var(--uswdgc-gold);
    color: var(--uswdgc-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(250, 190, 40, 0.3);
}

.uswdgc-history-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(250, 190, 40, 0.4);
}

.uswdgc-history-toggle-text i {
    margin-right: 0.5rem;
}

.uswdgc-history-toggle-icon {
    transition: transform 0.3s ease;
}

.uswdgc-history-toggle[aria-expanded="true"] .uswdgc-history-toggle-icon {
    transform: rotate(180deg);
}

.uswdgc-history-toggle[aria-expanded="true"] .uswdgc-history-toggle-text::before {
    content: "Hide ";
}

/* Collapsible Content */
.uswdgc-history-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease-out;
    overflow: hidden;
}

.uswdgc-history-content > .uswdgc-history-timeline {
    min-height: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.uswdgc-history-content[aria-hidden="false"] {
    grid-template-rows: 1fr;
}

.uswdgc-history-content[aria-hidden="false"] > .uswdgc-history-timeline {
    opacity: 1;
    transition-delay: 0.2s;
}

/* History Timeline Container */
.uswdgc-history-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Vertical line running through timeline */
.uswdgc-history-timeline::before {
    content: '';
    position: absolute;
    left: 52px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(180deg,
        var(--uswdgc-gold) 0%,
        var(--uswdgc-teal) 20%,
        var(--uswdgc-teal) 80%,
        var(--uswdgc-navy) 100%);
    opacity: 0.5;
}

/* History Item */
.uswdgc-history-item {
    display: grid;
    grid-template-columns: 105px 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 0.875rem 1rem;
    background: var(--theme-surface-1);
    border: 1px solid var(--theme-border-color);
    border-radius: 10px;
    margin-bottom: 0.5rem;
    transition: all 0.25s ease;
    position: relative;
}

.uswdgc-history-item:hover {
    border-color: var(--uswdgc-teal);
    background: var(--theme-surface-2, var(--theme-surface-1));
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 159, 145, 0.12);
}

/* Year Badge */
.uswdgc-history-year {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--uswdgc-gold);
    background: linear-gradient(135deg, rgba(250, 190, 40, 0.15) 0%, rgba(250, 190, 40, 0.05) 100%);
    padding: 0.5rem 0.875rem;
    border-radius: 6px;
    text-align: center;
    border: 1px solid rgba(250, 190, 40, 0.3);
    position: relative;
}

/* Dot connector to timeline */
.uswdgc-history-year::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--uswdgc-teal);
    border-radius: 50%;
    border: 2px solid var(--theme-bg-primary);
    z-index: 1;
}

.uswdgc-history-item:hover .uswdgc-history-year::after {
    background: var(--uswdgc-gold);
    box-shadow: 0 0 12px var(--uswdgc-glow-gold);
}

/* History Details (Location + Winner) */
.uswdgc-history-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

/* Winner Name - Primary Focus */
.uswdgc-history-winner {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--theme-text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.uswdgc-history-winner i {
    color: var(--uswdgc-gold);
    font-size: 0.875rem;
}

/* Location - Secondary */
.uswdgc-history-location {
    font-size: 0.8125rem;
    color: var(--theme-text-muted);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.uswdgc-history-location i {
    color: var(--uswdgc-teal);
    font-size: 0.6875rem;
}

/* Status messages (cancelled, pre-championship) */
.uswdgc-history-status {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
}

.uswdgc-history-status.cancelled {
    font-style: italic;
    color: var(--theme-text-muted);
}

.uswdgc-history-status.prechamp {
    font-style: italic;
    color: var(--theme-text-muted);
}

/* History Links Container */
.uswdgc-history-links {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* PDGA Link */
.uswdgc-history-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--theme-border-color);
    border-radius: 8px;
    color: var(--theme-text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.uswdgc-history-link:hover {
    background: var(--uswdgc-teal);
    border-color: var(--uswdgc-teal);
    color: #ffffff;
    transform: scale(1.1);
}

.uswdgc-history-link i {
    font-size: 0.75rem;
}

/* YouTube Link */
.uswdgc-history-youtube {
    border-color: rgba(255, 107, 107, 0.4);
    color: #ff6b6b;
}

.uswdgc-history-youtube:hover {
    background: #ff6b6b;
    border-color: #ff6b6b;
    color: #ffffff;
}

.uswdgc-history-youtube i {
    font-size: 0.875rem;
}

/* ==========================================================================
   History Section - Special States
   ========================================================================== */

/* 2026 - Current Year (Upcoming) */
.uswdgc-history-current {
    background: linear-gradient(135deg, rgba(0, 52, 98, 0.12) 0%, rgba(0, 159, 145, 0.08) 100%);
    border: 2px solid var(--uswdgc-teal);
    margin-bottom: 1.5rem;
}

.uswdgc-history-current .uswdgc-history-year {
    background: linear-gradient(135deg, var(--uswdgc-gold) 0%, var(--uswdgc-gold-dark) 100%);
    color: var(--uswdgc-navy);
    font-size: 1.5rem;
    border-color: var(--uswdgc-gold);
    box-shadow: 0 4px 20px var(--uswdgc-glow-gold);
}

.uswdgc-history-current .uswdgc-history-year::after {
    background: var(--uswdgc-gold);
    width: 12px;
    height: 12px;
    right: -14px;
    box-shadow: 0 0 20px var(--uswdgc-glow-gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 12px var(--uswdgc-glow-gold); }
    50% { box-shadow: 0 0 24px var(--uswdgc-glow-gold); }
}

.uswdgc-history-current .uswdgc-history-location {
    font-size: 1.125rem;
    color: var(--uswdgc-teal);
}

.uswdgc-history-tbd {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem !important;
    color: var(--uswdgc-gold) !important;
    letter-spacing: 0.1em;
}

.uswdgc-history-tbd i {
    color: var(--uswdgc-gold) !important;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Cancelled Year (2020) */
.uswdgc-history-cancelled {
    opacity: 0.6;
    background: var(--theme-surface-1);
}

.uswdgc-history-cancelled .uswdgc-history-year {
    background: rgba(148, 163, 184, 0.15);
    color: var(--theme-text-muted);
    border-color: var(--theme-border-color);
}

.uswdgc-history-cancelled .uswdgc-history-year::after {
    background: var(--theme-text-muted);
}

/* Pre-Championship Era (1997-1998) */
.uswdgc-history-prechamp {
    opacity: 0.6;
    background: var(--theme-surface-1);
}

.uswdgc-history-prechamp .uswdgc-history-year {
    background: rgba(148, 163, 184, 0.15);
    color: var(--theme-text-muted);
    border-color: var(--theme-border-color);
}

.uswdgc-history-prechamp .uswdgc-history-year::after {
    background: var(--theme-text-muted);
}

/* Women's National Championship Era (1997-1998) */
.uswdgc-history-wnc {
    opacity: 0.85;
}

.uswdgc-history-wnc .uswdgc-history-year {
    background: rgba(0, 159, 145, 0.12);
    color: var(--uswdgc-teal);
    border-color: rgba(0, 159, 145, 0.3);
}

.uswdgc-history-badge {
    display: inline-flex;
    margin-left: 0.5rem;
    padding: 0.125rem 0.5rem;
    background: rgba(0, 159, 145, 0.15);
    border: 1px solid rgba(0, 159, 145, 0.3);
    border-radius: 100px;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--uswdgc-teal);
    white-space: nowrap;
}

/* ==========================================================================
   History Section - Responsive
   ========================================================================== */

@media (max-width: 767px) {
    .uswdgc-history-timeline::before {
        left: 28px;
    }

    .uswdgc-history-item {
        grid-template-columns: 70px 1fr auto;
        gap: 1rem;
        padding: 0.75rem;
    }

    .uswdgc-history-year {
        font-size: 1rem;
        padding: 0.375rem 0.5rem;
    }

    .uswdgc-history-year::after {
        right: -8px;
        width: 6px;
        height: 6px;
    }

    .uswdgc-history-current .uswdgc-history-year {
        font-size: 1.125rem;
    }

    .uswdgc-history-current .uswdgc-history-year::after {
        width: 10px;
        height: 10px;
        right: -10px;
    }

    .uswdgc-history-location {
        font-size: 0.9375rem;
    }

    .uswdgc-history-winner {
        font-size: 0.8125rem;
    }

    .uswdgc-history-tbd {
        font-size: 1rem !important;
    }

    .uswdgc-history-link {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .uswdgc-history-timeline::before {
        display: none;
    }

    .uswdgc-history-item {
        grid-template-columns: 60px 1fr;
        gap: 0.75rem;
    }

    .uswdgc-history-year::after {
        display: none;
    }

    .uswdgc-history-links {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        gap: 0.375rem;
    }

    .uswdgc-history-link {
        width: 28px;
        height: 28px;
    }

    .uswdgc-history-details {
        padding-right: 4rem;
    }
}

/* ==========================================================================
   Timeline Event Trigger - Clickable Volunteer Events
   ========================================================================== */

.uswdgc-timeline-trigger {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    width: 100%;
    position: relative;
    transition: transform 0.2s ease;
}

.uswdgc-timeline-trigger:hover {
    transform: translateX(4px);
}

.uswdgc-timeline-item:nth-child(odd) .uswdgc-timeline-trigger:hover {
    transform: translateX(-4px);
}

.uswdgc-timeline-trigger .uswdgc-timeline-title {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--theme-text-primary);
    transition: color 0.2s ease;
}

.uswdgc-timeline-trigger:hover .uswdgc-timeline-title {
    color: var(--uswdgc-teal);
}

.uswdgc-timeline-expand-icon {
    font-size: 0.625rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.uswdgc-timeline-trigger:hover .uswdgc-timeline-expand-icon {
    opacity: 0.7;
    transform: translateX(0);
}

.uswdgc-timeline-trigger .uswdgc-timeline-desc {
    display: block;
    font-size: 0.875rem;
    color: var(--theme-text-muted);
    line-height: 1.5;
}

.uswdgc-timeline-trigger:focus-visible {
    outline: 2px solid var(--uswdgc-teal);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Timeline triggers - consistent left-aligned on right side */
.uswdgc-timeline-trigger {
    align-items: flex-start;
    text-align: left;
}

/* ==========================================================================
   Volunteer Event Popup - Premium Card Design
   Sports credential meets glass morphism
   ========================================================================== */

.volunteer-event-popup {
    --popup-surface: rgba(15, 18, 25, 0.96);
    --popup-surface-light: rgba(255, 255, 255, 0.04);
    --popup-border: rgba(255, 255, 255, 0.08);
    --popup-glow: var(--uswdgc-teal);

    position: fixed;
    inset: 0;
    z-index: 10200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 300ms cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0ms 300ms;
}

.volunteer-event-popup.is-open {
    opacity: 1;
    visibility: visible;
    transition:
        opacity 350ms cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0ms;
}

/* Backdrop with blur */
.volunteer-event-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Card container */
.volunteer-event-popup__card {
    position: relative;
    width: min(420px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    overflow: hidden;
    border-radius: 20px;
    background: var(--popup-surface);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--popup-border);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 25px 60px -12px rgba(0, 0, 0, 0.6),
        0 0 100px -30px var(--popup-glow);
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition:
        transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
        opacity 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.volunteer-event-popup.is-open .volunteer-event-popup__card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Close button */
.volunteer-event-popup__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

.volunteer-event-popup__close:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

/* Banner section */
.volunteer-event-popup__banner {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--uswdgc-navy) 0%,
        color-mix(in srgb, var(--uswdgc-teal) 30%, var(--uswdgc-navy)) 100%
    );
}

.volunteer-event-popup__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 500ms ease 100ms, transform 700ms ease 100ms;
}

.volunteer-event-popup.is-open .volunteer-event-popup__banner img {
    opacity: 1;
    transform: scale(1);
}

.volunteer-event-popup__banner-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.8) 100%
        ),
        linear-gradient(90deg,
            rgba(0, 159, 145, 0.2) 0%,
            transparent 50%,
            rgba(250, 190, 40, 0.15) 100%
        );
    pointer-events: none;
}

/* Body section */
.volunteer-event-popup__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Header */
.volunteer-event-popup__header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.volunteer-event-popup__title {
    font-family: var(--font-display, 'Suiza', sans-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 400ms ease 150ms, transform 400ms ease 150ms;
}

.volunteer-event-popup.is-open .volunteer-event-popup__title {
    opacity: 1;
    transform: translateY(0);
}

.volunteer-event-popup__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.volunteer-event-popup__date,
.volunteer-event-popup__course {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volunteer-event-popup__date i {
    color: var(--uswdgc-gold);
}

.volunteer-event-popup__course i {
    color: var(--uswdgc-teal);
}

/* Description */
.volunteer-event-popup__description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 400ms ease 200ms, transform 400ms ease 200ms;
}

.volunteer-event-popup.is-open .volunteer-event-popup__description {
    opacity: 1;
    transform: translateY(0);
}

/* Location detail */
.volunteer-event-popup__location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--popup-surface-light);
    border: 1px solid var(--popup-border);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.volunteer-event-popup__location i {
    color: var(--uswdgc-teal);
}

/* Stats row */
.volunteer-event-popup__stats {
    display: flex;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 400ms ease 250ms, transform 400ms ease 250ms;
}

.volunteer-event-popup.is-open .volunteer-event-popup__stats {
    opacity: 1;
    transform: translateY(0);
}

.volunteer-event-popup__stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.875rem 0.75rem;
    background: var(--popup-surface-light);
    border: 1px solid var(--popup-border);
    border-radius: 10px;
}

.volunteer-event-popup__stat--going {
    background: linear-gradient(135deg, rgba(250, 190, 40, 0.08) 0%, rgba(250, 190, 40, 0.15) 100%);
    border-color: rgba(250, 190, 40, 0.3);
}

.volunteer-event-popup__stat-value {
    font-family: var(--font-display, 'Suiza', sans-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.volunteer-event-popup__stat--going .volunteer-event-popup__stat-value {
    color: var(--uswdgc-gold);
}

.volunteer-event-popup__stat-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
}

/* Action buttons */
.volunteer-event-popup__actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 400ms ease 300ms, transform 400ms ease 300ms;
}

.volunteer-event-popup.is-open .volunteer-event-popup__actions {
    opacity: 1;
    transform: translateY(0);
}

.volunteer-event-popup__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-family: var(--font-display, 'Suiza', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    border: none;
    transition:
        transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.volunteer-event-popup__btn--outline {
    background: rgba(0, 159, 145, 0.1);
    border: 1.5px solid rgba(0, 159, 145, 0.4);
    color: var(--uswdgc-teal);
}

.volunteer-event-popup__btn--outline:hover {
    background: rgba(0, 159, 145, 0.2);
    border-color: var(--uswdgc-teal);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--uswdgc-glow-teal);
}

.volunteer-event-popup__btn--primary {
    background: linear-gradient(135deg, var(--uswdgc-gold) 0%, #e5a91f 50%, var(--uswdgc-gold) 100%);
    color: var(--uswdgc-navy);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
}

.volunteer-event-popup__btn--primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 8px 24px var(--uswdgc-glow-gold),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffe066 0%, var(--uswdgc-gold) 50%, #ffe066 100%);
}

.volunteer-event-popup__btn:active {
    transform: translateY(0) scale(0.98);
}

/* Light theme adjustments */
[data-bs-theme="light"] .volunteer-event-popup__card,
html:not([data-bs-theme="dark"]) .volunteer-event-popup__card {
    --popup-surface: rgba(255, 255, 255, 0.98);
    --popup-surface-light: rgba(0, 0, 0, 0.03);
    --popup-border: rgba(0, 0, 0, 0.08);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.06) inset,
        0 25px 60px -12px rgba(0, 0, 0, 0.25),
        0 0 80px -30px rgba(0, 159, 145, 0.3);
}

[data-bs-theme="light"] .volunteer-event-popup__title,
html:not([data-bs-theme="dark"]) .volunteer-event-popup__title {
    color: var(--uswdgc-navy);
}

[data-bs-theme="light"] .volunteer-event-popup__description,
html:not([data-bs-theme="dark"]) .volunteer-event-popup__description {
    color: rgba(0, 52, 98, 0.8);
}

[data-bs-theme="light"] .volunteer-event-popup__meta,
[data-bs-theme="light"] .volunteer-event-popup__location,
html:not([data-bs-theme="dark"]) .volunteer-event-popup__meta,
html:not([data-bs-theme="dark"]) .volunteer-event-popup__location {
    color: rgba(0, 52, 98, 0.7);
}

[data-bs-theme="light"] .volunteer-event-popup__stat-value,
html:not([data-bs-theme="dark"]) .volunteer-event-popup__stat-value {
    color: var(--uswdgc-navy);
}

[data-bs-theme="light"] .volunteer-event-popup__stat-label,
html:not([data-bs-theme="dark"]) .volunteer-event-popup__stat-label {
    color: rgba(0, 52, 98, 0.5);
}

[data-bs-theme="light"] .volunteer-event-popup__close,
html:not([data-bs-theme="dark"]) .volunteer-event-popup__close {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--uswdgc-navy);
}

[data-bs-theme="light"] .volunteer-event-popup__close:hover,
html:not([data-bs-theme="dark"]) .volunteer-event-popup__close:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Mobile responsive - drawer style */
@media (max-width: 576px) {
    .volunteer-event-popup {
        padding: 0;
        align-items: flex-end;
    }

    .volunteer-event-popup__card {
        width: 100%;
        max-height: 90vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
    }

    .volunteer-event-popup.is-open .volunteer-event-popup__card {
        transform: translateY(0);
    }

    .volunteer-event-popup__banner {
        aspect-ratio: 2 / 1;
    }

    .volunteer-event-popup__body {
        padding: 1.25rem;
        overflow-y: auto;
    }

    .volunteer-event-popup__title {
        font-size: 1.125rem;
    }

    .volunteer-event-popup__actions {
        flex-direction: column;
    }
}

/* ==========================================================================
   RSVP Modal - Premium Event Design
   ========================================================================== */

.uswdgc-rsvp-modal {
    border-radius: 20px;
    overflow: hidden;
    background: var(--theme-surface-1);
    border: none;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(0, 159, 145, 0.1),
        0 0 100px -20px var(--uswdgc-glow-teal);
}

/* Banner with 16:9 aspect ratio (matches source images) */
.uswdgc-rsvp-modal-banner {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--uswdgc-navy) 0%,
        color-mix(in srgb, var(--uswdgc-teal) 30%, var(--uswdgc-navy)) 100%
    );
}

.uswdgc-rsvp-modal-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.uswdgc-rsvp-modal:hover .uswdgc-rsvp-modal-banner img {
    transform: scale(1.02);
}

.uswdgc-rsvp-modal-banner-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0, 52, 98, 0.3) 0%,
            transparent 30%,
            transparent 50%,
            rgba(0, 52, 98, 0.7) 80%,
            rgba(0, 52, 98, 0.95) 100%
        );
    pointer-events: none;
}

/* Header styling */
.uswdgc-rsvp-modal-header {
    border-bottom: 1px solid color-mix(in srgb, var(--uswdgc-teal) 15%, transparent);
    padding: 1.25rem 1.5rem;
    background: transparent;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.uswdgc-rsvp-modal-header .modal-title {
    font-family: var(--font-display, 'Suiza', sans-serif);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--theme-text-primary);
    margin: 0;
    line-height: 1.3;
}

.uswdgc-rsvp-modal-subtitle {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--theme-text-secondary);
    margin: 0.375rem 0 0 0;
    letter-spacing: 0.02em;
}

.uswdgc-rsvp-modal-subtitle:empty {
    display: none;
}

/* When banner is shown, overlay header elegantly */
.uswdgc-rsvp-modal:has(.uswdgc-rsvp-modal-banner[style*="display: block"]) .uswdgc-rsvp-modal-header,
.uswdgc-rsvp-modal:has(.uswdgc-rsvp-modal-banner:not([style*="display: none"])) .uswdgc-rsvp-modal-header {
    position: relative;
    margin-top: -3.5rem;
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--theme-surface-1) 40%,
        var(--theme-surface-1) 100%
    );
    border-bottom: none;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}

.uswdgc-rsvp-modal:has(.uswdgc-rsvp-modal-banner[style*="display: block"]) .uswdgc-rsvp-modal-header .modal-title,
.uswdgc-rsvp-modal:has(.uswdgc-rsvp-modal-banner:not([style*="display: none"])) .uswdgc-rsvp-modal-header .modal-title {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Make subtitle visible when overlaid on banner */
.uswdgc-rsvp-modal:has(.uswdgc-rsvp-modal-banner[style*="display: block"]) .uswdgc-rsvp-modal-subtitle,
.uswdgc-rsvp-modal:has(.uswdgc-rsvp-modal-banner:not([style*="display: none"])) .uswdgc-rsvp-modal-subtitle {
    color: var(--theme-text-secondary);
    font-weight: 600;
}

/* Close button styling */
.uswdgc-rsvp-modal .btn-close {
    opacity: 0.6;
    transition: opacity 0.2s ease, transform 0.2s ease;
    margin: 0;
    padding: 0.5rem;
}

.uswdgc-rsvp-modal .btn-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Modal body with refined spacing */
.uswdgc-rsvp-modal .modal-body {
    padding: 1.5rem;
}

/* Form styling */
.uswdgc-rsvp-modal .form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--theme-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.uswdgc-rsvp-modal .form-control,
.uswdgc-rsvp-modal .form-select {
    border-radius: 10px;
    border: 2px solid var(--theme-border-color);
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    background: var(--theme-surface-1);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.uswdgc-rsvp-modal .form-control:focus,
.uswdgc-rsvp-modal .form-select:focus {
    border-color: var(--uswdgc-teal);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--uswdgc-teal) 15%, transparent);
    outline: none;
}

.uswdgc-rsvp-modal .form-control::placeholder {
    color: var(--theme-text-muted);
    opacity: 0.7;
}

/* Prefilled indicator styling */
.uswdgc-rsvp-modal .text-muted {
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.5rem;
    color: var(--theme-text-muted);
}

.uswdgc-rsvp-modal .text-muted .fa-check-circle {
    color: var(--uswdgc-teal);
}

/* Form group spacing */
.uswdgc-rsvp-modal .mb-3 {
    margin-bottom: 1.25rem !important;
}

.uswdgc-rsvp-modal .mb-3:last-child {
    margin-bottom: 0 !important;
}

/* Footer with refined button layout */
.uswdgc-rsvp-modal .modal-footer {
    border-top: 1px solid color-mix(in srgb, var(--uswdgc-teal) 10%, var(--theme-border-color));
    padding: 1.25rem 1.5rem;
    gap: 0.875rem;
    background: color-mix(in srgb, var(--theme-surface-1) 95%, var(--uswdgc-navy));
}

/* Button refinements for modal context */
.uswdgc-rsvp-modal .uswdgc-btn {
    min-width: 7rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 10px;
}

.uswdgc-rsvp-modal .uswdgc-btn-outline {
    background: transparent;
    border: 2px solid var(--theme-border-color);
    color: var(--theme-text-secondary);
}

.uswdgc-rsvp-modal .uswdgc-btn-outline:hover {
    border-color: var(--theme-text-muted);
    background: color-mix(in srgb, var(--theme-text-muted) 5%, transparent);
}

.uswdgc-rsvp-modal .uswdgc-btn-primary {
    background: linear-gradient(135deg, var(--uswdgc-teal) 0%, var(--uswdgc-teal-dark) 100%);
    border: none;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--uswdgc-teal) 30%, transparent);
}

.uswdgc-rsvp-modal .uswdgc-btn-primary:hover {
    background: linear-gradient(135deg, #00b3a3 0%, var(--uswdgc-teal) 100%);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--uswdgc-teal) 40%, transparent);
    transform: translateY(-1px);
}

.uswdgc-rsvp-modal .uswdgc-btn-primary i {
    margin-right: 0.375rem;
}

/* Dark mode adjustments */
[data-bs-theme="dark"] .uswdgc-rsvp-modal {
    background: var(--theme-surface-1);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 159, 145, 0.2),
        0 0 100px -20px var(--uswdgc-glow-teal);
}

[data-bs-theme="dark"] .uswdgc-rsvp-modal .form-control,
[data-bs-theme="dark"] .uswdgc-rsvp-modal .form-select {
    background: color-mix(in srgb, var(--theme-surface-1) 80%, var(--uswdgc-navy));
    border-color: color-mix(in srgb, var(--uswdgc-teal) 20%, var(--theme-border-color));
}

[data-bs-theme="dark"] .uswdgc-rsvp-modal .modal-footer {
    background: color-mix(in srgb, var(--theme-surface-1) 90%, var(--uswdgc-navy));
}

/* Responsive adjustments for RSVP modal */
@media (max-width: 576px) {
    .uswdgc-rsvp-modal {
        border-radius: 16px;
        margin: 0.5rem;
    }

    .uswdgc-rsvp-modal-banner {
        aspect-ratio: 16 / 9;
    }

    .uswdgc-rsvp-modal-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .uswdgc-rsvp-modal-header {
        padding: 1rem;
    }

    .uswdgc-rsvp-modal-header .modal-title {
        font-size: 0.9375rem;
    }

    /* On mobile: no overlay - header sits cleanly below image */
    .uswdgc-rsvp-modal:has(.uswdgc-rsvp-modal-banner[style*="display: block"]) .uswdgc-rsvp-modal-header,
    .uswdgc-rsvp-modal:has(.uswdgc-rsvp-modal-banner:not([style*="display: none"])) .uswdgc-rsvp-modal-header {
        margin-top: 0;
        padding-top: 1rem;
        background: var(--theme-surface-1);
        border-bottom: 1px solid var(--theme-border-color);
    }

    .uswdgc-rsvp-modal:has(.uswdgc-rsvp-modal-banner[style*="display: block"]) .uswdgc-rsvp-modal-header .modal-title,
    .uswdgc-rsvp-modal:has(.uswdgc-rsvp-modal-banner:not([style*="display: none"])) .uswdgc-rsvp-modal-header .modal-title {
        color: var(--theme-text-primary);
        text-shadow: none;
    }

    .uswdgc-rsvp-modal:has(.uswdgc-rsvp-modal-banner[style*="display: block"]) .uswdgc-rsvp-modal-subtitle,
    .uswdgc-rsvp-modal:has(.uswdgc-rsvp-modal-banner:not([style*="display: none"])) .uswdgc-rsvp-modal-subtitle {
        color: var(--uswdgc-teal);
    }

    .uswdgc-rsvp-modal .modal-body {
        padding: 1rem;
    }

    .uswdgc-rsvp-modal .modal-footer {
        padding: 1rem;
        flex-direction: column-reverse;
    }

    .uswdgc-rsvp-modal .uswdgc-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Tablet adjustments */
@media (min-width: 577px) and (max-width: 768px) {
    .uswdgc-rsvp-modal:has(.uswdgc-rsvp-modal-banner[style*="display: block"]) .uswdgc-rsvp-modal-header,
    .uswdgc-rsvp-modal:has(.uswdgc-rsvp-modal-banner:not([style*="display: none"])) .uswdgc-rsvp-modal-header {
        margin-top: -3rem;
    }
}

/* ==========================================================================
   LODGING SECTION
   ========================================================================== */

.uswdgc-lodging {
    background: linear-gradient(180deg, var(--uswdgc-navy) 0%, #001a31 100%);
}

/* Lodging section text overrides for contrast */
.uswdgc-lodging .uswdgc-section-label {
    color: var(--uswdgc-gold) !important;
}

.uswdgc-lodging .uswdgc-section-title {
    color: #ffffff !important;
}

.uswdgc-lodging .uswdgc-section-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
}

.uswdgc-lodging-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

/* Lodging Cards */
.uswdgc-lodging-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 0;
}

.uswdgc-lodging-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.uswdgc-lodging-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.uswdgc-lodging-card-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
}

.uswdgc-lodging-card--hotels .uswdgc-lodging-card-icon {
    background: linear-gradient(135deg, var(--uswdgc-teal) 0%, var(--uswdgc-teal-dark) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--uswdgc-glow-teal);
}

.uswdgc-lodging-card--rv .uswdgc-lodging-card-icon {
    background: linear-gradient(135deg, var(--uswdgc-gold) 0%, var(--uswdgc-gold-dark) 100%);
    color: var(--uswdgc-navy);
    box-shadow: 0 4px 15px var(--uswdgc-glow-gold);
}

.uswdgc-lodging-card-badge {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.uswdgc-lodging-card--hotels .uswdgc-lodging-card-badge {
    background: rgba(0, 159, 145, 0.15);
    color: var(--uswdgc-teal);
}

.uswdgc-lodging-card--rv .uswdgc-lodging-card-badge {
    background: rgba(250, 190, 40, 0.15);
    color: var(--uswdgc-gold);
}

.uswdgc-lodging-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem;
}

.uswdgc-lodging-card-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 1.5rem;
}

/* Hotel perks list */
.uswdgc-lodging-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.uswdgc-lodging-perks li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
}

.uswdgc-lodging-perks li i {
    color: var(--uswdgc-teal);
    font-size: 0.75rem;
}

.uswdgc-lodging-card-btn {
    margin-top: auto;
    justify-content: center;
    gap: 0.5rem;
}

.uswdgc-lodging-card-btn .fa-external-link-alt {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* RV Parks List */
.uswdgc-rv-parks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.uswdgc-rv-park {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.uswdgc-rv-park:hover {
    background: rgba(250, 190, 40, 0.08);
    border-color: rgba(250, 190, 40, 0.25);
    transform: translateX(4px);
}

.uswdgc-rv-park-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.uswdgc-rv-park-name {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.uswdgc-rv-park-location {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.uswdgc-rv-park-location i {
    margin-right: 0.25rem;
    font-size: 0.6875rem;
}

.uswdgc-rv-park-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    flex-shrink: 0;
}

.uswdgc-rv-park-distance {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--uswdgc-teal);
    background: rgba(0, 159, 145, 0.15);
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
}

.uswdgc-rv-park-rating {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.uswdgc-rv-park-rating i {
    color: var(--uswdgc-gold);
    margin-right: 0.25rem;
}

.uswdgc-rv-park-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.uswdgc-rv-park:hover .uswdgc-rv-park-arrow {
    color: var(--uswdgc-gold);
    transform: translateX(2px);
}

/* RV Note */
.uswdgc-rv-note {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.uswdgc-rv-note i {
    margin-right: 0.375rem;
    color: var(--uswdgc-teal);
}

/* Featured RV Option (State Park) */
.uswdgc-rv-featured {
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(250, 190, 40, 0.1) 0%, rgba(250, 190, 40, 0.03) 100%);
    border: 1px solid rgba(250, 190, 40, 0.25);
    border-radius: 10px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.uswdgc-rv-featured:hover {
    background: linear-gradient(135deg, rgba(250, 190, 40, 0.12) 0%, rgba(250, 190, 40, 0.04) 100%);
    border-color: rgba(250, 190, 40, 0.35);
}

.uswdgc-rv-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--uswdgc-gold);
    margin-bottom: 0.625rem;
}

.uswdgc-rv-featured-badge i {
    font-size: 0.625rem;
}

.uswdgc-rv-featured-card {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.uswdgc-rv-featured-card:hover .uswdgc-rv-featured-cta {
    color: #fff;
}

.uswdgc-rv-featured-content {
    margin-bottom: 1rem;
}

.uswdgc-rv-featured-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.375rem;
}

.uswdgc-rv-featured-location {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--uswdgc-teal);
    margin: 0 0 0.75rem;
}

.uswdgc-rv-featured-location i {
    margin-right: 0.25rem;
}

.uswdgc-rv-featured-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 0.75rem;
}

.uswdgc-rv-featured-desc strong {
    color: var(--uswdgc-gold);
}

.uswdgc-rv-featured-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.uswdgc-rv-featured-amenities span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
}

.uswdgc-rv-featured-amenities span i {
    color: var(--uswdgc-teal);
    font-size: 0.6875rem;
}

.uswdgc-rv-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--uswdgc-gold);
    transition: all 0.2s ease;
}

.uswdgc-rv-featured-cta i {
    font-size: 0.6875rem;
    transition: transform 0.2s ease;
}

.uswdgc-rv-featured-card:hover .uswdgc-rv-featured-cta i {
    transform: translateX(3px);
}

/* RV Featured - Course Links */
.uswdgc-rv-featured-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* RV Divider */
.uswdgc-rv-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.uswdgc-rv-divider::before,
.uswdgc-rv-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.uswdgc-rv-divider span {
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   HOTEL LIST STYLES (mirrors RV styles with teal accent)
   ========================================================================== */

/* Featured Hotel */
.uswdgc-hotel-featured {
    margin-bottom: 1.25rem;
}

.uswdgc-hotel-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--uswdgc-teal);
    margin-bottom: 0.625rem;
}

.uswdgc-hotel-featured-badge i {
    font-size: 0.625rem;
}

.uswdgc-hotel-featured-card {
    display: block;
    background: linear-gradient(135deg, rgba(0, 159, 145, 0.1) 0%, rgba(0, 159, 145, 0.03) 100%);
    border: 1px solid rgba(0, 159, 145, 0.25);
    border-radius: 10px;
    padding: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.uswdgc-hotel-featured-card:hover {
    background: linear-gradient(135deg, rgba(0, 159, 145, 0.15) 0%, rgba(0, 159, 145, 0.05) 100%);
    border-color: rgba(0, 159, 145, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 159, 145, 0.15);
}

.uswdgc-hotel-featured-content {
    margin-bottom: 1rem;
    min-width: 0;
}

.uswdgc-hotel-featured-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.375rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.uswdgc-hotel-featured-location {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--uswdgc-teal);
    margin: 0 0 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.uswdgc-hotel-featured-location i {
    margin-right: 0.25rem;
}

.uswdgc-hotel-featured-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.uswdgc-hotel-featured-desc strong {
    color: var(--uswdgc-teal);
}

.uswdgc-hotel-featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.uswdgc-hotel-rate {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
}

.uswdgc-hotel-rate i {
    color: var(--uswdgc-teal);
    margin-right: 0.375rem;
}

.uswdgc-hotel-rating {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
}

.uswdgc-hotel-rating i {
    color: var(--uswdgc-gold);
    margin-right: 0.25rem;
}

.uswdgc-hotel-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--uswdgc-teal);
    transition: all 0.2s ease;
}

.uswdgc-hotel-featured-cta i {
    font-size: 0.6875rem;
    transition: transform 0.2s ease;
}

.uswdgc-hotel-featured-card:hover .uswdgc-hotel-featured-cta i {
    transform: translateX(3px);
}

/* Featured Hotel - Sold Out State */
.uswdgc-hotel-featured-soldout {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.uswdgc-hotel-featured--soldout .uswdgc-hotel-featured-card {
    opacity: 0.85;
}

.uswdgc-hotel-featured--soldout .uswdgc-hotel-featured-cta {
    color: #f87171;
}

/* Hotel Divider */
.uswdgc-hotel-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.uswdgc-hotel-divider::before,
.uswdgc-hotel-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.uswdgc-hotel-divider span {
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

/* Hotels List */
.uswdgc-hotels-list {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 1rem;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom scrollbar for hotels list */
.uswdgc-hotels-list::-webkit-scrollbar {
    width: 4px;
}

.uswdgc-hotels-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.uswdgc-hotels-list::-webkit-scrollbar-thumb {
    background: rgba(0, 159, 145, 0.4);
    border-radius: 2px;
}

.uswdgc-hotels-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 159, 145, 0.6);
}

.uswdgc-hotel-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.uswdgc-hotel-item:hover {
    background: rgba(0, 159, 145, 0.08);
    border-color: rgba(0, 159, 145, 0.2);
    transform: translateX(3px);
}

.uswdgc-hotel-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}

.uswdgc-hotel-item-name {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.uswdgc-hotel-item-location {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.45);
}

.uswdgc-hotel-item-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.uswdgc-hotel-item-rate {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--uswdgc-teal);
}

.uswdgc-hotel-item-rating {
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
}

.uswdgc-hotel-item-rating i {
    color: var(--uswdgc-gold);
    margin-right: 0.125rem;
    font-size: 0.5625rem;
}

/* EventConnect Button */
.uswdgc-eventconnect-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(0, 159, 145, 0.15) 0%, rgba(0, 159, 145, 0.05) 100%);
    border: 1px solid rgba(0, 159, 145, 0.3);
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--uswdgc-teal);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
}

.uswdgc-eventconnect-btn:hover {
    background: linear-gradient(135deg, rgba(0, 159, 145, 0.25) 0%, rgba(0, 159, 145, 0.1) 100%);
    border-color: rgba(0, 159, 145, 0.5);
    color: #fff;
    transform: translateY(-1px);
}

.uswdgc-eventconnect-btn i {
    font-size: 0.6875rem;
    transition: transform 0.2s ease;
}

.uswdgc-eventconnect-btn:hover i {
    transform: translateX(2px);
}

/* Hotel Note */
.uswdgc-hotel-note {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.uswdgc-hotel-note i {
    margin-right: 0.375rem;
    color: var(--uswdgc-teal);
}

/* Lodging Section Responsive */
@media (max-width: 991px) {
    .uswdgc-lodging-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .uswdgc-lodging-card {
        padding: 1.5rem;
    }

    .uswdgc-lodging-card-header {
        flex-wrap: wrap;
    }

    .uswdgc-lodging-card-title {
        font-size: 1.25rem;
    }

    .uswdgc-lodging-card-desc {
        font-size: 0.9375rem;
    }

    .uswdgc-rv-park {
        padding: 0.75rem;
    }

    .uswdgc-rv-park-name {
        font-size: 0.875rem;
    }

    .uswdgc-rv-park-meta {
        flex-direction: row;
        gap: 0.5rem;
    }

    .uswdgc-rv-featured {
        padding: 1rem;
    }

    .uswdgc-rv-featured-name {
        font-size: 1rem;
    }

    .uswdgc-rv-featured-desc {
        font-size: 0.875rem;
    }

    .uswdgc-rv-featured-amenities {
        gap: 0.5rem;
    }

    .uswdgc-rv-featured-amenities span {
        font-size: 0.6875rem;
        padding: 0.1875rem 0.5rem;
    }

    .uswdgc-hotel-featured-card {
        padding: 1rem;
    }

    .uswdgc-hotel-featured-name {
        font-size: 1rem;
    }

    .uswdgc-hotel-featured-desc {
        font-size: 0.875rem;
    }

    .uswdgc-hotels-list {
        max-height: 280px;
    }

    .uswdgc-hotel-item {
        padding: 0.5rem 0.625rem;
    }

    .uswdgc-hotel-item-name {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   Brighton Moment - Video Feature Section
   ========================================================================== */

.uswdgc-brighton-moment {
    position: relative;
    padding: 5rem 2rem;
    overflow: hidden;
    background:
        linear-gradient(to bottom, rgba(0, 20, 40, 0.7) 0%, rgba(0, 30, 50, 0.85) 100%),
        url('/images/majors/uswdgc2026/brighton-valley-view.webp');
    background-size: cover;
    background-position: center 40%;
}

.uswdgc-brighton-moment__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 159, 145, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(250, 190, 40, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.uswdgc-brighton-moment__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Text Side */
.uswdgc-brighton-moment__text {
    flex: 1;
    max-width: 400px;
}

.uswdgc-brighton-moment__label {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--uswdgc-teal);
    margin-bottom: 0.75rem;
}

.uswdgc-brighton-moment__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.1;
}

.uswdgc-brighton-moment__description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.uswdgc-brighton-moment__credit {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 1.5rem;
}

.uswdgc-brighton-moment__player {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--uswdgc-gold);
}

.uswdgc-brighton-moment__detail {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.uswdgc-brighton-moment__instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-radius: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.uswdgc-brighton-moment__instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(131, 58, 180, 0.4);
    color: #fff;
}

.uswdgc-brighton-moment__instagram i {
    font-size: 1.125rem;
}

/* Video Side - Phone Frame */
.uswdgc-brighton-moment__video-wrapper {
    flex-shrink: 0;
}

.uswdgc-brighton-moment__phone-frame {
    position: relative;
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 2.5rem;
    padding: 0.75rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: rotate(2deg);
}

.uswdgc-brighton-moment__phone-notch {
    position: absolute;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #1a1a1a;
    border-radius: 0 0 1rem 1rem;
    z-index: 10;
}

.uswdgc-brighton-moment__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
    background: #000;
}

.uswdgc-brighton-moment__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.uswdgc-brighton-moment__play-btn i {
    margin-left: 3px; /* Optical centering for play icon */
}

.uswdgc-brighton-moment__play-btn:hover {
    background: var(--uswdgc-gold);
    border-color: var(--uswdgc-gold);
    color: var(--uswdgc-navy);
    transform: translate(-50%, -50%) scale(1.1);
}

.uswdgc-brighton-moment__play-btn.is-playing {
    opacity: 0;
    pointer-events: none;
}

.uswdgc-brighton-moment__mute-btn {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    backdrop-filter: blur(4px);
}

.uswdgc-brighton-moment__phone-frame:hover .uswdgc-brighton-moment__mute-btn,
.uswdgc-brighton-moment__mute-btn.is-unmuted {
    opacity: 1;
}

.uswdgc-brighton-moment__mute-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.uswdgc-brighton-moment__fullscreen-btn {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    backdrop-filter: blur(4px);
    z-index: 5;
}

.uswdgc-brighton-moment__phone-frame:hover .uswdgc-brighton-moment__fullscreen-btn {
    opacity: 1;
}

.uswdgc-brighton-moment__fullscreen-btn:hover {
    background: var(--uswdgc-gold);
    color: var(--uswdgc-navy);
    transform: scale(1.1);
}

/* Fullscreen video styling for 9:16 aspect ratio */
.uswdgc-brighton-moment__video:fullscreen,
.uswdgc-brighton-moment__video:-webkit-full-screen {
    object-fit: contain;
    background: #000;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .uswdgc-brighton-moment {
        padding: 3rem 1.5rem;
    }

    .uswdgc-brighton-moment__content {
        flex-direction: column-reverse;
        gap: 2.5rem;
        text-align: center;
    }

    .uswdgc-brighton-moment__text {
        max-width: 100%;
    }

    .uswdgc-brighton-moment__title {
        font-size: 2rem;
    }

    .uswdgc-brighton-moment__credit {
        align-items: center;
    }

    .uswdgc-brighton-moment__phone-frame {
        width: 240px;
        height: 480px;
        transform: rotate(0deg);
    }
}

@media (max-width: 480px) {
    .uswdgc-brighton-moment {
        padding: 2.5rem 1rem;
    }

    .uswdgc-brighton-moment__title {
        font-size: 1.75rem;
    }

    .uswdgc-brighton-moment__description {
        font-size: 1rem;
    }

    .uswdgc-brighton-moment__phone-frame {
        width: 200px;
        height: 400px;
        border-radius: 2rem;
        padding: 0.5rem;
    }

    .uswdgc-brighton-moment__phone-notch {
        width: 60px;
        height: 18px;
        top: 0.5rem;
    }

    .uswdgc-brighton-moment__video {
        border-radius: 1.5rem;
    }

    .uswdgc-brighton-moment__play-btn {
        width: 52px;
        height: 52px;
        font-size: 1rem;
    }
}

/* ==========================================================================
   FLiPT PROMO SECTION
   ========================================================================== */

.uswdgc-flipt {
    background: linear-gradient(180deg, #001a31 0%, var(--uswdgc-navy) 30%, var(--uswdgc-navy) 70%, #001a31 100%);
    position: relative;
    overflow: hidden;
    padding: 2.5rem 1.5rem;
}

.uswdgc-flipt .uswdgc-section-header {
    margin-bottom: 1rem;
}

.uswdgc-flipt .uswdgc-section-label {
    font-family: 'Karla', var(--font-display);
    font-size: 0.75rem;
    margin-bottom: 0.375rem;
    color: var(--uswdgc-gold) !important;
}

.uswdgc-flipt .uswdgc-section-title {
    font-family: 'Karla', var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #ffffff !important;
}

.uswdgc-flipt .uswdgc-section-subtitle {
    font-family: 'Karla', var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85) !important;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Subtle decorative overlay */
.uswdgc-flipt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 166, 156, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 166, 156, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.uswdgc-flipt .uswdgc-section-inner {
    position: relative;
    z-index: 1;
}

/* Origin Story Badges */
.uswdgc-flipt-origin {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.uswdgc-flipt-origin__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: 'Karla', var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--uswdgc-teal);
    padding: 0.375rem 0.75rem;
    background: rgba(0, 166, 156, 0.1);
    border: 1px solid rgba(0, 166, 156, 0.3);
    border-radius: 2rem;
}

.uswdgc-flipt-origin__badge i {
    font-size: 0.75rem;
}

.uswdgc-flipt-origin__divider {
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--uswdgc-teal), transparent);
}

/* Hero Image */
.uswdgc-flipt-hero-link {
    display: block;
    max-width: 720px;
    margin: 1.5rem auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.uswdgc-flipt-hero-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 166, 156, 0.25);
}

.uswdgc-flipt-hero-image {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.uswdgc-flipt-hero-link:hover .uswdgc-flipt-hero-image {
    transform: scale(1.02);
}

/* Main Promo Card */
.uswdgc-flipt-card {
    max-width: 640px;
    margin: 1.25rem auto;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.uswdgc-flipt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--uswdgc-teal), transparent);
}

.uswdgc-flipt-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 166, 156, 0.3);
    box-shadow: 0 20px 60px rgba(0, 166, 156, 0.15);
    transform: translateY(-4px);
}

/* Logo */
.uswdgc-flipt-logo-wrap {
    margin-bottom: 1rem;
}

.uswdgc-flipt-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 166, 156, 0.3));
    transition: transform 0.3s ease;
}

.uswdgc-flipt-card:hover .uswdgc-flipt-logo {
    transform: scale(1.03);
}

/* Value Props Grid */
.uswdgc-flipt-props {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.uswdgc-flipt-prop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.625rem 0.375rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    min-height: 5rem;
}

.uswdgc-flipt-prop:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* FREE props get special treatment */
.uswdgc-flipt-prop--free {
    background: rgba(0, 166, 156, 0.08);
    border-color: rgba(0, 166, 156, 0.2);
}

.uswdgc-flipt-prop--free:hover {
    background: rgba(0, 166, 156, 0.12);
    border-color: rgba(0, 166, 156, 0.3);
}

.uswdgc-flipt-prop__icon {
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--uswdgc-teal);
}

.uswdgc-flipt-prop--free .uswdgc-flipt-prop__icon {
    color: var(--uswdgc-gold);
}

.uswdgc-flipt-pdga-icon {
    width: 2.5rem;
    height: auto;
    opacity: 0.9;
}

.uswdgc-flipt-prop--pdga {
    justify-content: center;
}

.uswdgc-flipt-prop--pdga .uswdgc-flipt-prop__icon {
    width: auto;
    height: auto;
}

.uswdgc-flipt-prop--pdga .uswdgc-flipt-prop__text {
    gap: 0;
}

.uswdgc-flipt-prop__text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.uswdgc-flipt-prop__label {
    font-family: 'Karla', var(--font-display);
    font-size: 0.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
}

.uswdgc-flipt-prop__value {
    font-family: 'Karla', var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
}

.uswdgc-flipt-prop--free .uswdgc-flipt-prop__value {
    color: var(--uswdgc-gold);
}

/* Tagline */
.uswdgc-flipt-tagline {
    font-family: 'Karla', var(--font-body);
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 1rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.uswdgc-flipt-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--uswdgc-gold) 0%, var(--uswdgc-gold-dark) 100%);
    color: var(--uswdgc-navy);
    font-family: 'Karla', var(--font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow:
        0 4px 20px var(--uswdgc-glow-gold),
        0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.uswdgc-flipt-cta:hover {
    background: linear-gradient(135deg, #ffe066 0%, var(--uswdgc-gold) 100%);
    transform: translateY(-2px);
    box-shadow:
        0 8px 30px var(--uswdgc-glow-gold),
        0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--uswdgc-navy);
    text-decoration: none;
}

.uswdgc-flipt-cta i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.uswdgc-flipt-cta:hover i {
    transform: translateX(4px);
}

/* Bottom Note */
.uswdgc-flipt-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    font-family: 'Karla', var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.uswdgc-flipt-note i {
    color: #e57373;
    font-size: 0.625rem;
}

/* Responsive: Tablet */
@media (max-width: 900px) {
    .uswdgc-flipt-props {
        grid-template-columns: repeat(2, 1fr);
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .uswdgc-flipt-card {
        padding: 1.25rem 1rem;
    }

    .uswdgc-flipt-logo {
        max-width: 180px;
    }
}

/* Responsive: Mobile */
@media (max-width: 600px) {
    .uswdgc-flipt-hero-link {
        margin: 1rem auto;
        border-radius: 12px;
    }

    .uswdgc-flipt-origin {
        flex-direction: column;
        gap: 0.375rem;
    }

    .uswdgc-flipt-origin__divider {
        width: 2px;
        height: 10px;
        background: linear-gradient(180deg, transparent, var(--uswdgc-teal), transparent);
    }

    .uswdgc-flipt-card {
        padding: 1rem 0.75rem;
        margin: 1rem auto;
    }

    .uswdgc-flipt-logo {
        max-width: 160px;
    }

    .uswdgc-flipt-props {
        gap: 0.5rem;
    }

    .uswdgc-flipt-prop {
        padding: 0.5rem 0.375rem;
    }

    .uswdgc-flipt-prop__icon {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.875rem;
    }

    .uswdgc-flipt-prop__label {
        font-size: 0.5rem;
    }

    .uswdgc-flipt-prop__value {
        font-size: 0.6875rem;
    }

    .uswdgc-flipt-tagline {
        font-size: 0.8125rem;
    }

    .uswdgc-flipt-cta {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
    }

    .uswdgc-flipt-cta__text {
        display: block;
        line-height: 1.3;
    }

    .uswdgc-flipt-note {
        font-size: 0.6875rem;
        text-align: center;
        flex-wrap: wrap;
    }
}

/* Very small mobile */
@media (max-width: 400px) {
    .uswdgc-flipt-props {
        grid-template-columns: 1fr 1fr;
        gap: 0.375rem;
    }

    .uswdgc-flipt-logo {
        max-width: 140px;
    }

    .uswdgc-flipt-cta {
        padding: 0.5rem 1rem;
        font-size: 0.6875rem;
    }
}

/* ==========================================================================
   GOLDEN JUBILEE: Dual Anniversary Celebration
   50th PDGA + 25th USWDGC
   Design: Commemorative plaque aesthetic with gold accents
   ========================================================================== */

.uswdgc-golden-jubilee {
    position: relative;
    padding: 3.5rem 1.5rem;
    background:
        /* Subtle radial glow */
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(250, 190, 40, 0.08) 0%, transparent 60%),
        /* Deep navy base */
        linear-gradient(180deg,
            var(--uswdgc-navy) 0%,
            #001a35 50%,
            var(--uswdgc-navy) 100%);
    overflow: hidden;
}

/* Animated background shimmer */
.uswdgc-golden-jubilee::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            transparent 2px,
            rgba(250, 190, 40, 0.02) 2px,
            rgba(250, 190, 40, 0.02) 4px
        );
    pointer-events: none;
    animation: jubileeShimmer 20s linear infinite;
}

@keyframes jubileeShimmer {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

/* Top and bottom gold borders */
.uswdgc-golden-jubilee::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1px;
    top: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(250, 190, 40, 0.3) 20%,
        var(--uswdgc-gold) 50%,
        rgba(250, 190, 40, 0.3) 80%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(250, 190, 40, 0.3);
}

.uswdgc-jubilee-inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(250, 190, 40, 0.2);
    background:
        linear-gradient(135deg,
            rgba(250, 190, 40, 0.03) 0%,
            transparent 50%,
            rgba(250, 190, 40, 0.03) 100%);
}

/* Corner flourishes - Art Deco inspired */
.uswdgc-jubilee-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
}

.uswdgc-jubilee-corner::before,
.uswdgc-jubilee-corner::after {
    content: '';
    position: absolute;
    background: var(--uswdgc-gold);
}

.uswdgc-jubilee-corner--tl { top: -1px; left: -1px; }
.uswdgc-jubilee-corner--tr { top: -1px; right: -1px; }
.uswdgc-jubilee-corner--bl { bottom: -1px; left: -1px; }
.uswdgc-jubilee-corner--br { bottom: -1px; right: -1px; }

.uswdgc-jubilee-corner--tl::before { top: 0; left: 0; width: 20px; height: 2px; }
.uswdgc-jubilee-corner--tl::after { top: 0; left: 0; width: 2px; height: 20px; }

.uswdgc-jubilee-corner--tr::before { top: 0; right: 0; width: 20px; height: 2px; }
.uswdgc-jubilee-corner--tr::after { top: 0; right: 0; width: 2px; height: 20px; }

.uswdgc-jubilee-corner--bl::before { bottom: 0; left: 0; width: 20px; height: 2px; }
.uswdgc-jubilee-corner--bl::after { bottom: 0; left: 0; width: 2px; height: 20px; }

.uswdgc-jubilee-corner--br::before { bottom: 0; right: 0; width: 20px; height: 2px; }
.uswdgc-jubilee-corner--br::after { bottom: 0; right: 0; width: 2px; height: 20px; }

.uswdgc-jubilee-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Decorative flourishes */
.uswdgc-jubilee-flourish {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.uswdgc-jubilee-flourish--bottom {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.uswdgc-jubilee-star {
    color: var(--uswdgc-gold);
    font-size: 0.875rem;
    animation: starTwinkle 3s ease-in-out infinite;
}

.uswdgc-jubilee-star:last-child {
    animation-delay: 1.5s;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.uswdgc-jubilee-diamond {
    color: var(--uswdgc-gold);
    font-size: 0.625rem;
}

.uswdgc-jubilee-line {
    flex: 0 1 60px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(250, 190, 40, 0.5) 50%,
        transparent 100%);
}

/* "A Historic Convergence" label */
.uswdgc-jubilee-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--uswdgc-gold);
    margin-bottom: 1.75rem;
    opacity: 0.9;
}

/* Dual Anniversary Display */
.uswdgc-jubilee-dual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.uswdgc-jubilee-milestone {
    flex: 0 0 auto;
    text-align: center;
}

.uswdgc-jubilee-number {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(3rem, 10vw, 4.5rem);
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    text-shadow:
        0 0 40px rgba(250, 190, 40, 0.4),
        0 2px 0 rgba(0, 0, 0, 0.3);
}

.uswdgc-jubilee-number sup {
    font-size: 0.4em;
    font-weight: 500;
    vertical-align: super;
    margin-left: 0.05em;
}

.uswdgc-jubilee-event {
    font-family: var(--font-display);
    font-size: clamp(0.875rem, 2.5vw, 1.125rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--uswdgc-gold);
    margin-top: 0.25rem;
}

.uswdgc-jubilee-years {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.375rem;
}

/* Center emblem with PDGA logo */
.uswdgc-jubilee-emblem {
    position: relative;
    flex: 0 0 auto;
}

.uswdgc-jubilee-emblem-ring {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--uswdgc-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 30%,
            rgba(250, 190, 40, 0.15) 0%,
            transparent 60%),
        rgba(0, 52, 98, 0.8);
    box-shadow:
        0 0 30px rgba(250, 190, 40, 0.3),
        inset 0 0 20px rgba(250, 190, 40, 0.1);
    animation: emblemPulse 4s ease-in-out infinite;
}

@keyframes emblemPulse {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(250, 190, 40, 0.3),
            inset 0 0 20px rgba(250, 190, 40, 0.1);
    }
    50% {
        box-shadow:
            0 0 50px rgba(250, 190, 40, 0.5),
            inset 0 0 30px rgba(250, 190, 40, 0.2);
    }
}

.uswdgc-jubilee-emblem-glow {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 190, 40, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: glowRotate 10s linear infinite;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.uswdgc-jubilee-pdga-logo {
    width: 32px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Tagline */
.uswdgc-jubilee-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto 1.25rem;
}

/* Ed Headrick Quote */
.uswdgc-jubilee-quote {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.uswdgc-jubilee-quote-mark {
    font-size: 1.5em;
    color: var(--uswdgc-gold);
    opacity: 0.6;
    line-height: 0;
    vertical-align: -0.15em;
}

.uswdgc-jubilee-attribution {
    display: block;
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .uswdgc-golden-jubilee {
        padding: 2.5rem 1rem;
    }

    .uswdgc-jubilee-inner {
        padding: 2rem 1.25rem;
    }

    .uswdgc-jubilee-dual {
        gap: 1rem;
    }

    .uswdgc-jubilee-emblem-ring {
        width: 56px;
        height: 56px;
    }

    .uswdgc-jubilee-pdga-logo {
        width: 26px;
    }

    .uswdgc-jubilee-corner {
        width: 25px;
        height: 25px;
    }

    .uswdgc-jubilee-corner--tl::before,
    .uswdgc-jubilee-corner--tr::before,
    .uswdgc-jubilee-corner--bl::before,
    .uswdgc-jubilee-corner--br::before {
        width: 12px;
    }

    .uswdgc-jubilee-corner--tl::after,
    .uswdgc-jubilee-corner--tr::after,
    .uswdgc-jubilee-corner--bl::after,
    .uswdgc-jubilee-corner--br::after {
        height: 12px;
    }
}

/* Tablet and up */
@media (min-width: 768px) {
    .uswdgc-golden-jubilee {
        padding: 4rem 2rem;
    }

    .uswdgc-jubilee-inner {
        padding: 3rem 3.5rem;
    }

    .uswdgc-jubilee-dual {
        gap: 3rem;
    }

    .uswdgc-jubilee-emblem-ring {
        width: 90px;
        height: 90px;
    }

    .uswdgc-jubilee-pdga-logo {
        width: 40px;
    }

    .uswdgc-jubilee-line {
        flex: 0 1 100px;
    }

    .uswdgc-jubilee-corner {
        width: 50px;
        height: 50px;
    }

    .uswdgc-jubilee-corner--tl::before,
    .uswdgc-jubilee-corner--tr::before,
    .uswdgc-jubilee-corner--bl::before,
    .uswdgc-jubilee-corner--br::before {
        width: 25px;
    }

    .uswdgc-jubilee-corner--tl::after,
    .uswdgc-jubilee-corner--tr::after,
    .uswdgc-jubilee-corner--bl::after,
    .uswdgc-jubilee-corner--br::after {
        height: 25px;
    }
}

/* Animation on scroll into view */
@media (prefers-reduced-motion: no-preference) {
    .uswdgc-jubilee-milestone {
        animation: jubileeFadeIn 0.8s ease-out both;
    }

    .uswdgc-jubilee-milestone:first-child {
        animation-delay: 0.1s;
    }

    .uswdgc-jubilee-emblem {
        animation: jubileeFadeIn 0.8s ease-out 0.25s both;
    }

    .uswdgc-jubilee-milestone:last-child {
        animation-delay: 0.4s;
    }

    .uswdgc-jubilee-tagline {
        animation: jubileeFadeIn 0.8s ease-out 0.6s both;
    }

    .uswdgc-jubilee-quote {
        animation: jubileeFadeIn 0.8s ease-out 0.75s both;
    }
}

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