/* ============================================================
   McGRAW — PAWN SHOP GUITAR TOUR 2026
   Premium Tour Deck Stylesheet
   Colors: #4d1e13 (brown) #97e2ff (blue) #feba6a (orange) #fff
   ============================================================ */

/* --- AUTH GATE --- */
#auth-gate {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0a0604;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#auth-gate.unlocked {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.auth-card {
    text-align: center;
    max-width: 380px;
    width: 90%;
}

.auth-title {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 4rem;
    letter-spacing: 0.2em;
    color: #97e2ff;
    line-height: 1;
    text-shadow: 0 0 60px rgba(151, 226, 255, 0.3);
}

.auth-sub {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.5rem;
}

.auth-divider {
    width: 50px;
    height: 1px;
    background: #feba6a;
    margin: 2rem auto;
}

.auth-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

#auth-form {
    display: flex;
    gap: 0;
    max-width: 320px;
    margin: 0 auto;
}

#auth-input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    outline: none;
    transition: border-color 0.3s ease;
}

#auth-input:focus {
    border-color: rgba(254, 186, 106, 0.4);
}

#auth-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

#auth-btn {
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, #feba6a, #e5a050);
    color: #0a0604;
    border: none;
    border-radius: 0 8px 8px 0;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

#auth-btn:hover {
    box-shadow: 0 4px 20px rgba(254, 186, 106, 0.4);
    transform: translateY(-1px);
}

.auth-error {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #ff6b6b;
    margin-top: 1rem;
    min-height: 1.2em;
}

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --brown: #4d1e13;
    --brown-deep: #2a0f09;
    --blue: #97e2ff;
    --blue-dim: #5ab3d9;
    --orange: #feba6a;
    --orange-bright: #ffcf8a;
    --white: #ffffff;
    --off-white: #e8e4e0;
    --black: #0a0604;
    --dark: #1a1210;
    --dark-card: rgba(26, 18, 16, 0.85);
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-display: 'Bebas Neue', 'Oswald', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-x: hidden;
    background: var(--black);
}

body {
    font-family: var(--font-body);
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--orange);
    color: var(--black);
}

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

/* --- NAVIGATION --- */
#deck-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: rgba(10, 6, 4, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.5s var(--ease-out);
    overflow-y: auto;
}

#deck-nav.open { transform: translateX(0); }

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    color: var(--white);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.nav-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover { color: var(--off-white); background: var(--glass); }

.nav-link.active {
    color: var(--orange);
    background: rgba(254, 186, 106, 0.08);
}

.nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: var(--orange);
    border-radius: 2px;
}

#pdf-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--orange), #e5a050);
    color: var(--black);
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

#pdf-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(254, 186, 106, 0.4);
}

/* Menu Toggle */
#menu-toggle {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 1001;
    width: 40px;
    height: 40px;
    background: rgba(10, 6, 4, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
}

#menu-toggle:hover { background: rgba(254, 186, 106, 0.15); }

#menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s ease;
}

#menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
#menu-toggle.active span:nth-child(2) { opacity: 0; }
#menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Page Indicator */
#page-indicator {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

#current-page {
    font-size: 2rem;
    color: var(--orange);
}

/* --- SLIDES --- */
.slide {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    scroll-snap-align: start;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Backgrounds */
.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 6, 4, 0.75) 0%, rgba(77, 30, 19, 0.45) 100%);
}

.bg-overlay.overlay-dark {
    background: linear-gradient(135deg, rgba(10, 6, 4, 0.88) 0%, rgba(26, 18, 16, 0.75) 100%);
}

.bg-overlay.overlay-heavy {
    background: rgba(10, 6, 4, 0.82);
}

.bg-overlay.overlay-gradient {
    background: linear-gradient(to right, rgba(10, 6, 4, 0.95) 0%, rgba(77, 30, 19, 0.5) 60%, rgba(10, 6, 4, 0.7) 100%);
}

.bg-gradient-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--black) 0%, var(--brown-deep) 50%, var(--dark) 100%);
}

.bg-gradient-warm {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--black) 0%, #1a1008 40%, var(--brown-deep) 100%);
}

/* Ambient Glow Effects */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
    animation: glow-pulse 8s ease-in-out infinite alternate;
}

.glow-orange {
    background: var(--orange);
    bottom: -200px;
    right: -100px;
}

.glow-blue {
    background: var(--blue);
    top: -200px;
    left: -100px;
    animation-delay: -4s;
}

.glow-orange.bottom-right { bottom: -200px; right: -100px; }
.glow-blue.top-left { top: -200px; left: -100px; }
.glow-blue.bottom-left { bottom: -200px; left: -100px; }
.glow-orange.top-right { top: -200px; right: -100px; }

@keyframes glow-pulse {
    0% { opacity: 0.1; transform: scale(1); }
    100% { opacity: 0.2; transform: scale(1.15); }
}

/* Guitar Strings */
.guitar-strings {
    position: absolute;
    top: 0;
    right: 15%;
    width: 80px;
    height: 100%;
    display: flex;
    gap: 12px;
    z-index: 1;
    opacity: 0.12;
}

.string {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--orange), var(--orange), transparent);
    animation: string-vibrate 3s ease-in-out infinite;
}

.string:nth-child(2) { animation-delay: 0.3s; opacity: 0.8; }
.string:nth-child(3) { animation-delay: 0.6s; opacity: 0.6; }
.string:nth-child(4) { animation-delay: 0.9s; opacity: 0.7; }
.string:nth-child(5) { animation-delay: 1.2s; opacity: 0.5; }
.string:nth-child(6) { animation-delay: 1.5s; opacity: 0.4; }

@keyframes string-vibrate {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(1.5px); }
    40% { transform: translateX(-1px); }
    60% { transform: translateX(0.8px); }
    80% { transform: translateX(-0.5px); }
}

/* Cover entrance shimmer */
@keyframes cover-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.cover-mcgraw {
    background: linear-gradient(
        90deg,
        var(--blue) 0%, var(--blue) 40%,
        var(--white) 50%,
        var(--blue) 60%, var(--blue) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cover-shimmer 6s ease-in-out infinite;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5rem;
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* --- TYPOGRAPHY --- */
.eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    letter-spacing: 0.04em;
    line-height: 1.05;
    margin-bottom: 2.5rem;
    color: var(--white);
}

.display-heading {
    font-family: var(--font-display);
    font-size: 4.5rem;
    letter-spacing: 0.03em;
    line-height: 1.05;
    color: var(--white);
}

.sub-heading {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--off-white);
    margin-top: 0.5rem;
}

.accent-orange-text { color: var(--orange); }
.accent-blue-text { color: var(--blue); }

/* --- DIVIDERS --- */
.divider-line {
    width: 100%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--orange), transparent);
    margin: 2rem auto;
}

.stat-divider {
    width: 120px;
    height: 1px;
    background: var(--orange);
    margin: 1.5rem 0;
}

/* --- ANIMATIONS --- */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

[data-animate="fade-left"] {
    transform: translateX(50px);
}

[data-animate="fade-right"] {
    transform: translateX(-50px);
}

[data-animate="scale-x"] {
    transform: scaleX(0);
    transform-origin: center;
}

[data-animate="zoom-in"] {
    transform: scale(0.85);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scaleX(1) scale(1);
}

/* Staggered card animations */
.partnership-card,
.vip-card,
.community-card,
.arc-card,
.social-card,
.sponsor-tier {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out),
                border-color 0.3s ease, box-shadow 0.3s ease;
}

.partnership-card.card-visible,
.vip-card.card-visible,
.community-card.card-visible,
.arc-card.card-visible,
.social-card.card-visible,
.sponsor-tier.card-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Shimmer highlight effect on cards */
.partnership-card::after,
.vip-card::after,
.sponsor-tier::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(254,186,106,0.04), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.partnership-card:hover::after,
.vip-card:hover::after,
.sponsor-tier:hover::after {
    left: 100%;
}

/* Pulse glow on featured tier */
.sponsor-tier.featured {
    animation: tier-glow 4s ease-in-out infinite alternate;
}

@keyframes tier-glow {
    0% { box-shadow: 0 0 20px rgba(254, 186, 106, 0.05); }
    100% { box-shadow: 0 0 40px rgba(254, 186, 106, 0.12); }
}

/* --- COVER SECTION --- */
.bg-overlay.overlay-cover {
    background: linear-gradient(180deg, rgba(10, 6, 4, 0.3) 0%, rgba(10, 6, 4, 0.15) 30%, rgba(10, 6, 4, 0.25) 60%, rgba(10, 6, 4, 0.85) 100%);
}

.cover-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 2rem;
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 2rem;
    text-align: center;
}

.cover-logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cover-tour-logo {
    max-width: 580px;
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
    filter: drop-shadow(0 0 50px rgba(254, 186, 106, 0.35)) drop-shadow(0 0 100px rgba(254, 186, 106, 0.15));
}

.cover-details {
    text-align: center;
}

.cover-mcgraw {
    font-family: var(--font-display);
    font-size: 6rem;
    letter-spacing: 0.25em;
    line-height: 0.85;
    color: var(--blue);
    text-shadow: 0 0 60px rgba(151, 226, 255, 0.35), 0 0 120px rgba(151, 226, 255, 0.15);
    margin-bottom: 0;
}

.cover-guests {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.5rem;
}

.cover-names {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cover-names .and {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0.5rem;
    letter-spacing: 0.1em;
}

.cover-stadium-note {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    margin-top: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cover-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cover-meta-item {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.cover-meta-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--orange);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
    pointer-events: none;
}

.scroll-indicator span {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* --- LEGEND AWARDS --- */
.legend-awards {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.award-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(254, 186, 106, 0.08);
    border: 1px solid rgba(254, 186, 106, 0.2);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--off-white);
    transition: all 0.3s ease;
}

.award-pill:hover {
    background: rgba(254, 186, 106, 0.14);
    border-color: rgba(254, 186, 106, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(254, 186, 106, 0.15);
}

.award-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--orange);
    line-height: 1;
}

/* --- STAT HERO --- */
.stat-hero { text-align: center; }

.stat-number {
    font-family: var(--font-display);
    font-size: 10rem;
    line-height: 1;
    color: var(--white);
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-suffix {
    font-size: 4rem;
    color: var(--orange);
    margin-left: 0.25rem;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--off-white);
    margin-top: 0.5rem;
}

.stat-sub h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stat-sub p {
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

/* --- NUMBERS GRID --- */
.numbers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.number-card-img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.number-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.big-stat {
    display: flex;
    flex-direction: column;
}

.big-stat .counter {
    font-family: var(--font-display);
    font-size: 12rem;
    line-height: 0.9;
    color: var(--white);
}

.big-stat-label {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
}

.numbers-extra {
    margin-top: 1.5rem;
}

.numbers-extra p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

.numbers-extra strong {
    font-weight: 600;
}

.tour-detail-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-number {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--orange);
}

.detail-dates {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
}

.detail-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    display: block;
    margin-top: 0.25rem;
}

/* --- COMBINED TOUR --- */
.tour-combined {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tour-combined-header {
    text-align: left;
}

/* --- TOUR SECTION LABELS --- */
.stadium-section-label,
.amphitheater-section-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.stadium-section-label {
    background: rgba(254, 186, 106, 0.08);
    border: 1px solid rgba(254, 186, 106, 0.2);
}

.amphitheater-section-label {
    background: rgba(151, 226, 255, 0.06);
    border: 1px solid rgba(151, 226, 255, 0.15);
    margin-top: 1.5rem;
}

.section-label-icon {
    font-size: 1.2rem;
    color: var(--orange);
    text-shadow: 0 0 10px rgba(254, 186, 106, 0.5);
}

.section-label-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.section-label-dot.amph {
    background: var(--blue);
    box-shadow: 0 0 8px rgba(151, 226, 255, 0.5);
}

.section-label-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}

.section-label-with {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-left: auto;
}

/* --- STADIUM SHOW CARDS --- */
.stadium-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 0.75rem;
}

.stadium-card {
    position: relative;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(254, 186, 106, 0.1), rgba(254, 186, 106, 0.03));
    border: 1px solid rgba(254, 186, 106, 0.3);
    border-radius: 12px;
    text-align: center;
    transition: all 0.35s ease;
    overflow: hidden;
}

.stadium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(254, 186, 106, 0.06), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.stadium-card:hover {
    transform: translateY(-4px);
    border-color: rgba(254, 186, 106, 0.5);
    box-shadow: 0 12px 30px rgba(254, 186, 106, 0.12);
}

.stadium-card:hover::before {
    opacity: 1;
}

.stadium-card-star {
    font-size: 1rem;
    color: var(--orange);
    margin-bottom: 0.25rem;
    text-shadow: 0 0 12px rgba(254, 186, 106, 0.5);
}

.stadium-card-date {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.stadium-card-city {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.04em;
    color: var(--orange);
    line-height: 1.1;
}

.stadium-card-venue {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.35rem;
}

/* --- TOUR DATE GRID --- */
.tour-date-grid {
    padding: 1.75rem 2rem;
    background: rgba(10, 6, 4, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.tour-date-grid .date-grid-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tour-date-grid .date-grid-col h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    color: var(--blue);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(151, 226, 255, 0.15);
}

.tour-date-grid .date-grid-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    transition: background 0.2s ease;
}

.tour-date-grid .date-grid-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.dg-date {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
    min-width: 48px;
    flex-shrink: 0;
}

.dg-city {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--off-white);
}

.dg-star {
    color: var(--orange);
    font-size: 0.85rem;
    margin-left: auto;
    text-shadow: 0 0 8px rgba(254, 186, 106, 0.4);
}

/* Stadium date highlight */
.tour-date-grid .date-grid-item.stadium-date {
    background: rgba(254, 186, 106, 0.06);
    border: 1px solid rgba(254, 186, 106, 0.15);
    border-radius: 6px;
    margin: 0.15rem -0.5rem;
    padding: 0.45rem 0.75rem;
}

.tour-date-grid .date-grid-item.stadium-date .dg-date {
    color: var(--orange);
    font-weight: 500;
}

.tour-date-grid .date-grid-item.stadium-date .dg-city {
    color: var(--orange);
    font-weight: 600;
}

/* Date grid legend */
.date-grid-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(254, 186, 106, 0.06);
    border: 1px solid rgba(254, 186, 106, 0.15);
    border-radius: 8px;
}

.dg-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
}

.dg-legend-star {
    color: var(--orange);
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(254, 186, 106, 0.5);
}

/* --- PARTNERSHIP CARDS --- */
.partnership-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.partnership-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.partnership-card:hover {
    border-color: rgba(254, 186, 106, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.partnership-card-img {
    width: 140px;
    min-height: 110px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.partnership-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

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

.partnership-card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partnership-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.partnership-card-info p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
}

.additional-opps h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.opp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.opp-tag {
    padding: 0.4rem 0.8rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--off-white);
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.opp-tag:hover {
    background: rgba(151, 226, 255, 0.08);
    border-color: rgba(151, 226, 255, 0.25);
    color: var(--blue);
    transform: translateY(-2px);
}

/* --- SPONSORSHIP TIERS --- */
.sponsor-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.sponsor-tier {
    padding: 2rem;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sponsor-tier:hover {
    border-color: rgba(254, 186, 106, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sponsor-tier.featured {
    border-color: rgba(254, 186, 106, 0.3);
    background: linear-gradient(135deg, rgba(42, 15, 9, 0.95), rgba(26, 18, 16, 0.95));
}

.sponsor-tier.featured::before {
    content: 'PREMIER';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.3rem 1rem;
    background: var(--orange);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    border-radius: 0 12px 0 8px;
}


.sponsor-tier h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.tier-sub {
    font-size: 0.75rem;
    color: var(--orange);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.tier-features {
    list-style: none;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.tier-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}


/* --- VIP GRID --- */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.vip-card {
    padding: 2rem;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.vip-card:hover {
    border-color: rgba(254, 186, 106, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vip-card-img {
    width: 100%;
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.vip-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

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

.vip-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.vip-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* --- TIER & VIP SHARED PHOTO STYLE --- */
.tier-img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.tier-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.4s ease;
}

.sponsor-tier:hover .tier-img img {
    transform: scale(1.05);
}

/* --- BRAND CIRCLE --- */
.brand-circle-container {
    position: relative;
    width: 550px;
    height: 550px;
    margin: 0 auto;
}

.brand-circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(254, 186, 106, 0.12), rgba(151, 226, 255, 0.08));
    border: 1px solid rgba(254, 186, 106, 0.25);
    z-index: 2;
}

.bcc-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.12em;
    color: var(--white);
}

.bcc-sub {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.brand-orbit-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: orbit-rotate 60s linear infinite;
}

@keyframes orbit-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.brand-orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130px;
    text-align: center;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-210px) rotate(calc(-1 * var(--angle)));
    z-index: 3;
}

.orbit-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color);
}

.brand-orbit-item h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--off-white);
    margin-bottom: 0.2rem;
}

.brand-orbit-item p {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .brand-circle-container {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .brand-circle-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        grid-column: 1 / -1;
        width: 100%;
        height: auto;
        border-radius: 12px;
        padding: 1.5rem;
    }
    .brand-orbit-item {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        transform: none;
        padding: 1rem;
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
    }
    .brand-orbit-ring { display: none; }
}

/* --- SONGS CAROUSEL --- */
#songs .slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
}

.songs-carousel {
    max-width: 900px;
    width: 100%;
    margin: 2rem auto;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.song-quote {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(25px) scale(0.97);
    filter: blur(4px);
    transition: all 0.8s var(--ease-out);
    pointer-events: none;
}

.song-quote.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    pointer-events: auto;
}

.song-quote blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 2.2rem;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.song-quote cite {
    font-family: var(--font-heading);
    font-style: normal;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.song-nav {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    z-index: 5;
}

.song-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.song-dot.active {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.2);
}

/* --- FILM SECTION --- */
.film-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.film-stat-block { text-align: left; }

.film-approaching {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.25rem;
}

.film-number {
    font-family: var(--font-display);
    font-size: 7rem;
    line-height: 1;
    color: var(--orange);
}

.film-label {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--off-white);
}

.film-posters {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.film-poster {
    width: 120px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.film-poster:hover { transform: translateY(-8px) scale(1.05); }

.series-1883 { margin-top: 1rem; }

.series-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.series-portrait {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.series-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.25rem;
}

.series-text p {
    font-size: 0.9rem;
    color: var(--off-white);
    margin-bottom: 0.75rem;
}

.series-stats {
    display: flex;
    gap: 2rem;
}

.series-stats span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.series-stats strong {
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 1.1rem;
}

/* --- TIME LAYOUT --- */
.time-layout {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 4rem;
    align-items: center;
}

.time-cover {
    max-height: 70vh;
    width: auto;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: float-subtle 6s ease-in-out infinite;
}

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

.time-text {
    text-align: left;
}

/* --- SOCIAL MEDIA --- */
.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    width: 100%;
}

.social-card {
    padding: 1.5rem;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.social-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: 0 auto 0.75rem;
}

.social-icon.instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: #fff; }
.social-icon.facebook { background: #1877f2; color: #fff; }
.social-icon.spotify { background: #1db954; color: #fff; }
.social-icon.tiktok { background: #010101; color: #fff; border: 1px solid rgba(255,255,255,0.1); }
.social-icon.twitter { background: #000; color: #fff; border: 1px solid rgba(255,255,255,0.1); }
.social-icon.youtube { background: #ff0000; color: #fff; }

.social-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.social-platform {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.75rem;
}

.social-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.social-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-bright));
    width: 0;
    transition: width 1.8s var(--ease-spring);
}

.social-card:nth-child(2) .social-bar-fill { background: linear-gradient(90deg, #1877f2, #4da3ff); }
.social-card:nth-child(3) .social-bar-fill { background: linear-gradient(90deg, #1db954, #1ed760); }
.social-card:nth-child(5) .social-bar-fill { background: linear-gradient(90deg, #555, #888); }
.social-card:nth-child(6) .social-bar-fill { background: linear-gradient(90deg, #ff0000, #ff4444); }

.social-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    padding: 1.5rem 3rem;
    background: rgba(254, 186, 106, 0.06);
    border: 1px solid rgba(254, 186, 106, 0.15);
    border-radius: 12px;
}

.total-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.25rem;
}

.total-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--orange);
    line-height: 1;
}

.total-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.25rem;
}

/* --- BOOKS --- */
.books-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.book-item {
    position: relative;
    transition: transform 0.3s ease;
}

.book-item:hover { transform: translateY(-8px); }

.book-cover {
    width: 180px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.nyt-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--orange);
    color: var(--black);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    animation: badge-pulse 3s ease-in-out infinite alternate;
}

@keyframes badge-pulse {
    0% { box-shadow: 0 2px 8px rgba(254, 186, 106, 0.3); }
    100% { box-shadow: 0 4px 16px rgba(254, 186, 106, 0.6); }
}

/* --- SPORTS ARC --- */
.sports-arc {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: flex-end;
    max-width: 1100px;
    perspective: 800px;
}

.arc-card {
    flex: 1;
    max-width: 260px;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.arc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(254, 186, 106, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.arc-1 { transform: translateY(0px); }
.arc-2 { transform: translateY(-20px); }
.arc-3 { transform: translateY(-30px); }
.arc-4 { transform: translateY(-20px); }

.arc-img-wrap {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.arc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

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

.arc-info {
    padding: 1.25rem;
}

.arc-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.arc-info p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.sport-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.sport-stat { display: flex; flex-direction: column; }

.sport-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
}

.sport-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

/* --- COMMUNITY --- */
.community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.community-card {
    padding: 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.35s ease;
}

.community-card:hover {
    border-color: rgba(254, 186, 106, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.community-icon {
    margin-bottom: 1rem;
    display: flex;
}

.community-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.community-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.ada-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(151, 226, 255, 0.08);
    border: 1px solid rgba(151, 226, 255, 0.15);
    border-radius: 8px;
}

.ada-years {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--blue);
}

.ada-label {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--off-white);
}

/* --- FITNESS --- */
.fitness-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.fitness-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.fitness-brand {
    padding: 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.fitness-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.fitness-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.fitness-images {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 1rem;
}

.fitness-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.fitness-img-book {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* --- CONSUMER CHARTS --- */
.consumer-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    width: 100%;
}

.chart-card {
    padding: 2rem;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.chart-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bar-row {
    display: grid;
    grid-template-columns: 120px 1fr 50px;
    gap: 1rem;
    align-items: center;
}

.bar-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: right;
}

.bar-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--blue), var(--blue-dim));
    width: 0;
    transition: width 1.8s var(--ease-spring);
}

.bar-fill.orange {
    background: linear-gradient(90deg, var(--orange), var(--orange-bright));
}

.bar-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    text-align: right;
}

/* --- CLOSE --- */
.close-mcgraw {
    font-family: var(--font-display);
    font-size: 10rem;
    letter-spacing: 0.15em;
    line-height: 0.85;
    color: var(--blue);
    text-shadow: 0 0 80px rgba(151, 226, 255, 0.35);
}

.close-tour-logo {
    max-width: 480px;
    width: 100%;
    height: auto;
    margin-top: 1rem;
    filter: drop-shadow(0 0 40px rgba(254, 186, 106, 0.3)) drop-shadow(0 0 80px rgba(254, 186, 106, 0.12));
}

.close-contact {
    margin-top: 2rem;
}

.close-contact p {
    font-size: 1rem;
    letter-spacing: 0.1em;
}

.close-contact-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.close-contact-detail {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.04em;
}

.close-divider {
    width: 60px;
    height: 1px;
    background: var(--orange);
    margin: 1.5rem auto;
}

/* Source citation */
.source-cite {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.04em;
    margin-top: 1.5rem;
    text-align: center;
}

/* Tour attendance highlight */
.tour-attendance {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.25rem 2rem;
    background: rgba(254, 186, 106, 0.06);
    border: 1px solid rgba(254, 186, 106, 0.15);
    border-radius: 10px;
    margin-top: 1.5rem;
}

.attendance-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--orange);
    line-height: 1;
}

.attendance-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--off-white);
}

.attendance-sub {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.15rem;
}

/* --- PDF OVERLAY --- */
#pdf-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 6, 4, 0.95);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

#pdf-overlay.hidden { display: none; }

#pdf-overlay p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--off-white);
}

.pdf-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(254, 186, 106, 0.2);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- PRINT STYLES FOR PDF --- */
@media print {
    html { scroll-snap-type: none; }
    #deck-nav, #menu-toggle, #page-indicator, .scroll-indicator, #pdf-btn { display: none !important; }
    .slide {
        page-break-after: always;
        page-break-inside: avoid;
        min-height: 100vh;
    }
    [data-animate] { opacity: 1 !important; transform: none !important; }
    .song-quote { position: relative !important; opacity: 1 !important; transform: none !important; display: block !important; }
    .social-bar-fill { width: var(--bar-width, 0) !important; }
    .bar-fill { width: var(--bar-width, 0) !important; }
    .brand-orbit-item { position: relative !important; top: auto !important; left: auto !important; width: auto !important; transform: none !important; }
    .brand-circle-container { width: 100% !important; height: auto !important; display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 1rem !important; }
    .brand-circle-center { position: relative !important; top: auto !important; left: auto !important; transform: none !important; grid-column: 1 / -1 !important; width: 100% !important; height: auto !important; border-radius: 12px !important; padding: 1rem !important; }
    .brand-orbit-ring { display: none !important; }
    .ambient-glow { display: none !important; }
    .guitar-strings { display: none !important; }
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .slide-content { padding: 3rem; }
    .cover-mcgraw { font-size: 4.5rem; letter-spacing: 0.2em; }
    .cover-tour-logo { max-width: 460px; }
    .stat-number { font-size: 7rem; }
    .big-stat .counter { font-size: 8rem; }
    .display-heading { font-size: 3.5rem; }
    .sponsor-tiers { grid-template-columns: 1fr; }
    .tier-img { height: 280px; }
}

@media (max-width: 768px) {
    .slide-content { padding: 2rem 1.5rem; }
    .cover-content { padding-top: 4rem; align-items: center; text-align: center; }
    .cover-mcgraw { font-size: 3rem; letter-spacing: 0.15em; }
    .cover-tour-logo { max-width: 340px; }
    .cover-meta { flex-wrap: wrap; }
    .stat-number { font-size: 5rem; }
    .stat-suffix { font-size: 2rem; }
    .numbers-grid { grid-template-columns: 1fr; gap: 2rem; }
    .number-card-img { height: 50vh; object-position: top center; }
    .big-stat .counter { font-size: 6rem; }
    .vip-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title { font-size: 2.5rem; }
    .display-heading { font-size: 2.5rem; }
    .film-grid { grid-template-columns: 1fr; }
    .film-posters { justify-content: center; flex-wrap: wrap; }
    .film-poster { width: 100px; }
    .film-number { font-size: 4rem; }
    .time-layout { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .time-cover { max-height: 50vh; }
    .time-text { text-align: center; }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .community-grid { grid-template-columns: 1fr; }
    .fitness-layout { grid-template-columns: 1fr; gap: 2rem; }
    .fitness-images { grid-template-columns: 1fr 0.5fr; }
    .fitness-img { height: 280px; }
    .fitness-img-book { height: 280px; }
    .consumer-charts { grid-template-columns: 1fr; }
    .close-mcgraw { font-size: 5rem; }
    .close-tour-logo { max-width: 300px; }
    .tour-detail-grid { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
    .tour-attendance { flex-direction: column; text-align: center; gap: 1rem; }
    .attendance-number { font-size: 2.5rem; }
    .stadium-cards { grid-template-columns: 1fr; gap: 0.75rem; }
    .stadium-card-city { font-size: 1.6rem; }
    .tour-date-grid .date-grid-cols { grid-template-columns: 1fr; gap: 1.5rem; }
    .song-quote blockquote { font-size: 1.5rem; }
    .legend-awards { gap: 0.5rem; }
    .award-pill { padding: 0.4rem 0.8rem; font-size: 0.75rem; }
    .bar-row { grid-template-columns: 80px 1fr 40px; gap: 0.5rem; }
    .partnership-cards { grid-template-columns: 1fr; }
    .partnership-card { flex-direction: column; }
    .partnership-card-img { width: 100%; min-height: 180px; height: 200px; }
    .partnership-card-img img { object-position: center center; }
    .series-info { flex-direction: column; text-align: center; }
    .series-portrait { width: 120px; height: 120px; margin: 0 auto; }
    .series-stats { justify-content: center; }
    .sports-arc { flex-direction: column; align-items: center; }
    .arc-card { max-width: 100%; width: 100%; }
    .arc-img-wrap { height: 180px; }
    .arc-1, .arc-2, .arc-3, .arc-4 { transform: none; }
    .vip-card-img { height: 200px; }
    .vip-card-img img { object-position: center center; }
    .tier-img { height: 240px; }
    .tier-img img { object-position: center center; }
    .sponsor-tiers { grid-template-columns: 1fr; }
    .books-grid { gap: 1rem; }
    .book-cover { width: 140px; }
    .fitness-img { height: 250px; object-fit: cover; }
    .fitness-img-book { height: 250px; }
    .film-poster { width: 80px; }
    .section-label-with { margin-left: 0; margin-top: 0.25rem; }
    .stadium-section-label,
    .amphitheater-section-label { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .vip-grid { grid-template-columns: 1fr; }
    .vip-card-img { height: 220px; }
    .vip-card-img img { object-position: center center; }
    .partnership-card-img { height: 220px; }
}
