/* ═══════════════════════════════════════════════
   BRAND SEEN × SLAM — STILL HOOPING
   Color System: Orange #F4521E · Black #0A0A0A · White #F5F0E8
   Accent: Silver #C0C0C0 · Deep Orange #E03A00
═══════════════════════════════════════════════ */

:root {
  --orange: #F4521E;
  --orange-deep: #E03A00;
  --orange-light: #FF6B35;
  --black: #0A0A0A;
  --black-mid: #1A1A1A;
  --black-soft: #2A2A2A;
  --white: #F5F0E8;
  --white-pure: #FFFFFF;
  --silver: #C0C0C0;
  --silver-light: #E0E0E0;
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-ui: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', Arial, sans-serif;
}

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

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

/* ═══════════════════════════════════════════
   NOISE TEXTURE OVERLAY
═══════════════════════════════════════════ */
.landing-noise, .slide-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   LANDING PAGE
═══════════════════════════════════════════ */
.landing-screen {
  position: fixed; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 10;
  transition: opacity 0.6s ease, transform 0.6s ease;
  background: var(--black);
}

.landing-screen.exit {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

/* ── Vintage black textured background ── */
.landing-vintage-bg {
  position: absolute; inset: 0;
  z-index: 0;
  /* Subtle halftone dot pattern for vintage feel */
  background-color: #0A0A0A;
  background-image:
    radial-gradient(circle, rgba(244,82,30,0.06) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 28px 28px, 14px 14px;
  background-position: 0 0, 7px 7px;
}

/* Vignette edges */
.landing-vintage-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center,
    transparent 40%,
    rgba(0,0,0,0.7) 100%
  );
}

/* ── Landing center content ── */
.landing-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  margin-top: -16px;
}

/* ── 10 Year Anniversary block ── */
.anniversary-center-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 0;
}

.anniv-top-rule,
.anniv-bottom-rule {
  width: 260px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--orange), transparent);
  margin: 6px 0;
}

.anniv-big-num {
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 220px);
  line-height: 0.85;
  color: var(--white);
  letter-spacing: -4px;
  text-shadow:
    3px 3px 0 var(--orange-deep),
    6px 6px 0 rgba(244,82,30,0.2);
  margin: 4px 0;
}

.anniv-title-stack {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.anniv-title-line1,
.anniv-title-line2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6.5vw, 64px);
  letter-spacing: 10px;
  color: var(--orange);
  text-transform: uppercase;
  line-height: 1;
}

.anniv-brand-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: 10px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin: 2px 0 4px;
}

.anniv-subtitle {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--silver);
  text-transform: uppercase;
  margin: 2px 0;
}

/* ── Landing footer — bottom lockup ── */
.landing-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 20px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 60%, transparent);
}

.landing-footer-collab {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--silver);
  text-transform: uppercase;
}

.landing-footer-cta {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: clamp(16px, 2.5vw, 22px);
  letter-spacing: 6px;
  color: var(--orange);
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 32px;
  border: 1px solid rgba(244,82,30,0.4);
  border-radius: 2px;
  transition: all 0.2s ease;
  animation: pulseLabel 1.8s ease-in-out infinite;
  user-select: none;
}

.landing-footer-cta:hover {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
  animation: none;
}

/* ── Basketball Dunk Zone ── */
.dunk-zone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 6px;
  margin-top: -18px;
  user-select: none;
}

.basketball-wrap {
  position: relative;
  width: 150px;
  height: 190px;
  display: flex;
  flex-direction: column; /* ball on top, hoop below */
  align-items: center;
  margin-bottom: 10px;
}

/* Basketball — sits above the hoop; click to drop through net */
.basketball {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--orange-light), var(--orange), var(--orange-deep));
  box-shadow: 0 4px 20px rgba(244,82,30,0.5), inset -4px -4px 12px rgba(0,0,0,0.4);
  position: relative;
  flex-shrink: 0;
  align-self: center;
  transition: transform 0.1s ease;
  animation: ballBounce 1.4s ease-in-out infinite;
  cursor: pointer;
  z-index: 2;
}

.basketball:hover {
  animation: ballHover 0.3s ease-in-out infinite alternate;
  box-shadow: 0 6px 20px rgba(244,82,30,0.8), inset -3px -3px 8px rgba(0,0,0,0.4);
}

.dunk-zone:hover .basketball {
  animation: ballHover 0.3s ease-in-out infinite alternate;
  box-shadow: 0 6px 20px rgba(244,82,30,0.8), inset -3px -3px 8px rgba(0,0,0,0.4);
}

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

@keyframes ballHover {
  from { transform: translateY(-3px) scale(1.04); }
  to { transform: translateY(-8px) scale(1.07); }
}

.ball-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.ball-lines { position: absolute; inset: 0; border-radius: 50%; overflow: hidden; }
.line-h { position: absolute; top: 50%; left: 0; right: 0; height: 2px; background: rgba(0,0,0,0.35); transform: translateY(-50%); }
.line-v { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: rgba(0,0,0,0.35); transform: translateX(-50%); }
.line-curve {
  position: absolute; top: 10%; bottom: 10%;
  width: 20px; border: 2px solid rgba(0,0,0,0.3);
  border-radius: 50%;
  border-top-color: transparent; border-bottom-color: transparent;
}
.line-curve.left { left: 9px; }
.line-curve.right { right: 9px; transform: scaleX(-1); }

/* Hoop — big, prominent, sits on top */
.hoop-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.backboard {
  width: 90px; height: 58px;
  background: rgba(20,20,20,0.95);
  border: 3px solid rgba(192,192,192,0.7);
  border-radius: 3px;
  margin-bottom: 3px;
  position: relative;
  box-shadow: 0 0 12px rgba(0,0,0,0.6);
}

.backboard::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 22px;
  border: 2px solid rgba(192,192,192,0.4);
  border-radius: 2px;
}

.hoop-rim {
  width: 86px; height: 10px;
  border-radius: 5px;
  background: var(--orange);
  box-shadow: 0 3px 16px rgba(244,82,30,0.9), 0 0 8px rgba(244,82,30,0.4);
  position: relative;
}

/* Rim depth — front edge */
.hoop-rim::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 4px; right: 4px;
  height: 4px;
  background: var(--orange-deep);
  border-radius: 0 0 3px 3px;
}

.net {
  display: flex; gap: 5px;
  padding-top: 3px;
}

.net-line {
  width: 2px; height: 30px;
  background: rgba(220,220,220,0.75);
  clip-path: polygon(0 0, 100% 0, 75% 100%, 25% 100%);
}

/* CTA label — hidden on landing (moved to footer), visible nowhere else */
.dunk-cta-label {
  display: none;
}

@keyframes pulseLabel {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.dunk-ripple {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--orange);
  opacity: 0;
  pointer-events: none;
}

.dunk-ripple.active {
  animation: rippleOut 0.6s ease-out forwards;
}

@keyframes rippleOut {
  0% { width: 0; height: 0; opacity: 0.8; margin-left: 0; margin-bottom: 0; }
  100% { width: 200px; height: 200px; opacity: 0; margin-left: -100px; margin-bottom: -100px; }
}

.landing-fine {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--silver);
  text-transform: uppercase;
}

.footer-dot { margin: 0 8px; }

/* Dunk flash */
.dunk-flash {
  position: fixed; inset: 0;
  background: var(--orange);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  transition: opacity 0.1s ease;
}

.dunk-flash.flash {
  animation: flashAnim 0.5s ease-out forwards;
}

@keyframes flashAnim {
  0% { opacity: 0.9; }
  100% { opacity: 0; }
}

/* ═══════════════════════════════════════════
   DECK
═══════════════════════════════════════════ */
.deck {
  position: fixed; inset: 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 10;
}

/* ── Deck Nav ── */
.deck-nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid rgba(244,82,30,0.3);
  flex-shrink: 0;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 3px;
  display: flex; align-items: center; gap: 10px;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--white);
}

.nav-brand-text span {
  color: var(--orange);
}

.nav-slam-logo,
.nav-slam-svg {
  height: 22px;
  width: auto;
}

.nav-seen-fallback { color: var(--white); }
.nav-x { color: var(--orange); font-family: var(--font-display); }
.nav-slam-fallback { color: var(--orange); }

.nav-controls {
  display: flex; align-items: center; gap: 12px;
}

.nav-btn {
  background: var(--black-soft);
  border: 1px solid rgba(244,82,30,0.4);
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  font-family: var(--font-ui);
}

.nav-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.slide-counter {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--silver);
  letter-spacing: 2px;
  min-width: 50px;
  text-align: center;
}

.nav-exit {
  background: transparent;
  border: 1px solid rgba(192,192,192,0.3);
  color: var(--silver);
  padding: 6px 14px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  border-radius: 3px;
  transition: all 0.2s;
}

.nav-exit:hover {
  border-color: var(--white);
  color: var(--white);
}

/* ── Slides Container ── */
.slides-container {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* ── Individual Slide ── */
.slide {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

/* Mobile: allow tall slides to scroll internally */
@media (max-width: 768px) {
  .slide {
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .slide-inner {
    min-height: unset;
    padding-bottom: 24px;
  }
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.slide.exit-up {
  opacity: 0;
  transform: translateY(-60px);
}

.slide-inner {
  position: relative;
  z-index: 5;
  max-width: 1000px;
  width: 100%;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

/* Shared slide elements */
.slide-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--orange);
  text-transform: uppercase;
  border-top: 1px solid var(--orange);
  border-bottom: 1px solid var(--orange);
  padding: 5px 20px;
  display: inline-block;
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 96px);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.slide-title em {
  font-style: normal;
  color: var(--orange);
}

.slide-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--silver-light);
  max-width: 600px;
}

/* Big background number */
.slide-number-bg {
  position: absolute;
  bottom: -20px; right: -10px;
  font-family: var(--font-display);
  font-size: 220px;
  color: rgba(244, 82, 30, 0.05);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* ── Progress dots ── */
.progress-dots {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 8px;
  z-index: 20;
}

.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(192,192,192,0.3);
  transition: all 0.3s;
  cursor: pointer;
}

.dot.active {
  background: var(--orange);
  transform: scale(1.4);
}

/* ═══════════════════════════════════════════
   SLIDE 1 — WELCOME
═══════════════════════════════════════════ */
.slide-welcome {
  background: var(--black);
  /* Photo background added via class when image is set */
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

/* Welcome slide photo overlay */
.slide-welcome::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: 1;
  pointer-events: none;
}

.slide-inner-welcome {
  justify-content: center;
  min-height: 400px;
}

.welcome-statement {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-bold-text {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.65;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.welcome-join {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.2em;
  letter-spacing: 4px;
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 1px;
  cursor: pointer;
  transition: color 0.2s, text-shadow 0.2s;
  text-shadow: 0 0 20px rgba(244,82,30,0.5);
}

.welcome-join:hover {
  color: #fff;
  text-shadow: 0 0 24px rgba(244,82,30,0.9);
}

.slide-stripes {
  position: absolute;
  top: 0; right: -100px;
  width: 400px; height: 100%;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(244,82,30,0.04) 40px,
    rgba(244,82,30,0.04) 80px
  );
  pointer-events: none;
  z-index: 1;
}

.tagline-banner {
  background: var(--orange);
  padding: 8px 40px;
  transform: skewX(-6deg);
  display: inline-block;
}

.tagline-banner span {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 6px;
  color: var(--black);
  display: block;
  transform: skewX(6deg);
}

.anniversary-badge {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange), 0 8px 32px rgba(244,82,30,0.4);
}

.badge-inner { text-align: center; }

.badge-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--black);
  line-height: 1;
  display: block;
}

.badge-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--black);
  line-height: 1.2;
}

.collab-logos-row {
  display: flex; align-items: center; gap: 16px;
  margin-top: 8px;
}

.mini-logo {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 3px;
  padding: 6px 14px;
  border: 1px solid var(--orange);
  color: var(--white);
}

.slam-mini {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}

.mini-x {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--silver);
}

/* ═══════════════════════════════════════════
   SLIDE 2 — LOCATION
═══════════════════════════════════════════ */
.slide-location {
  background: linear-gradient(160deg, var(--black) 60%, #1A0A00);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 800px;
}

/* Centered standalone grid for location slide */
.info-grid-centered {
  margin: 0 auto;
  max-width: 860px;
  margin-top: 16px;
}

.info-card {
  background: var(--black-soft);
  border: 1px solid rgba(244,82,30,0.3);
  border-top: 3px solid var(--orange);
  padding: 20px 12px;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  transition: transform 0.2s, border-color 0.2s;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}

.info-icon { font-size: 24px; }
.info-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--orange);
}
.info-value {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  text-align: center;
}

.map-placeholder {
  width: 100%;
  max-width: 700px;
  height: 140px;
  border: 1px solid rgba(244,82,30,0.2);
  background: var(--black-soft);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  border-radius: 4px;
}

.map-pin { font-size: 28px; }

.map-placeholder p {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
}

.map-note {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--silver);
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════
   SPONSOR DUO — Slide 3 Card 04
═══════════════════════════════════════════ */
.sponsor-duo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
  padding: 10px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(192,192,192,0.15);
  border-radius: 4px;
  width: 100%;
}

.sponsor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sponsor-emoji { font-size: 22px; }

.sponsor-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
}

.sponsor-divider {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--orange);
  opacity: 0.7;
}

/* ═══════════════════════════════════════════
   EXPERIENCE EXTRAS
═══════════════════════════════════════════ */

/* Billboard placeholder */
.billboard-img-wrap { width: 100%; margin-top: 6px; }

.billboard-ph-block {
  width: 100%;
  height: 56px;
  background: rgba(244,82,30,0.07);
  border: 1px dashed rgba(244,82,30,0.3);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.bb-ph-icon { font-size: 14px; }
.bb-ph-text { font-family: var(--font-body); font-size: 9px; color: rgba(192,192,192,0.4); letter-spacing: 1px; }

/* Photographer credit */
.exp-photographer { margin: 2px 0; }
.photographer-link { display: flex; flex-direction: column; align-items: center; gap: 2px; text-decoration: none; transition: opacity 0.2s; }
.photographer-link:hover { opacity: 0.75; }
.photo-credit { font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.photo-location { font-family: var(--font-body); font-size: 10px; color: var(--silver); letter-spacing: 1px; }

/* Lobos logo */
.lobos-logo-wrap { display: flex; align-items: center; justify-content: center; padding: 4px 0; }
.lobos-logo { height: 34px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }
.lobos-fallback { display: flex; align-items: center; justify-content: center; }
.lobos-text { font-family: var(--font-display); font-size: 16px; letter-spacing: 4px; color: var(--white); border: 1px solid rgba(192,192,192,0.3); padding: 3px 10px; }

/* Park Burger add-on */
.exp-sub-row { display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.exp-sub-divider { font-family: var(--font-display); font-size: 18px; color: var(--silver); }
.park-burger-badge { display: flex; flex-direction: column; align-items: center; background: rgba(192,192,192,0.06); border: 1px solid rgba(192,192,192,0.2); padding: 4px 10px; border-radius: 2px; gap: 1px; }
.pb-icon { font-size: 14px; }
.pb-name { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--white); }
.pb-sub { font-family: var(--font-body); font-size: 9px; color: var(--silver); letter-spacing: 1px; }

/* ═══════════════════════════════════════════
   SLIDE 3 — EXPERIENCE
═══════════════════════════════════════════ */
.slide-experience {
  background: var(--black);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
}

.exp-card {
  background: var(--black-soft);
  border: 1px solid rgba(244,82,30,0.2);
  padding: 22px 16px;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  position: relative;
  transition: all 0.2s;
  text-align: center;
}

.exp-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(244,82,30,0.2);
}

.exp-card-featured {
  border-color: var(--orange);
  background: linear-gradient(160deg, rgba(244,82,30,0.15), var(--black-soft));
  border-width: 2px;
}

.exp-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: rgba(244,82,30,0.3);
  line-height: 1;
}

.exp-icon { font-size: 28px; }

.exp-name {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
}

.exp-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--silver);
  line-height: 1.5;
}

.exp-tag {
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 2px;
}

.exp-logo-row {
  display: flex; gap: 8px;
}

.spirit-logo-ph {
  background: rgba(192,192,192,0.1);
  border: 1px dashed rgba(192,192,192,0.3);
  padding: 4px 10px;
  font-family: var(--font-ui);
  font-size: 9px;
  color: var(--silver);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
   SLIDE 4 — COMMUNITY
═══════════════════════════════════════════ */
.slide-community {
  background: linear-gradient(160deg, #0F0500, var(--black) 70%);
}

.stats-row {
  display: flex; gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid rgba(244,82,30,0.2);
  border-bottom: 1px solid rgba(244,82,30,0.2);
  width: 100%;
}

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

.stat-num {
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--orange);
  display: block;
  line-height: 1;
}

.stat-plus {
  font-size: 36px;
  color: var(--orange-light);
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--silver);
  text-transform: uppercase;
}

.community-tags {
  display: flex; flex-wrap: wrap;
  gap: 10px; justify-content: center;
}

.ctag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 14px;
  border: 1px solid rgba(244,82,30,0.4);
  color: var(--white);
  border-radius: 2px;
  text-transform: uppercase;
}

.community-img-placeholder {
  width: 100%;
  max-width: 700px;
  height: 100px;
  border: 1px dashed rgba(192,192,192,0.25);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}

.community-img-placeholder span {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(192,192,192,0.4);
  letter-spacing: 2px;
}

/* ═══════════════════════════════════════════
   SLIDE 5 — NBA MARKETING
═══════════════════════════════════════════ */
.slide-nba {
  background: var(--black);
}

.player-grid {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}

.player-card {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  flex: 1;
  max-width: 150px;
}

.player-photo-ph {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--black-soft);
  border: 1px solid rgba(244,82,30,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(192,192,192,0.4);
  letter-spacing: 1px;
  text-align: center;
  transition: border-color 0.2s;
  border-radius: 2px;
  min-height: 120px;
}

.player-card:hover .player-photo-ph {
  border-color: var(--orange);
}

.player-card-hero .player-photo-ph {
  border-color: var(--orange);
  border-width: 2px;
  background: linear-gradient(160deg, rgba(244,82,30,0.12), var(--black-soft));
  min-height: 150px;
}

.player-name {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1.1;
  text-align: center;
}

.player-team {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
}

.nba-deliverables {
  display: flex; flex-wrap: wrap;
  gap: 16px; justify-content: center;
  padding-top: 8px;
  border-top: 1px solid rgba(244,82,30,0.2);
  width: 100%;
}

.deliv-item {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--silver-light);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   SLIDE 5 — MERCH
═══════════════════════════════════════════ */
.slide-merch {
  background: linear-gradient(160deg, var(--black) 60%, #0D0500);
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
  max-width: 900px;
}

/* Force 3-col layout */
.merch-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Merch slide body emphasis */
.merch-collab-line {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.15em;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
}

.merch-decade-line {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.2em;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}

.merch-card {
  display: flex; flex-direction: column;
  gap: 0;
  background: var(--black-soft);
  border: 1px solid rgba(244,82,30,0.15);
  transition: all 0.25s;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.merch-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(244,82,30,0.2);
}

.merch-card-featured {
  border-color: var(--orange);
  border-width: 2px;
}

/* Product number badge */
.merch-num {
  position: absolute;
  top: 10px; left: 12px;
  font-family: var(--font-display);
  font-size: 28px;
  color: rgba(244,82,30,0.25);
  line-height: 1;
  z-index: 2;
  pointer-events: none;
}

/* Real product image */
.merch-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.merch-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 8px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.merch-card:hover .merch-photo {
  transform: scale(1.04);
}

/* Fallback placeholder */
.merch-img-ph {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(244,82,30,0.05);
  border-bottom: 1px dashed rgba(192,192,192,0.15);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
}

.merch-ph-icon { font-size: 42px; }

.merch-img-ph span:last-child {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(192,192,192,0.4);
  letter-spacing: 1px;
}

/* Info panel below image */
.merch-info {
  text-align: center;
  padding: 14px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--black-soft);
}

.merch-name {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.3;
}

.merch-sub {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--silver);
  margin-top: 2px;
  line-height: 1.4;
}

.merch-tag {
  display: inline-block;
  margin: 6px auto 0;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   SLIDE 7 — VALUE / PITCH
═══════════════════════════════════════════ */
.slide-value {
  background: var(--black);
}

/* WHY SLAM? — single line title sized to keep everything on screen */
.slide-value .slide-title {
  font-size: clamp(28px, 4.5vw, 60px);
  white-space: nowrap;
}

.slide-value .slide-body {
  font-size: 13px;
  line-height: 1.5;
}

.slide-value .value-list {
  gap: 10px;
}

.slide-value .value-row {
  padding: 11px 14px;
}

.slide-value .value-text {
  font-size: 13px;
}

.value-list {
  display: flex; flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 700px;
  text-align: left;
}

.value-row {
  display: flex; align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--black-soft);
  border-left: 3px solid var(--orange);
  transition: background 0.2s;
}

.value-row:hover { background: rgba(244,82,30,0.08); }

.value-icon { font-size: 22px; flex-shrink: 0; }

.value-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--silver-light);
}

.value-text strong {
  color: var(--white);
  font-weight: 600;
}

.contact-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 32px;
  border: 1px solid rgba(244,82,30,0.35);
  border-top: 3px solid var(--orange);
  background: rgba(244,82,30,0.05);
  margin-top: 4px;
}

.contact-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--white);
  text-transform: uppercase;
}

.contact-title {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
}

.contact-email {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--silver-light);
  text-decoration: none;
  letter-spacing: 1px;
  margin-top: 4px;
  transition: color 0.2s;
}

.contact-email:hover {
  color: var(--orange);
}

.closing-tagline {
  background: var(--orange);
  padding: 14px 40px;
  transform: skewX(-4deg);
  display: inline-block;
  margin-top: 8px;
}

.closing-tagline span {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--black);
  display: block;
  transform: skewX(4deg);
  text-transform: uppercase;
}

.contact-placeholder {
  border: 1px dashed rgba(192,192,192,0.25);
  padding: 16px 40px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(192,192,192,0.4);
  letter-spacing: 2px;
}

/* ═══════════════════════════════════════════
   REAL LOGO IMAGES — SEEN
═══════════════════════════════════════════ */

/* Landing header - top bar */
.hdr-seen-img {
  height: clamp(40px, 5.5vw, 64px);
  width: auto;
  object-fit: contain;
  display: block;
}

/* Nav bar */
.nav-seen-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Welcome slide - big */
.welcome-seen-img {
  height: clamp(70px, 11vw, 110px);
  width: auto;
  object-fit: contain;
  display: block;
}

/* Welcome slide logos */
.welcome-seen-svg {
  height: clamp(60px, 10vw, 90px);
  width: auto;
  display: block;
}

.welcome-slam-svg {
  height: clamp(32px, 5vw, 44px);
  width: auto;
  display: block;
}

/* Map image - location slide */
.map-img-container {
  position: relative;
  width: 100%;
  border: 1px solid rgba(244,82,30,0.3);
  border-radius: 4px;
  overflow: hidden;
  background: var(--black-soft);
}

.map-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 3px;
}

.map-fallback {
  width: 100%;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  color: var(--silver);
  font-size: 12px;
  letter-spacing: 2px;
  text-align: center;
}

.map-fallback-pin { font-size: 28px; }
.map-fallback p { font-weight: 700; font-size: 14px; color: var(--white); }
.map-cross { font-size: 10px; color: var(--silver); letter-spacing: 1px; }

.map-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.88);
  padding: 7px 14px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--orange);
  text-align: center;
}

/* ═══════════════════════════════════════════
   KEYBOARD HINT
═══════════════════════════════════════════ */
.keyboard-hint {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(192,192,192,0.3);
  z-index: 20;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════════ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .landing-headline { font-size: 72px; }

  /* Global slide adjustments */
  .slide-inner { padding: 12px 14px; gap: 10px; }
  .slide-title { font-size: 38px; line-height: 0.95; }
  .slide-eyebrow { font-size: 9px; letter-spacing: 4px; padding: 4px 14px; }
  .slide-body { font-size: 12px; line-height: 1.5; }
  .slide-number-bg { font-size: 120px; }
  .deck-nav { padding: 8px 12px; }
  .nav-brand-text { font-size: 13px; letter-spacing: 2px; }

  /* Slide 2 — location */
  .info-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .info-card { padding: 14px 8px; }
  .info-icon { font-size: 18px; }
  .info-value { font-size: 12px; }

  /* Slide 3 — experience */
  .experience-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .exp-card { padding: 14px 10px; gap: 6px; }
  .exp-num { font-size: 24px; }
  .exp-icon { font-size: 20px; }
  .exp-name { font-size: 10px; letter-spacing: 1px; }
  .exp-desc { font-size: 10px; }
  .sponsor-duo { padding: 6px; gap: 8px; }
  .sponsor-emoji { font-size: 16px; }
  .sponsor-label { font-size: 8px; }

  /* Slide 4 — community */
  .stats-row { gap: 16px; padding: 14px 0; }
  .stat-num { font-size: 38px; }
  .stat-plus { font-size: 24px; }
  .stat-label { font-size: 9px; }
  .ctag { font-size: 9px; padding: 4px 10px; }

  /* Slide 5 — merch */
  .merch-grid, .merch-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .merch-name { font-size: 9px; letter-spacing: 1px; }
  .merch-sub { font-size: 8px; }
  .merch-tag { font-size: 7px; padding: 2px 6px; }
  .merch-info { padding: 8px 6px 10px; gap: 2px; }
  .merch-num { font-size: 18px; }

  /* Slide 6 — pitch */
  .slide-value .slide-title { font-size: 32px; }
  .value-list { gap: 8px; }
  .value-row { padding: 10px 10px; gap: 10px; }
  .value-icon { font-size: 16px; }
  .value-text { font-size: 11px; line-height: 1.4; }
  .contact-block { padding: 12px 20px; gap: 3px; }
  .contact-name { font-size: 16px; letter-spacing: 3px; }
  .contact-email { font-size: 11px; }
  .closing-tagline span { font-size: 11px; letter-spacing: 3px; }

  /* Slide 7 — players */
  .player-row { padding: 10px 14px; }
  .player-num { font-size: 20px; }
  .player-name-text { font-size: 14px; }
  .addon-badge { font-size: 8px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Global */
  .slide-inner { padding: 10px 12px; gap: 7px; }
  .slide-title { font-size: 30px; }
  .slide-body { font-size: 11px; }
  .slide-number-bg { display: none; }

  /* Slide 2 */
  .info-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Slide 3 — 2×2 grid, very compact */
  .experience-grid { grid-template-columns: repeat(2, 1fr); gap: 7px; }
  .exp-card { padding: 10px 8px; gap: 4px; }
  .exp-num { font-size: 18px; }
  .exp-icon { font-size: 18px; }
  .exp-name { font-size: 9px; letter-spacing: 1px; }
  .exp-desc { font-size: 9px; line-height: 1.3; }
  .exp-tag { font-size: 7px; padding: 2px 6px; }
  .sponsor-duo { padding: 5px 4px; gap: 6px; }
  .sponsor-emoji { font-size: 14px; }
  .sponsor-label { font-size: 7px; letter-spacing: 1px; }
  .photographer-link { gap: 1px; }
  .photo-credit { font-size: 9px; }
  .photo-location { font-size: 8px; }

  /* Slide 5 — merch: 3 columns, image + minimal text */
  .merch-grid, .merch-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    max-width: 100%;
  }
  .merch-img-wrap { aspect-ratio: 1; }
  .merch-photo { padding: 4px; }
  .merch-name { font-size: 8px; letter-spacing: 0.5px; line-height: 1.2; }
  .merch-sub { display: none; }
  .merch-tag { font-size: 6px; padding: 2px 4px; letter-spacing: 1px; }
  .merch-info { padding: 6px 4px 8px; gap: 3px; }
  .merch-num { font-size: 14px; top: 6px; left: 8px; }
  .merch-card-featured { border-width: 2px; }

  /* Slide 6 — pitch: compress everything to fit */
  .slide-value .slide-title { font-size: 24px; white-space: nowrap; }
  .slide-value .slide-body { font-size: 10px; line-height: 1.4; }
  .value-list { gap: 5px; max-width: 100%; }
  .value-row { padding: 7px 8px; gap: 8px; border-left-width: 2px; }
  .value-icon { font-size: 13px; }
  .value-text { font-size: 10px; line-height: 1.35; }
  .value-text strong { font-size: 10px; }
  .contact-block { padding: 10px 14px; gap: 2px; margin-top: 2px; }
  .contact-name { font-size: 14px; letter-spacing: 2px; }
  .contact-title { font-size: 8px; letter-spacing: 2px; }
  .contact-email { font-size: 10px; margin-top: 2px; }
  .closing-tagline { display: none; }

  /* Nav */
  .nav-brand-text { font-size: 11px; letter-spacing: 1px; }
  .nav-btn { width: 28px; height: 28px; font-size: 12px; }
  .slide-counter { font-size: 10px; min-width: 36px; }
  .nav-exit { font-size: 9px; padding: 4px 8px; }

  /* Misc */
  .logo-lockup { gap: 12px; }
  .landing-headline { font-size: 60px; }
  .player-grid { gap: 8px; }
  .player-row { padding: 9px 12px; gap: 10px; }
  .player-num { font-size: 18px; }
  .player-name-text { font-size: 13px; letter-spacing: 2px; }
  .player-tag { font-size: 8px; }
  .nba-deliverables { gap: 10px; padding-top: 6px; }
  .deliv-item { font-size: 10px; letter-spacing: 1px; }
  .stats-row { gap: 12px; padding: 10px 0; }
  .stat-num { font-size: 34px; }
  .ctag { font-size: 8px; padding: 3px 8px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL IPHONE (≤390px)
═══════════════════════════════════════════ */
@media (max-width: 390px) {
  .slide-title { font-size: 26px; }
  .slide-eyebrow { font-size: 8px; letter-spacing: 3px; padding: 3px 10px; }

  /* Slide 3 */
  .exp-name { font-size: 8px; }
  .exp-desc { font-size: 8px; }

  /* Slide 5 */
  .merch-name { font-size: 7px; }
  .merch-tag { display: none; }

  /* Slide 6 */
  .slide-value .slide-title { font-size: 20px; }
  .value-text { font-size: 9px; }
  .contact-name { font-size: 12px; }
  .contact-email { font-size: 9px; }
}
