/* ============================================================
   RuinDorm — style.css  v77
   2026-07-05
   - v43: zone-broadcast → signal-grid cinematic cards (X + IG)
   - v44: restore missing footer / cookie-banner / global-mobile CSS
   - v45: tighten lobby/front-desk spacing, mobile signal image fit, footer polish
   - v46: robust lightbox fullscreen layout and mobile controls
   - v47: resident 4x4 content rows and fixed platform grid
   - v48: resident JS-rendered rows with mobile controls
   - v49: coming-soon resident feedback toast
   - v50: lightbox loading indicator
   - v51: mobile control room image and CTA composition
   - v52: blend mobile Control Room image behind glass copy
   - v53: simplify mobile Control Room as large platform card
   - v54: dorm intro asset swap and ambient hero behavior
   - v55: stronger More cue and faster hero collapse
   - v56: simplify More cue into scroll hint
   - v57: rebuild Control Room around NFT keycard preview video
   - v58: refine Control Room copy, disabled OpenSea CTA, and mobile spacing
   - v59: reduce Control Room title scale and loosen mobile CTA spacing
   - v60: isolate Control Room CTA from global mobile absolute positioning
   - v61: brighten video cards, move labels below covers, and add lightbox share control
   - v62: restore cover-bottom video labels and add in-player share feedback
   - v63: add structural accessibility helpers and no-JS fallback notice
   - v64: rebuild lightbox controls with familiar video player interactions
   - v65: simplify lightbox controls into one traditional player row
   - v66: shift lightbox to short-video overlay controls with back navigation
   - v71: rebuild lightbox player controls with stable external controls, mobile auto-hide, and complete state icons
   - v72: remove lightbox playlist counter badge from all videos
   - v73: add mobile long-press lightbox action sheet with glass controls and volume
   - v74: simplify mobile action sheet styling with logo branding and outside-tap dismissal
   - v75: rebalance mobile action sheet logo scale and volume controls
   - v76: reuse site CTA styling for Mux action rail and improve share feedback
   - v77: tune Mux action rail closer to reference overlay button language
   ============================================================ */

:root {
  --accent-hot:   rgba(255,  80, 200, 0.90);
  --accent-mid:   rgba(200, 100, 180, 0.45);
  --accent-quiet: rgba(160,  80, 160, 0.20);
  --text-primary: rgba(240, 230, 240, 1.00);
  --text-body:    rgba(240, 230, 240, 0.80);
  --text-dim:     rgba(240, 230, 240, 0.55);
  --zone-px: clamp(1.5rem, 5vw, 4rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: #0a0008; color: #f0e6f0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
ul, ol { list-style: none; }
a { color: inherit; }
[hidden] { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.noscript-notice {
  position: relative;
  z-index: 1000;
  padding: 0.85rem 1rem;
  background: rgba(20,0,18,0.96);
  border-bottom: 1px solid rgba(255,80,200,0.35);
  color: rgba(255,245,252,0.92);
  font-size: 0.86rem;
  text-align: center;
}

/* ── NAV ─────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: transparent; border-bottom: none;
  pointer-events: none; opacity: 0;
  transition: opacity 0.45s ease, background 0.45s ease;
}
.site-nav.nav-visible {
  pointer-events: auto; opacity: 1;
  background: rgba(10,0,8,0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,80,200,0.28);
  box-shadow: 0 1px 0 0 rgba(255,80,200,0.10);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(1rem,4vw,2rem);
  height: 148px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.nav-logo {
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform 0.3s, opacity 0.2s;
}
.nav-logo:hover  { transform: scale(1.04); }
.nav-logo:active { opacity: 0.75; }
.nav-logo img {
  height: 140px; width: auto; display: block;
  filter:
    drop-shadow(0 0  6px rgba(255,255,255,0.55))
    drop-shadow(0 0 18px rgba(255,80,200,0.95))
    drop-shadow(0 0 40px rgba(255,80,200,0.55))
    drop-shadow(0 0 70px rgba(255,80,200,0.25));
}

/* Nav action slot — right side */
.nav-actions {
  position: absolute;
  right: clamp(1rem,4vw,2rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.nav-action-btn {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,80,200,0.08);
  border: 1px solid rgba(255,80,200,0.22);
  color: rgba(255,160,230,0.60);
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-action-btn svg { width: 17px; height: 17px; display: block; }
.nav-action-btn:hover {
  color: #fff;
  background: rgba(255,80,200,0.18);
  border-color: rgba(255,80,200,0.55);
  transform: scale(1.10);
  box-shadow: 0 0 14px rgba(255,80,200,0.35);
}
.nav-action-btn:active { transform: scale(0.95); }
.nav-action-btn--copied {
  color: rgba(160,255,200,0.90);
  border-color: rgba(100,255,160,0.50);
  background: rgba(80,200,120,0.12);
}

/* ── COPY TOAST ─────────────────────────────────────────── */
.copy-toast {
  position: fixed;
  top: calc(148px * 0.5 + 28px);
  right: clamp(1rem, 4vw, 2rem);
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(10, 0, 14, 0.90);
  border: 1px solid rgba(255, 80, 200, 0.40);
  border-radius: 9999px;
  padding: 0.45rem 1.1rem 0.45rem 0.75rem;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow:
    0 0 18px rgba(255, 80, 200, 0.28),
    0 0 40px rgba(255, 80, 200, 0.10),
    0 6px 24px rgba(0, 0, 0, 0.65);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-6px) scale(0.92);
  transition:
    opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.copy-toast--show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.copy-toast--hide {
  opacity: 0;
  transform: translateY(-6px) scale(0.92);
}
.copy-toast-icon {
  width: 14px; height: 14px; flex-shrink: 0;
  color: rgba(120, 255, 180, 0.95);
  stroke: rgba(120, 255, 180, 0.95);
}
.copy-toast-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 230, 240, 0.92);
}
.copy-toast-url {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 160, 230, 0.85);
  padding-left: 0.1rem;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; width: 100%; height: 100dvh; min-height: 480px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  transition: height 0.55s cubic-bezier(0.4,0,0.2,1);
}
.hero--collapsed { height: 148px; min-height: 148px; }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 0.6s; pointer-events: none; z-index: 0;
}
.hero-video.has-frame { opacity: 1; }
.hero--collapsed .hero-video { opacity: 0 !important; pointer-events: none; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,0,8,0.25) 0%, rgba(10,0,8,0.15) 40%, rgba(10,0,8,0.70) 100%);
  z-index: 1; transition: opacity 0.4s;
}
.hero--collapsed .hero-overlay { opacity: 0; }
.video-controls {
  position: fixed; top: 0.9rem; right: 1.25rem; z-index: 201;
  display: flex; align-items: center; gap: 0.25rem;
  background: rgba(10,0,8,0.72); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,80,200,0.18); border-radius: 9999px; padding: 0.3rem 0.7rem;
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity 0.35s, transform 0.35s;
}
.video-controls.vc-ready, .video-controls.vc-gate { opacity: 1; transform: translateY(0); pointer-events: auto; }
body.hero-collapsed .video-controls { opacity: 0 !important; pointer-events: none !important; transform: translateY(-6px) !important; }
.vc-btn { background: none; border: none; cursor: pointer; color: rgba(240,230,240,0.7); padding: 0.3rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: color 0.2s, background 0.2s; width: 30px; height: 30px; }
.vc-btn svg { width: 16px; height: 16px; display: block; }
.vc-btn:hover { color: #fff; background: rgba(255,80,200,0.15); }
.vc-sep { width: 1px; height: 16px; background: rgba(255,80,200,0.2); margin: 0 0.15rem; }
.vc-volume-wrap { display: flex; align-items: center; padding: 0 0.2rem; }
.vc-volume {
  -webkit-appearance: none; appearance: none; width: 72px; height: 3px;
  background: linear-gradient(to right,
    rgba(255,80,200,0.75) 0%, rgba(255,80,200,0.75) var(--vol,0%),
    rgba(255,255,255,0.15) var(--vol,0%), rgba(255,255,255,0.15) 100%);
  border-radius: 9999px; outline: none; cursor: pointer;
}
.vc-volume::-webkit-slider-thumb { -webkit-appearance: none; width: 12px; height: 12px; border-radius: 50%; background: #fff; box-shadow: 0 0 6px rgba(255,80,200,0.6); cursor: pointer; }
.vc-volume::-moz-range-thumb { width: 12px; height: 12px; border-radius: 50%; background: #fff; border: none; box-shadow: 0 0 6px rgba(255,80,200,0.6); cursor: pointer; }
.vc-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(240,230,240,0.4); padding: 0 0.4rem; white-space: nowrap; transition: color 0.3s; }
.vc-label.sound-on { color: rgba(255,160,230,0.75); }
.hero-content { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 2rem; text-align: center; transition: opacity 0.35s, transform 0.35s; }
.hero--collapsed .hero-content { opacity: 0; pointer-events: none; transform: translateY(-8px); }
.logo { width: min(400px,80vw); height: auto; filter: drop-shadow(0 0 24px rgba(255,80,200,0.55)); }
.btn-enter { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Space Grotesk',sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; padding: 0.85rem 2.25rem; border-radius: 9999px; background: rgba(160,20,120,0.65); border: 1px solid rgba(255,80,200,0.6); box-shadow: 0 0 24px rgba(255,80,200,0.35), 0 4px 16px rgba(0,0,0,0.4); transition: background 0.25s, box-shadow 0.25s, transform 0.2s; cursor: pointer; }
.btn-enter:hover { background: rgba(200,40,160,0.85); box-shadow: 0 0 40px rgba(255,80,200,0.6), 0 6px 20px rgba(0,0,0,0.5); transform: translateY(-2px) scale(1.02); }
.btn-enter:active { transform: scale(0.97); }
.more-link { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.45rem; padding: 0.35rem 0.5rem; font-size: 0.84rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; text-decoration: none; text-shadow: 0 0 10px rgba(255,80,200,0.56), 0 2px 10px rgba(0,0,0,0.85); transition: opacity 0.35s; animation: more-float 1.8s ease-in-out infinite; }
.more-link:hover { color: #fff; }
.more-link svg { width: 23px; height: 23px; color: #fff; filter: drop-shadow(0 0 8px rgba(255,80,200,0.55)) drop-shadow(0 2px 8px rgba(0,0,0,0.8)); animation: more-arrow 1.05s ease-in-out infinite; }
.hero--collapsed .more-link { opacity: 0; pointer-events: none; }
@keyframes more-float { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
@keyframes more-arrow { 0%,100% { transform: translateY(0); opacity: 0.68; } 50% { transform: translateY(5px); opacity: 1; } }
.play-gate { position: absolute; inset: 0; z-index: 5; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.play-gate.visible { opacity: 1; pointer-events: auto; }
.hero--collapsed .play-gate { display: none; }
.play-gate-btn { display: inline-flex; align-items: center; gap: 0.6rem; font-family: 'Space Grotesk',sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; padding: 0.85rem 2rem; border-radius: 9999px; background: rgba(160,20,120,0.75); border: 1px solid rgba(255,80,200,0.65); box-shadow: 0 0 28px rgba(255,80,200,0.45); cursor: pointer; transition: background 0.2s, box-shadow 0.2s; }
.play-gate-btn:hover { background: rgba(200,40,160,0.9); box-shadow: 0 0 40px rgba(255,80,200,0.65); }
.play-gate-icon svg { width: 18px; height: 18px; }
.play-gate-hint { font-size: 0.75rem; letter-spacing: 0.1em; color: rgba(240,230,240,0.4); }
.play-gate-hint.is-error { color: rgba(255,100,100,0.7); }

/* ── WATCH PAGE ──────────────────────────────────────────── */
.watch-page { min-height: 100dvh; background: #0a0008; padding: 0 0 4rem; }
.watch-section.zone {
  position: relative; max-width: 1200px; margin: 0 auto;
  padding-left: var(--zone-px); padding-right: var(--zone-px);
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}
.watch-section.zone::before {
  content: ''; position: absolute; inset: -15% -8%; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(180,60,160,0.07) 0%, transparent 70%);
  filter: blur(50px);
}
.zone-living::before      { background: radial-gradient(ellipse 90% 70% at 50% 40%,  rgba(180,60,160,0.09) 0%, transparent 70%); }
.zone-frontdesk::before   { background: radial-gradient(ellipse 100% 60% at 50% 50%, rgba(200,60,180,0.07) 0%, transparent 65%); }
.zone-rooms::before       { background: radial-gradient(ellipse 80% 80% at 65% 50%,  rgba(255,60,120,0.10) 0%, transparent 65%); }
.zone-noticeboard::before { background: radial-gradient(ellipse 80% 80% at 35% 50%,  rgba(140,80,220,0.09) 0%, transparent 65%); }
.zone-controlroom::before { background: radial-gradient(ellipse 80% 80% at 65% 50%,  rgba(100,40,220,0.11) 0%, transparent 65%); }
.zone-broadcast::before   { background: radial-gradient(ellipse 90% 70% at 50% 50%,  rgba(255,80,200,0.07) 0%, transparent 65%); }
.zone-living, .zone-frontdesk {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.zone-living {
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
  padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.zone-frontdesk {
  padding-top: clamp(1.75rem, 3vw, 2.75rem);
}
.zone-broadcast {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ════════════════════════════════════════════════════════════
   ZONE CINEMATIC
   ════════════════════════════════════════════════════════════ */
.zone-cinematic {
  position: relative; overflow: hidden; border-radius: 1.25rem; height: 480px;
  box-shadow: 0 0 55px rgba(255,80,200,0.22), 0 0 110px rgba(255,80,200,0.09), 0 16px 48px rgba(0,0,0,0.65);
}
.zone-cinematic-char {
  position: absolute; top: 0; bottom: 0; left: 38%; right: -2%;
  display: flex; align-items: flex-end; justify-content: center;
  z-index: 1; pointer-events: none; overflow: visible;
}
.zone-cinematic--reverse .zone-cinematic-char { left: -2%; right: 38%; }
.zone-cinematic-char::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 35%;
  background: linear-gradient(to top, rgba(10,0,8,0.92) 0%, rgba(10,0,8,0.55) 40%, transparent 100%);
  z-index: 2; pointer-events: none;
}
.cinematic-img {
  display: block; width: 100%; height: 100%;
  object-fit: contain; object-position: bottom center;
  filter:
    drop-shadow(0 0 20px rgba(255,80,200,0.60))
    drop-shadow(0 0 55px rgba(255,80,200,0.28))
    drop-shadow(0 20px 40px rgba(0,0,0,0.75));
}
.zone-cinematic-body {
  position: absolute; top: 0; bottom: 0; left: 0; right: 40%; z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  padding: 1.75rem 2.5rem 5rem 1.75rem;
  background: rgba(8,0,12,0.55);
  backdrop-filter: blur(22px) saturate(165%);
  -webkit-backdrop-filter: blur(22px) saturate(165%);
  -webkit-mask-image: linear-gradient(to right, black 70%, transparent 100%);
  mask-image: linear-gradient(to right, black 70%, transparent 100%);
}
.zone-cinematic--reverse .zone-cinematic-body {
  left: 40%; right: 0;
  padding: 1.75rem 1.75rem 5rem 2.5rem;
  -webkit-mask-image: linear-gradient(to left, black 70%, transparent 100%);
  mask-image: linear-gradient(to left, black 70%, transparent 100%);
}
.zone-cta-group--single {
  position: absolute; bottom: 2rem; left: 0; right: 0;
  display: flex; justify-content: center; align-items: center;
  z-index: 10; padding: 0 1rem;
}
.zone-cta-group--single .btn-zone-cta {
  font-size: 1.05rem; padding: 1rem 2.8rem; min-width: 220px; justify-content: center;
}
@media (min-width: 600px) {
  .zone-cinematic { height: 400px; }
  .zone-cinematic-char { left: 40%; right: -3%; }
  .zone-cinematic--reverse .zone-cinematic-char { left: -3%; right: 40%; }
  .zone-cinematic-body { right: 42%; padding: 2rem 3rem 5rem 2rem; }
  .zone-cinematic--reverse .zone-cinematic-body { left: 42%; right: 0; padding: 2rem 2rem 5rem 3rem; }
}
@media (min-width: 1024px) {
  .watch-section.zone { overflow: visible; }
  .zone-cinematic { height: 460px; overflow: visible; }
  .zone-cinematic-char { left: 40%; right: -5%; top: -8%; bottom: 0; }
  .zone-cinematic--reverse .zone-cinematic-char { left: -5%; right: 40%; top: -8%; bottom: 0; }
  .zone-cinematic-body { right: 44%; padding: 2.5rem 3.5rem 5.5rem 2.5rem; }
  .zone-cinematic--reverse .zone-cinematic-body { left: 44%; right: 0; padding: 2.5rem 2.5rem 5.5rem 3.5rem; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE ≤599px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 599px) {
  .zone-cinematic,
  .zone-controlroom .zone-cinematic {
    position: relative !important;
    height: clamp(420px, 125vw, 520px) !important;
    overflow: hidden !important;
    border-radius: 1.25rem !important;
    background: #080010 !important;
  }
  .zone-cinematic-char,
  .zone-cinematic--reverse .zone-cinematic-char,
  .zone-cinematic-char--card {
    position: absolute !important; inset: 0 !important;
    left: 0 !important; right: 0 !important; top: 0 !important; bottom: 0 !important;
    width: auto !important; height: auto !important; display: block !important;
    z-index: 1 !important; overflow: hidden !important;
    align-items: unset !important; justify-content: unset !important;
  }
  .zone-cinematic-char::after,
  .zone-cinematic--reverse .zone-cinematic-char::after,
  .zone-cinematic-char--card::after {
    content: '' !important; position: absolute !important;
    bottom: 0 !important; left: 0 !important; right: 0 !important; top: auto !important;
    height: 65% !important;
    background: linear-gradient(to top, rgba(6,0,10,0.95) 0%, rgba(6,0,10,0.75) 35%, rgba(6,0,10,0.30) 62%, transparent 100%) !important;
    z-index: 2 !important; pointer-events: none !important;
  }
  .cinematic-img, .cinematic-img--card {
    display: block !important; width: 100% !important; height: 100% !important;
    object-fit: cover !important; object-position: top center !important; transform: none !important;
    filter: drop-shadow(0 0 18px rgba(255,80,200,0.45)) drop-shadow(0 12px 24px rgba(0,0,0,0.60)) !important;
  }
  .zone-cinematic-body,
  .zone-cinematic--reverse .zone-cinematic-body,
  .zone-controlroom .zone-cinematic-body {
    position: absolute !important; bottom: 72px !important; top: auto !important;
    left: 0 !important; right: 0 !important; width: 100% !important;
    height: auto !important; max-height: 52% !important; overflow: hidden !important;
    background: rgba(6,0,10,0.52) !important;
    backdrop-filter: blur(24px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(160%) !important;
    border-radius: 1rem 1rem 0 0 !important;
    border-top: 1px solid rgba(255,80,200,0.18) !important;
    padding: 1.1rem 1.1rem 0.8rem !important;
    display: flex !important; flex-direction: column !important;
    justify-content: flex-end !important; gap: 0 !important;
    z-index: 3 !important; will-change: transform !important; transform: translateZ(0) !important;
  }
  .zone-cinematic-body .section-head,
  .zone-cinematic--reverse .zone-cinematic-body .section-head { margin-bottom: 0.3rem !important; }
  .zone-cinematic-body .section-title,
  .zone-cinematic--reverse .zone-cinematic-body .section-title {
    font-size: 1.15rem !important; line-height: 1.2 !important; margin-bottom: 0.25rem !important;
    display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; overflow: hidden !important;
  }
  .zone-cinematic-body .section-sub,
  .zone-cinematic--reverse .zone-cinematic-body .section-sub {
    font-size: 0.76rem !important; line-height: 1.45 !important; margin-bottom: 0 !important;
    display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important;
    overflow: hidden !important; max-width: 100% !important;
  }
  .zone-cta-group--single {
    position: absolute !important; bottom: 1.1rem !important; left: 0 !important; right: 0 !important; top: auto !important;
    display: flex !important; justify-content: center !important; align-items: center !important;
    z-index: 4 !important; padding: 0 1rem !important;
  }
  .zone-cta-group--single .btn-zone-cta {
    font-size: 0.88rem !important; padding: 0.82rem 2rem !important;
    min-width: 0 !important; width: 100% !important; max-width: 300px !important; justify-content: center !important;
  }
}

/* ── CONTROL ROOM ───────────────────────────────────────── */
.zone-controlroom-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
  height: auto;
  min-height: 430px;
  padding: clamp(1.1rem, 2.6vw, 2rem);
  background:
    radial-gradient(circle at 78% 20%, rgba(110,70,255,0.28), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(255,70,190,0.14), transparent 34%),
    linear-gradient(135deg, rgba(17,0,30,0.98), rgba(4,0,9,0.98));
  border: 1px solid rgba(180,120,255,0.25);
  box-shadow: 0 0 55px rgba(120,60,255,0.28), 0 0 110px rgba(100,40,220,0.12), 0 16px 48px rgba(0,0,0,0.65);
}
.zone-controlroom-card .zone-cinematic-body {
  position: relative;
  inset: auto;
  z-index: 2;
  min-width: 0;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  -webkit-mask-image: none;
  mask-image: none;
  box-shadow: none;
}
.zone-controlroom-card .section-head { margin-bottom: 0.85rem; }
.zone-controlroom-card .section-title {
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  line-height: 1.08;
  margin-bottom: 0.5rem;
}
.zone-controlroom-card .section-sub { max-width: 38ch; margin-bottom: 1.1rem; }
.zone-controlroom-card .zone-cta-group--controlroom {
  position: static;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.42rem;
  justify-content: flex-start;
  padding: 0;
  margin-top: 0.8rem;
}
.nft-video-card {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 16 / 9;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255,170,230,0.28);
  background: #070008;
  box-shadow: 0 0 28px rgba(255,80,200,0.24), 0 0 54px rgba(110,70,255,0.22), 0 18px 42px rgba(0,0,0,0.58);
  cursor: pointer;
  isolation: isolate;
}
.nft-video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(5,0,8,0.74) 0%, rgba(5,0,8,0.18) 40%, rgba(5,0,8,0) 70%);
  pointer-events: none;
}
.nft-video-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.nft-video-card:hover img,
.nft-video-card:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.12) brightness(1.04);
}
.nft-video-card:focus-visible {
  outline: 2px solid rgba(255,140,220,0.95);
  outline-offset: 4px;
}
.nft-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(15,0,22,0.68);
  border: 1px solid rgba(255,140,220,0.42);
  box-shadow: 0 0 24px rgba(255,80,200,0.45), 0 10px 24px rgba(0,0,0,0.48);
  transform: translate(-50%, -50%);
}
.nft-video-play svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}
.nft-video-label {
  position: absolute;
  left: 1rem;
  bottom: 0.85rem;
  z-index: 2;
  color: rgba(255,235,250,0.92);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255,80,200,0.55), 0 2px 8px rgba(0,0,0,0.9);
}
@media (max-width: 599px) {
  .zone-controlroom .zone-controlroom-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0.85rem !important;
    border-radius: 8px !important;
    background:
      radial-gradient(circle at 70% 12%, rgba(110,70,255,0.28), transparent 34%),
      radial-gradient(circle at 22% 88%, rgba(255,70,190,0.13), transparent 34%),
      linear-gradient(145deg, rgba(16,0,29,0.98), rgba(4,0,9,0.98)) !important;
  }
  .zone-controlroom .zone-controlroom-card .zone-cinematic-body {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    order: 2 !important;
    width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 0.2rem 0.15rem 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }
  .zone-controlroom .zone-controlroom-card .section-head {
    margin-bottom: 0.55rem !important;
  }
  .zone-controlroom .zone-controlroom-card .section-title {
    font-size: clamp(1.05rem, 4.8vw, 1.38rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 0.4rem !important;
  }
  .zone-controlroom .zone-controlroom-card .section-sub {
    font-size: 0.79rem !important;
    line-height: 1.42 !important;
    margin-bottom: 0.7rem !important;
  }
  .zone-controlroom .zone-controlroom-card .zone-cta-group--controlroom {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: auto !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 0.28rem !important;
    margin-top: 0.95rem !important;
  }
  .zone-controlroom .zone-controlroom-card .btn-zone-cta {
    width: auto !important;
    min-width: 0 !important;
    max-width: 200px !important;
    padding: 0.58rem 1.1rem !important;
    font-size: 0.72rem !important;
  }
  .zone-controlroom .zone-controlroom-card .nft-coming-soon {
    font-size: 0.62rem !important;
    letter-spacing: 0.16em !important;
  }
  .nft-video-card {
    order: 1;
    width: 100%;
  }
}

/* ── SECTION SHARED ────────────────────────────────────── */
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.55rem; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.38rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,155,225,0.92);
  border: 1px solid rgba(200,100,180,0.38); border-radius: 9999px; padding: 0.3rem 0.78rem;
}
.section-eyebrow-icon {
  width: 0.9rem;
  height: 0.9rem;
  flex: 0 0 auto;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.section-eyebrow--online .section-eyebrow-status {
  width: 0.38rem;
  height: 0.38rem;
  margin-left: 0.08rem;
  border-radius: 50%;
  background: #55f4d3;
  box-shadow: 0 0 7px rgba(85,244,211,0.88);
}
.section-title {
  font-size: clamp(1.75rem, 3.8vw, 2.8rem); font-weight: 700;
  color: #f0e6f0; line-height: 1.12; margin-bottom: 0.55rem; letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,1);
}
.section-sub {
  font-size: clamp(0.88rem, 1.6vw, 1rem); color: rgba(240,230,240,0.82);
  line-height: 1.65; margin-bottom: clamp(1.35rem, 2.2vw, 1.6rem); max-width: 40ch;
  text-shadow: 0 1px 8px rgba(0,0,0,1);
}

/* ── CTA ──────────────────────────────────────────────────── */
.zone-cta-group { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.btn-zone-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  padding: 0.75rem 1.6rem; border-radius: 9999px; border: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform 0.2s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s, background 0.25s;
}
.btn-zone-cta:hover  { transform: translateY(-2px) scale(1.03); }
.btn-zone-cta:active { transform: scale(0.97); transition-duration: 0.1s; }
.btn-zone-cta--primary  { background: rgba(210,30,155,1); border-color: rgba(255,130,215,0.85); color: #fff; box-shadow: 0 0 18px rgba(255,80,200,0.60), 0 0 40px rgba(255,80,200,0.25), 0 4px 16px rgba(0,0,0,0.45); }
.btn-zone-cta--primary:hover  { background: rgba(235,50,175,1); box-shadow: 0 0 28px rgba(255,80,200,0.85), 0 0 60px rgba(255,80,200,0.40), 0 6px 20px rgba(0,0,0,0.55); }
.btn-zone-cta--secondary { background: rgba(80,30,200,1); border-color: rgba(160,120,255,0.90); color: #fff; box-shadow: 0 0 18px rgba(120,60,255,0.65), 0 0 40px rgba(100,40,220,0.28), 0 4px 16px rgba(0,0,0,0.45); }
.btn-zone-cta--secondary:hover { background: rgba(100,45,230,1); border-color: rgba(180,140,255,1); color: #fff; box-shadow: 0 0 28px rgba(140,80,255,0.90), 0 0 60px rgba(120,60,255,0.42), 0 6px 20px rgba(0,0,0,0.55); }
.btn-zone-cta--yt { background: #cc0000; border-color: rgba(255,100,100,0.7); color: #fff; box-shadow: 0 0 18px rgba(200,0,0,0.55), 0 0 40px rgba(200,0,0,0.20), 0 4px 12px rgba(0,0,0,0.4); }
.btn-zone-cta--yt:hover { background: #e50000; box-shadow: 0 0 30px rgba(230,0,0,0.80), 0 0 60px rgba(220,0,0,0.30), 0 6px 16px rgba(0,0,0,0.5); }
.btn-zone-cta--tt { background: rgba(0,0,0,0.92); border-color: rgba(105,201,208,0.80); color: #fff; box-shadow: 0 0 14px rgba(105,201,208,0.55), 0 0 30px rgba(254,44,85,0.25), 0 4px 12px rgba(0,0,0,0.5); }
.btn-zone-cta--tt:hover { background: rgba(20,20,20,0.98); border-color: rgba(105,201,208,1); box-shadow: 0 0 24px rgba(105,201,208,0.80), 0 0 50px rgba(254,44,85,0.35), 0 6px 16px rgba(0,0,0,0.6); }
.btn-zone-cta--nft { background: rgba(100,40,200,0.90); border-color: rgba(180,120,255,0.75); color: #fff; box-shadow: 0 0 18px rgba(130,60,255,0.60), 0 0 40px rgba(100,40,200,0.25), 0 4px 16px rgba(0,0,0,0.4); }
.btn-zone-cta--nft:hover { background: rgba(120,55,230,1); box-shadow: 0 0 30px rgba(160,90,255,0.85), 0 0 60px rgba(130,60,255,0.35), 0 6px 20px rgba(0,0,0,0.5); }
.btn-zone-cta--disabled,
.btn-zone-cta--disabled:hover,
.btn-zone-cta--disabled:active {
  cursor: not-allowed;
  transform: none;
  opacity: 0.88;
  background: rgba(32,129,226,0.88);
  border-color: rgba(120,190,255,0.72);
  box-shadow: 0 0 16px rgba(32,129,226,0.48), 0 8px 20px rgba(0,0,0,0.36);
}
.btn-zone-cta--disabled {
  line-height: 1.05;
}
.nft-coming-soon {
  display: block;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(180,220,255,0.82);
  text-shadow: 0 0 12px rgba(32,129,226,0.42), 0 2px 8px rgba(0,0,0,0.85);
}

/* ── X signal button ──────────────────────────────────────── */
.btn-zone-cta--x-signal {
  background: rgba(18,18,22,0.95);
  border-color: rgba(220,220,240,0.55);
  color: #e8e8f0;
  box-shadow: 0 0 16px rgba(200,200,220,0.30), 0 4px 16px rgba(0,0,0,0.5);
}
.btn-zone-cta--x-signal:hover {
  background: rgba(30,30,38,1);
  border-color: rgba(240,240,255,0.90);
  box-shadow: 0 0 26px rgba(220,220,240,0.60), 0 0 50px rgba(200,200,230,0.22), 0 6px 20px rgba(0,0,0,0.6);
}

/* ── IG signal button ─────────────────────────────────────── */
.btn-zone-cta--ig-signal {
  background: linear-gradient(135deg, rgba(193,53,132,0.95) 0%, rgba(225,119,51,0.95) 100%);
  border-color: rgba(245,130,90,0.70);
  color: #fff;
  box-shadow: 0 0 18px rgba(225,100,80,0.45), 0 0 36px rgba(193,53,132,0.22), 0 4px 16px rgba(0,0,0,0.5);
}
.btn-zone-cta--ig-signal:hover {
  background: linear-gradient(135deg, rgba(210,60,145,1) 0%, rgba(240,135,60,1) 100%);
  border-color: rgba(255,150,100,0.95);
  box-shadow: 0 0 30px rgba(230,110,90,0.70), 0 0 60px rgba(200,60,140,0.32), 0 6px 20px rgba(0,0,0,0.6);
}

/* ── DORM VIDEO ───────────────────────────────────────── */
.dorm-video-wrap {
  position: relative; width: 100%; max-width: 900px;
  margin: 0 auto 1rem; border-radius: 1rem; overflow: hidden;
  border: 1px solid rgba(255,80,200,0.18);
  box-shadow: 0 0 40px rgba(255,80,200,0.12), 0 8px 32px rgba(0,0,0,0.6);
  aspect-ratio: 16/9; background: #100010; cursor: pointer;
}
.dorm-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.dorm-video-wrap .vid-play-hint { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(10,0,8,0.10); opacity: 0.78; transition: opacity 0.25s, background 0.25s; pointer-events: none; }
.dorm-video-wrap:hover .vid-play-hint { opacity: 1; background: rgba(10,0,8,0.24); }
.dorm-video-wrap .vid-play-hint svg { width: 64px; height: 64px; color: #fff; filter: drop-shadow(0 0 16px rgba(255,80,200,0.7)); }
.dorm-video-meta {
  max-width: 900px;
  margin: 0.85rem auto 0;
  text-align: left;
}
.dorm-video-meta strong,
.dorm-video-meta span {
  display: block;
}
.dorm-video-meta strong {
  font-size: clamp(0.96rem,1.8vw,1.15rem);
  line-height: 1.25;
  color: rgba(255,245,252,0.94);
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
}
.dorm-video-meta span {
  margin-top: 0.25rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(240,230,240,0.68);
}

/* ── CHAR CARDS ───────────────────────────────────────── */
.char-section-title {
  font-size: clamp(0.8rem,1.4vw,0.95rem); font-weight: 700;
  color: rgba(255,180,240,0.65); letter-spacing: 0.12em; text-transform: uppercase;
  margin: 2.5rem 0 0.75rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,80,200,0.1);
}
.zone-frontdesk .section-sub { margin-bottom: 1.15rem; }
.zone-frontdesk .char-section-title { margin: 0 0 0.55rem; }
.char-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
@media (max-width: 599px) { .char-cards { grid-template-columns: repeat(2,1fr); gap: 0.6rem; } }
.char-card { position: relative; border-radius: 0.875rem; overflow: hidden; background: #100010; border: 1px solid rgba(255,80,200,0.15); aspect-ratio: 9/16; cursor: pointer; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s, border-color 0.3s; }
.char-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 0 30px rgba(255,80,200,0.28), 0 12px 40px rgba(0,0,0,0.7); border-color: rgba(255,80,200,0.45); }
.char-card:active { transform: scale(0.98); transition-duration: 0.1s; }
.char-card--video {
  aspect-ratio: 9/16;
  overflow: hidden;
}
.char-card .char-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: opacity 0.4s; }
.char-card .char-video  { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; opacity: 0; transition: opacity 0.4s; }
.char-card:hover .char-poster { opacity: 0; }
.char-card:hover .char-video  { opacity: 1; }
.char-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.54) 0%, rgba(0,0,0,0.18) 34%, transparent 64%); display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(0.6rem,2vw,1rem); pointer-events: none; }
.char-card-name { font-size: clamp(0.95rem,2vw,1.2rem); font-weight: 700; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.95), 0 0 14px rgba(0,0,0,0.72); line-height: 1.1; }
.char-card-tag  { font-size: clamp(0.72rem,1.1vw,0.75rem); color: #fff; margin-top: 0.3rem; line-height: 1.45; text-shadow: 0 2px 7px rgba(0,0,0,0.95), 0 0 12px rgba(0,0,0,0.72); }
.char-card-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.9); opacity: 0.42; width: 54px; height: 54px; border-radius: 50%; background: rgba(8,0,12,0.28); border: 1px solid rgba(255,255,255,0.36); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 16px rgba(255,80,200,0.22), 0 8px 20px rgba(0,0,0,0.32); transition: opacity 0.25s, transform 0.3s cubic-bezier(0.16,1,0.3,1), background 0.25s, border-color 0.25s; pointer-events: none; }
.char-card-play svg { width: 20px; height: 20px; color: #fff; margin-left: 3px; }
.char-card:hover .char-card-play { opacity: 0.72; transform: translate(-50%,-50%) scale(0.98); background: rgba(12,0,18,0.44); border-color: rgba(255,255,255,0.58); }

/* ── RESIDENT 4x4 REVAMP ─────────────────────────────────── */
.resident-showcase {
  display: flex;
  flex-direction: column;
  gap: clamp(1.15rem, 2.4vw, 1.8rem);
}
.resident-row {
  position: relative;
}
.resident-row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
  padding: 0 0.15rem;
}
.resident-name {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 0 16px rgba(255,80,200,0.55);
}
.resident-note {
  color: rgba(255,210,245,0.68);
  font-size: 0.78rem;
  line-height: 1.2;
  text-align: right;
}
.resident-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}
.resident-row-track {
  position: relative;
}
.resident-nav,
.resident-dots {
  display: none;
}
.resident-cards .char-card {
  display: block;
  border-radius: 8px;
  min-width: 0;
  text-decoration: none;
}
.resident-cards .char-card:not([data-video-src]) {
  cursor: default;
}
.resident-cards a.char-card {
  cursor: pointer;
}
.resident-cards .char-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at 50% 38%, rgba(255,255,255,0.16), transparent 32%);
  transition: opacity 0.25s ease;
}
.resident-cards .char-card:hover::after {
  opacity: 1;
}
.char-card-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  padding: 0.18rem 0.48rem;
  border-radius: 999px;
  background: rgba(25, 210, 170, 0.92);
  border: 1px solid rgba(190,255,240,0.7);
  color: #03110e;
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 14px rgba(40,255,210,0.28);
}
.char-card-badge--lock {
  background: rgba(255, 185, 60, 0.94);
  border-color: rgba(255,230,140,0.78);
  color: #1b0e00;
}
.char-card-badge--soon {
  background: rgba(110, 70, 170, 0.92);
  border-color: rgba(200,170,255,0.62);
  color: #fff;
}
.char-card-badge--nft {
  background: rgba(80, 120, 255, 0.94);
  border-color: rgba(180,205,255,0.72);
  color: #fff;
}
.char-card-static {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255,80,200,0.18), rgba(35,180,220,0.12)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.055) 0 1px, transparent 1px 9px),
    #100010;
}
.resident-row[data-resident="honeybite"] .char-card-static {
  background:
    radial-gradient(circle at 70% 20%, rgba(255,190,70,0.22), transparent 32%),
    linear-gradient(145deg, rgba(230,55,150,0.22), rgba(25,12,26,0.95)),
    #100010;
}
.resident-row[data-resident="lacetease"] .char-card-static {
  background:
    radial-gradient(circle at 68% 22%, rgba(255,210,245,0.22), transparent 30%),
    linear-gradient(145deg, rgba(170,65,230,0.24), rgba(25,12,26,0.95)),
    #100010;
}
.resident-row[data-resident="neolick"] .char-card-static {
  background:
    radial-gradient(circle at 70% 20%, rgba(80,240,255,0.18), transparent 31%),
    linear-gradient(145deg, rgba(55,160,210,0.22), rgba(25,12,26,0.95)),
    #100010;
}
.resident-row[data-resident="memo"] .char-card-static {
  background:
    radial-gradient(circle at 68% 22%, rgba(130,135,255,0.22), transparent 32%),
    linear-gradient(145deg, rgba(80,95,200,0.22), rgba(25,12,26,0.95)),
    #100010;
}
.char-card--locked,
.char-card--memo,
.char-card--external {
  border-color: rgba(255,210,245,0.22);
}
.char-card--external {
  cursor: pointer;
}
[data-placeholder-card] {
  cursor: pointer !important;
}
.char-card--external:hover {
  border-color: rgba(120,165,255,0.72);
}
.char-card-lock {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: flex;
  width: clamp(48px, 5vw, 62px);
  height: clamp(48px, 5vw, 62px);
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,230,250,0.35);
  background: rgba(10,0,12,0.46);
  color: rgba(255,240,255,0.9);
  font-size: 1.55rem;
  font-weight: 700;
  box-shadow: 0 0 24px rgba(255,80,200,0.18);
}
.char-card--preview .char-poster,
.char-card--preview:hover .char-poster {
  opacity: 1;
}
.char-card-preview-notice {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.45rem 0.62rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  background: rgba(12, 5, 14, 0.28);
  color: rgba(255,250,255,0.96);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25), 0 0 18px rgba(255,105,210,0.16);
  backdrop-filter: blur(4px);
  transform: translate(-50%, -50%);
  font-size: clamp(0.52rem, 1vw, 0.62rem);
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
  white-space: nowrap;
}
.char-card-preview-notice svg {
  width: 0.92rem;
  height: 0.92rem;
  flex: 0 0 auto;
}
.lb-swipe-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 7;
  display: none;
  align-items: center;
  gap: 0.4rem;
  max-width: min(78%, 290px);
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 999px;
  background: rgba(9,0,12,0.42);
  color: rgba(255,248,255,0.96);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 18px rgba(255,80,200,0.15);
  backdrop-filter: blur(5px);
  transform: translate(-50%, -50%) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-align: center;
}
.lb-swipe-hint--show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.lb-swipe-hint--status { letter-spacing: 0.02em; }
.lb-swipe-arrow { color: rgba(255,150,225,0.96); font-size: 1rem; line-height: 1; }
@media (max-width: 599px) { .lb-swipe-hint { display: inline-flex; } }
@media (max-width: 599px) {
  .resident-showcase {
    gap: 1.35rem;
  }
  .resident-row-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }
  .resident-note {
    text-align: left;
    font-size: 0.72rem;
  }
  .resident-cards {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(43%, 43%);
    grid-template-columns: none;
    gap: 0.7rem;
    overflow-x: auto;
    padding: 0 8vw 0.45rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,80,200,0.55) rgba(255,255,255,0.08);
  }
  .resident-nav {
    position: absolute;
    top: 50%;
    z-index: 6;
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,210,245,0.38);
    border-radius: 999px;
    background: rgba(8,0,10,0.72);
    color: rgba(255,245,255,0.94);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 0 18px rgba(255,80,200,0.22), 0 8px 22px rgba(0,0,0,0.44);
    transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  }
  .resident-nav:hover {
    border-color: rgba(255,130,220,0.72);
  }
  .resident-nav:active {
    transform: translateY(-50%) scale(0.94);
  }
  .resident-nav:disabled {
    opacity: 0.28;
    cursor: default;
  }
  .resident-nav--prev {
    left: -0.35rem;
  }
  .resident-nav--next {
    right: -0.35rem;
  }
  .resident-dots {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
  }
  .resident-dot {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: rgba(255,210,245,0.25);
    transition: width 0.2s ease, background 0.2s ease;
  }
  .resident-dot.is-active {
    width: 1.05rem;
    background: rgba(255,90,205,0.9);
  }
  .resident-cards .char-card {
    scroll-snap-align: start;
  }
  .char-card-badge {
    top: 0.45rem;
    left: 0.45rem;
    font-size: 0.56rem;
    min-height: 1.25rem;
  }
  .resident-cards .char-card .char-card-tag {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ── FIXED PLATFORM GRID ─────────────────────────────────── */
.zone-platforms .section-sub {
  margin-bottom: 1.35rem;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.platform-card {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255,80,200,0.18);
  background: #100010;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  box-shadow: 0 14px 34px rgba(0,0,0,0.42);
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), border-color 0.25s, box-shadow 0.25s;
}
.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,120,215,0.54);
  box-shadow: 0 18px 44px rgba(0,0,0,0.54), 0 0 28px rgba(255,80,200,0.18);
}
.platform-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.48;
  transform: scale(1.02);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.platform-card:hover img {
  opacity: 0.58;
  transform: scale(1.05);
}
.platform-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,0,10,0.96) 0%, rgba(8,0,10,0.62) 48%, rgba(8,0,10,0.12) 100%);
}
.platform-card span,
.platform-card strong,
.platform-card em {
  position: relative;
  z-index: 1;
}
.platform-kicker {
  width: max-content;
  max-width: 100%;
  margin-bottom: 0.45rem;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,220,245,0.9);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.platform-card strong {
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.05;
}
.platform-card em {
  margin-top: 0.35rem;
  color: rgba(255,220,245,0.72);
  font-size: 0.78rem;
  font-style: normal;
}
.platform-card--youtube {
  border-color: rgba(255,70,70,0.34);
}
.platform-card--tiktok {
  border-color: rgba(105,201,208,0.34);
}
.platform-card--x {
  border-color: rgba(220,220,240,0.28);
}
.platform-card--ig {
  border-color: rgba(225,120,90,0.32);
}
@media (max-width: 599px) {
  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
  .platform-card {
    min-height: 156px;
    padding: 0.8rem;
  }
  .platform-card strong {
    font-size: 0.95rem;
  }
  .platform-card em {
    font-size: 0.7rem;
  }
}

/* ── RESIDENT PLACEHOLDER TOAST ──────────────────────────── */
.resident-toast {
  position: fixed;
  left: 50%;
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 980;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  width: min(360px, calc(100vw - 2rem));
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,130,220,0.42);
  border-radius: 8px;
  background: rgba(14,0,16,0.94);
  color: rgba(255,240,252,0.92);
  box-shadow: 0 0 28px rgba(255,80,200,0.24), 0 16px 42px rgba(0,0,0,0.62);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.85rem) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16,1,0.3,1);
}
.resident-toast strong {
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.1;
}
.resident-toast span {
  color: rgba(255,210,245,0.78);
  font-size: 0.78rem;
  line-height: 1.45;
}
.resident-toast--show {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}
.resident-toast--hide {
  opacity: 0;
  transform: translate(-50%, 0.85rem) scale(0.98);
}

/* ── LIGHTBOX ───────────────────────────────────────────── */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(4,0,6,0.96);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity 0.3s ease;
  --lb-ar: 1.7777777778;
  --lb-controls-h: 4.75rem;
}
.lb-overlay.lb-portrait { --lb-ar: 0.5625; }
.lb-overlay.lb-open { opacity: 1; pointer-events: auto; }
.mux-lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 901;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(4,0,6,0.97);
  opacity: 0;
  pointer-events: none;
  overscroll-behavior: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity .25s ease;
}
.mux-lb-overlay.is-open { opacity: 1; pointer-events: auto; }
.mux-lb-player { position: relative; width: min(calc(100vw - 2rem), calc((100dvh - 2rem) * 9 / 16)); aspect-ratio: 9 / 16; overflow: hidden; border-radius: .8rem; background: #000; box-shadow: 0 0 60px rgba(255,80,200,.2), 0 20px 60px rgba(0,0,0,.8); }
.mux-lb-player mux-player { display: block; width: 100%; height: 100%; touch-action: none; --media-object-size: contain; }
.mux-lb-loader { position: absolute; inset: 0; z-index: 2; color: rgba(255,238,252,.92); opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.mux-lb-overlay.is-loading .mux-lb-loader { opacity: 1; }
.mux-lb-loader-status { position: absolute; top: calc(50% + 48px); left: 50%; display: inline-flex; align-items: center; gap: .42rem; padding: .34rem .52rem; border: 1px solid rgba(255,210,245,.2); border-radius: 999px; background: rgba(8,0,12,.52); box-shadow: 0 8px 20px rgba(0,0,0,.3); transform: translateX(-50%); }
.mux-lb-loader-status i { width: 14px; height: 14px; border: 2px solid rgba(255,210,245,.28); border-top-color: rgba(255,91,207,.98); border-radius: 50%; box-sizing: border-box; animation: mux-lb-spin .75s linear infinite; }
.mux-lb-loader em { color: rgba(255,230,248,.82); font: 600 .62rem/1 "Space Grotesk",sans-serif; font-style: normal; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.mux-lb-loader em::after { content: '_'; display: inline-block; margin-left: .12rem; color: rgba(255,135,220,.95); animation: mux-lb-cursor .82s steps(1,end) infinite; }
@keyframes mux-lb-spin { to { transform: rotate(360deg); } }
@keyframes mux-lb-cursor { 50% { opacity: 0; } }
.mux-lb-actions { position: absolute; z-index: 3; right: .7rem; bottom: calc(max(.7rem, env(safe-area-inset-bottom)) + 4.75rem); left: .7rem; display: flex; align-items: center; justify-content: center; gap: .55rem; transition: opacity .2s ease, transform .2s ease; }
.mux-lb-actions button.btn-zone-cta {
  min-height: 42px;
  padding: .52rem .82rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(24,10,32,.78), rgba(12,4,18,.82));
  color: #fff;
  box-shadow: 0 0 16px -3px var(--clr), 0 0 32px -8px var(--clr), 0 6px 16px rgba(0,0,0,.45);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  line-height: 1;
}
.mux-lb-actions button.btn-zone-cta .mux-lb-action-icon { width: 14px; height: 14px; flex: 0 0 auto; color: var(--clr); filter: drop-shadow(0 0 4px var(--clr)); }
.mux-lb-actions button.btn-zone-cta .mux-lb-external-icon { width: 11px; height: 11px; flex: 0 0 auto; margin-left: 1px; opacity: .8; color: rgba(255,255,255,.85); filter: none; }
.mux-lb-actions button.btn-zone-cta:hover,
.mux-lb-actions button.btn-zone-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 22px -2px var(--clr), 0 0 42px -6px var(--clr), 0 6px 16px rgba(0,0,0,.45);
}
.mux-lb-actions button.btn-zone-cta--x-signal { --clr: rgba(105,201,208,.95); background: linear-gradient(180deg, rgba(24,10,32,.78), rgba(12,4,18,.82)); color: #f1f4f8; }
.mux-lb-actions button.btn-zone-cta--x-signal:hover,
.mux-lb-actions button.btn-zone-cta--x-signal:focus-visible { background: linear-gradient(180deg, rgba(30,16,40,.88), rgba(15,8,24,.92)); }
.mux-lb-actions button.btn-zone-cta--secondary { --clr: rgba(255,184,70,.98); background: linear-gradient(180deg, rgba(42,28,12,.86), rgba(20,12,6,.9)); }
.mux-lb-actions button.btn-zone-cta--secondary:hover,
.mux-lb-actions button.btn-zone-cta--secondary:focus-visible { background: linear-gradient(180deg, rgba(52,34,15,.94), rgba(24,14,6,.96)); }
.mux-lb-actions button.btn-zone-cta[data-mux-action="close"] { --clr: rgba(255,91,207,.98); }
.mux-lb-actions button.btn-zone-cta--same-width { width: 97px; justify-content: center; }
.mux-lb-actions button.btn-zone-cta--wide { width: 158px; justify-content: center; }
.mux-lb-actions button.btn-zone-cta--subscribe { padding-right: .74rem; }
.mux-lb-actions button.btn-zone-cta--subscribe .mux-lb-action-icon { width: 15px; height: 15px; }
.mux-lb-actions button.btn-zone-cta--subscribe .mux-lb-external-icon { margin-left: .06rem; }
.mux-lb-overlay.is-ui-visible .mux-lb-actions { animation: mux-lb-hud-breathe 2.6s ease-in-out infinite; }
@keyframes mux-lb-hud-breathe { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.12); } }
.mux-lb-overlay.is-playing:not(.is-ui-visible) .mux-lb-actions { opacity: 0; pointer-events: none; transform: translateY(8px); }
.mux-lb-hint { position: absolute; z-index: 2; right: 1rem; bottom: 8.4rem; left: 1rem; padding: .6rem .8rem; border-radius: .65rem; color: #fff; background: rgba(8,0,12,.72); font-size: .76rem; text-align: center; opacity: 0; transform: translateY(8px); pointer-events: none; transition: opacity .2s, transform .2s; }
.mux-lb-hint.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 599px) { .mux-lb-overlay { padding: .65rem; } .mux-lb-player { width: min(calc(100vw - 1.3rem), calc((100dvh - 1.3rem) * 9 / 16)); border-radius: .65rem; } .mux-lb-actions { right: .5rem; bottom: calc(max(.5rem, env(safe-area-inset-bottom)) + 4.35rem); left: .5rem; gap: .32rem; } .mux-lb-actions button.btn-zone-cta { min-height: 40px; padding: .48rem .6rem; font-size: 9px; } .mux-lb-actions button.btn-zone-cta--same-width { width: 70px; } .mux-lb-actions button.btn-zone-cta--wide { width: 112px; } .mux-lb-actions button.btn-zone-cta .mux-lb-action-icon { width: 12px; height: 12px; } .mux-lb-actions button.btn-zone-cta .mux-lb-external-icon { width: 10px; height: 10px; } .copy-toast { top: max(1rem, env(safe-area-inset-top)); right: 50%; transform: translate(50%, -6px) scale(.92); } .copy-toast--show { transform: translate(50%, 0) scale(1); } .copy-toast--hide { transform: translate(50%, -6px) scale(.92); } }
.lb-player {
  position: relative;
  width: min(calc(100vw - 2rem), calc((100dvh - var(--lb-controls-h) - 2rem) * var(--lb-ar)));
  max-width: calc(100vw - 2rem);
}
.lb-frame {
  position: relative;
  width: 100%;
  aspect-ratio: var(--lb-ar);
  overflow: hidden;
  background: #000;
  border-radius: 0.75rem 0.75rem 0 0;
  box-shadow: 0 0 60px rgba(255,80,200,0.2), 0 20px 60px rgba(0,0,0,0.8);
}
.lb-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
  -webkit-touch-callout: none;
  user-select: none;
}
.lb-loader {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(255,80,200,0.12), rgba(0,0,0,0.28) 45%, rgba(0,0,0,0.52));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.lb-loader span {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 3px solid rgba(255,210,245,0.2);
  border-top-color: rgba(255,90,205,0.95);
  box-shadow: 0 0 22px rgba(255,80,200,0.34);
  animation: lb-spin 0.78s linear infinite;
}
.lb-overlay.lb-loading .lb-loader {
  opacity: 1;
}
@keyframes lb-spin {
  to { transform: rotate(360deg); }
}
.lb-share-toast {
  position: absolute;
  left: 50%;
  bottom: clamp(5.2rem, 12%, 7.6rem);
  z-index: 12;
  width: min(86%, 360px);
  transform: translate(-50%, 12px);
  opacity: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.72rem;
  row-gap: 0.12rem;
  align-items: center;
  padding: 0.82rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(80,255,170,0.28);
  background: rgba(7,18,15,0.78);
  color: #fff;
  box-shadow: 0 16px 44px rgba(0,0,0,0.42), 0 0 26px rgba(80,255,170,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.lb-share-toast--error {
  border-color: rgba(255,120,120,0.34);
  background: rgba(24,8,10,0.86);
  box-shadow: 0 16px 44px rgba(0,0,0,0.42), 0 0 26px rgba(255,120,120,0.12);
}
.lb-share-toast--error .lb-share-check {
  background: rgba(255,120,120,0.16);
  border-color: rgba(255,120,120,0.48);
  color: #ff9da0;
}
.lb-share-toast--error .lb-share-copy {
  color: rgba(255,220,220,0.72);
}
.lb-share-toast--show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.lb-share-check {
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(80,255,170,0.18);
  border: 1px solid rgba(80,255,170,0.5);
  color: #72ffbd;
  font-weight: 800;
  line-height: 1;
}
.lb-share-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.96);
}
.lb-share-copy {
  font-size: 0.72rem;
  color: rgba(220,255,238,0.72);
}
.lb-tap-state { position: absolute; inset: 0; z-index: 7; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.92); opacity: 0; transform: scale(0.92); pointer-events: none; transition: opacity 0.18s, transform 0.18s; }
.lb-tap-state--show { opacity: 1; transform: scale(1); }
.lb-tap-state svg { width: 68px; height: 68px; padding: 18px; border-radius: 50%; background: rgba(0,0,0,0.34); filter: drop-shadow(0 6px 18px rgba(0,0,0,0.52)); }
.lb-controls {
  position: relative;
  z-index: 9;
  width: 100%;
  margin-top: 0;
  padding: 0 0.18rem calc(0.3rem + env(safe-area-inset-bottom));
  background: rgba(2,0,4,0.98);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.lb-overlay.lb-controls-hidden .lb-controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.lb-overlay.lb-is-fullscreen .lb-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-top: 0;
  padding: 0.5rem 0.72rem calc(0.58rem + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(2,0,4,0.94), rgba(2,0,4,0.5) 58%, rgba(2,0,4,0));
  border-top: none;
}
.lb-progress-wrap {
  position: relative;
  width: 100%;
  height: 4px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.24);
  cursor: pointer;
  touch-action: none;
  transition: height 0.15s ease, background 0.15s ease;
}
.lb-progress-wrap::before {
  content: '';
  position: absolute;
  inset: -10px 0;
}
.lb-progress-wrap:hover,
.lb-progress-wrap:focus-visible {
  height: 6px;
  background: rgba(255,255,255,0.34);
  outline: none;
}
.lb-progress-fill {
  height: 100%;
  border-radius: 9999px;
  background: rgba(255,255,255,0.92);
  width: 0%;
  pointer-events: none;
  transition: width 0.08s linear;
}
.lb-progress-thumb {
  position: absolute;
  top: 50%;
  right: auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.7), 0 0 10px rgba(255,80,200,0.38);
  transform: translate(-50%,-50%) scale(0.9);
  transition: transform 0.15s ease;
  pointer-events: none;
}
.lb-progress-wrap:hover .lb-progress-thumb,
.lb-progress-wrap:focus-visible .lb-progress-thumb { transform: translate(-50%,-50%) scale(1.08); }
.lb-btn-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.36rem;
  width: 100%;
  min-height: 42px;
  padding-top: 0.34rem;
  opacity: 1;
  transform: translateY(0);
}
.lb-control-spacer { flex: 1 1 auto; min-width: 0; }
.lb-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(245,245,245,0.86);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  transition: color 0.2s, background 0.2s, transform 0.12s, opacity 0.2s;
  flex: 0 0 auto;
}
.lb-btn svg { width: 18px; height: 18px; display: block; }
.lb-btn:hover { color: #fff; background: rgba(255,255,255,0.12); }
.lb-btn:focus-visible { outline: 2px solid rgba(255,140,225,0.8); outline-offset: 2px; }
.lb-btn:active { transform: scale(0.93); }
.lb-btn-play { color: rgba(245,245,245,0.9); }
.lb-btn-play:hover { background: rgba(255,255,255,0.12); }
.lb-btn [hidden] { display: none; }
.lb-btn-play .lb-icon-pause { display: none; }
.lb-btn-play.is-playing .lb-icon-play { display: none; }
.lb-btn-play.is-playing .lb-icon-pause { display: block; }
.lb-btn-mute .lb-icon-vol-off { display: none; }
.lb-btn-mute.is-muted .lb-icon-vol-on { display: none; }
.lb-btn-mute.is-muted .lb-icon-vol-off { display: block; }
.lb-btn-fs .lb-icon-fs-exit { display: none; }
.lb-btn-fs.is-fullscreen .lb-icon-fs-enter { display: none; }
.lb-btn-fs.is-fullscreen .lb-icon-fs-exit { display: block; }
.lb-time { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em; color: rgba(255,255,255,0.72); white-space: nowrap; min-width: 92px; text-align: left; flex: 0 0 auto; text-shadow: 0 1px 4px rgba(0,0,0,0.85); }
.lb-volume-group {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.lb-volume-popover {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.45rem);
  width: 112px;
  padding: 0.45rem 0.55rem;
  transform: translate(-50%, 8px);
  opacity: 0;
  pointer-events: none;
  border-radius: 9999px;
  border: 1px solid rgba(255,80,200,0.22);
  background: rgba(8,0,10,0.86);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45), 0 0 20px rgba(255,80,200,0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: opacity 0.18s, transform 0.18s;
}
.lb-volume-group:hover .lb-volume-popover,
.lb-volume-group:focus-within .lb-volume-popover {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.lb-volume-slider {
  width: 100%;
  height: 6px;
  accent-color: rgba(255,80,200,0.9);
  cursor: pointer;
  flex: 1 1 auto;
}
.lb-overlay:fullscreen,
.lb-overlay:-webkit-full-screen {
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(4,0,6,0.98);
}
.lb-overlay.lb-is-fullscreen .lb-player {
  width: min(100vw, calc(100dvh * var(--lb-ar)));
  max-width: 100vw;
}
.lb-overlay.lb-is-fullscreen .lb-frame {
  border-radius: 0;
  box-shadow: none;
}
.lb-action-sheet {
  display: none;
}
/* ════════════════════════════════════════════════════════════
   SIGNAL GRID — X + IG cinematic cards
   ════════════════════════════════════════════════════════════ */
.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding-top: 0.5rem;
}
.signal-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  height: 460px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 40px rgba(255,80,200,0.15), 0 16px 48px rgba(0,0,0,0.65);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}
.signal-card:hover {
  transform: translateY(-6px) scale(1.015);
}
.signal-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.signal-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.signal-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,0,10,0.15) 0%,
    rgba(6,0,10,0.30) 35%,
    rgba(6,0,10,0.82) 65%,
    rgba(6,0,10,0.96) 100%
  );
}
.signal-card-body {
  position: absolute;
  left: 0; right: 0;
  bottom: 88px;
  z-index: 2;
  padding: 0 1.5rem 0;
}
.signal-card-body .section-head {
  margin-bottom: 0.55rem;
}
.signal-card-title {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #f0e6f0;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}
.signal-card-desc {
  font-size: clamp(0.78rem, 1.2vw, 0.88rem);
  color: rgba(240,230,240,0.78);
  line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}
.signal-card-cta {
  position: absolute;
  bottom: 1.5rem;
  left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  padding: 0 1.25rem;
}
.signal-card-cta .btn-zone-cta {
  width: 100%;
  font-size: 0.88rem;
  padding: 0.85rem 1.5rem;
  justify-content: center;
}
.signal-card--x {
  border: 1px solid rgba(220,220,240,0.22);
  box-shadow: 0 0 36px rgba(200,200,220,0.14), 0 16px 48px rgba(0,0,0,0.70);
}
.signal-card--x:hover {
  box-shadow: 0 0 55px rgba(220,220,240,0.30), 0 20px 55px rgba(0,0,0,0.75);
}
.signal-card--ig {
  border: 1px solid rgba(225,100,80,0.30);
  box-shadow: 0 0 36px rgba(225,100,80,0.16), 0 0 22px rgba(193,53,132,0.10), 0 16px 48px rgba(0,0,0,0.70);
}
.signal-card--ig:hover {
  box-shadow: 0 0 55px rgba(230,110,80,0.34), 0 0 40px rgba(200,60,140,0.18), 0 20px 55px rgba(0,0,0,0.75);
}
@media (max-width: 599px) {
  .signal-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .signal-card {
    height: clamp(340px, 104vw, 420px);
    background: #060008;
  }
  .signal-card-bg {
    inset: 0 0 auto;
    height: 48%;
    background: #050006;
  }
  .signal-card-img {
    height: 100%;
    object-fit: contain;
    object-position: top center;
  }
  .signal-card-overlay {
    background: linear-gradient(
      to bottom,
      rgba(6,0,10,0.02) 0%,
      rgba(6,0,10,0.08) 45%,
      rgba(6,0,10,0.62) 78%,
      rgba(6,0,10,1) 100%
    );
  }
  .signal-card-body {
    bottom: 80px;
    padding: 0 0.9rem 0;
  }
  .signal-card-title {
    font-size: 0.95rem;
  }
  .signal-card-desc {
    font-size: 0.72rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .signal-card-cta {
    bottom: 1rem;
    padding: 0 0.85rem;
  }
  .signal-card-cta .btn-zone-cta {
    font-size: 0.75rem;
    padding: 0.7rem 0.9rem;
    gap: 0.35rem;
  }
  .signal-card-cta .btn-zone-cta svg { width: 13px; height: 13px; }
}

/* ── BACK TO TOP ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.5rem;
  z-index: 300;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(10,0,8,0.75);
  border: 1px solid rgba(255,80,200,0.35);
  color: rgba(255,160,230,0.75);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow:
    0 0 12px rgba(255,80,200,0.30),
    0 0 28px rgba(255,80,200,0.12),
    0 4px 16px rgba(0,0,0,0.55);
  opacity: 0;
  transform: translateY(10px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16,1,0.3,1),
              transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.25s,
              color 0.2s,
              border-color 0.2s,
              background 0.2s;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.back-to-top svg { width: 18px; height: 18px; display: block; }
.back-to-top.btt-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  color: #fff;
  background: rgba(160,20,120,0.70);
  border-color: rgba(255,80,200,0.70);
  box-shadow:
    0 0 20px rgba(255,80,200,0.55),
    0 0 50px rgba(255,80,200,0.20),
    0 6px 20px rgba(0,0,0,0.6);
  transform: translateY(-3px) scale(1.08);
}
.back-to-top:active {
  transform: scale(0.94);
  transition-duration: 0.1s;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.watch-footer {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem clamp(1.5rem,5vw,4rem) 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  text-align: center;
}
.footer-age-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,160,100,0.80);
  border: 1px solid rgba(255,140,80,0.30);
  border-radius: 9999px;
  padding: 0.28rem 0.9rem;
  background: rgba(255,100,30,0.06);
}
.footer-contact {
  font-size: 0.78rem;
  color: rgba(240,230,240,0.58);
  line-height: 1.75;
  letter-spacing: 0.02em;
}
.footer-contact a {
  color: rgba(255,160,230,0.82);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: rgba(255,180,240,0.90);
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.78rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: rgba(240,230,240,0.58);
}
.footer-legal-links a {
  color: rgba(240,230,240,0.58);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover {
  color: rgba(255,160,230,0.75);
}
.footer-copy {
  font-size: 0.78rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: rgba(240,230,240,0.62);
}

/* ════════════════════════════════════════════════════════════
   COOKIE BANNER
   ════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 500;
  width: min(560px, calc(100vw - 2rem));
  background: rgba(10,0,14,0.92);
  border: 1px solid rgba(255,80,200,0.28);
  border-radius: 0.875rem;
  padding: 1.1rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow:
    0 0 32px rgba(255,80,200,0.18),
    0 8px 32px rgba(0,0,0,0.70);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  transition: transform 0.42s cubic-bezier(0.16,1,0.3,1), opacity 0.42s;
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.cb-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner.cb-hiding {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cb-text {
  font-size: 0.78rem;
  color: rgba(240,230,240,0.55);
  line-height: 1.7;
}
.cb-text a {
  color: rgba(255,160,230,0.70);
  text-decoration: none;
}
.cb-text a:hover { color: rgba(255,180,240,0.95); }
.cb-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
}
.cb-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.cb-btn--accept {
  background: rgba(200,30,150,1);
  border-color: rgba(255,120,210,0.75);
  color: #fff;
  box-shadow: 0 0 14px rgba(255,80,200,0.40);
}
.cb-btn--accept:hover {
  background: rgba(230,50,170,1);
  box-shadow: 0 0 22px rgba(255,80,200,0.65);
}
.cb-btn--decline {
  background: transparent;
  border-color: rgba(255,80,200,0.22);
  color: rgba(240,230,240,0.38);
}
.cb-btn--decline:hover {
  border-color: rgba(255,80,200,0.45);
  color: rgba(240,230,240,0.65);
}

/* ════════════════════════════════════════════════════════════
   GLOBAL MOBILE ≤599px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 599px) {
  .nav-inner { height: 100px; }
  .nav-logo img { height: 88px; }
  .hero--collapsed { height: 100px; min-height: 100px; }
  .section-head { margin-bottom: 0.45rem; }
  .section-title { font-size: 1.35rem; margin-bottom: 0.5rem; }
  .section-sub { font-size: 0.82rem; max-width: 100%; line-height: 1.6; margin-bottom: 1.15rem; }
  .zone-frontdesk .section-sub { margin-bottom: 1rem; }
  .btn-zone-cta { font-size: 0.78rem; padding: 0.65rem 1.2rem; }
  .zone-cta-group { flex-direction: column; align-items: stretch; max-width: 280px; margin-left: auto; margin-right: auto; }
  .btn-zone-cta { justify-content: center; }
  .lb-overlay {
    justify-content: center;
    padding: 0.45rem 0.35rem 0.3rem;
    background: rgba(4,0,6,0.98);
  }
  .lb-player,
  .lb-overlay.lb-portrait .lb-player {
    width: min(100vw, calc((100dvh - var(--lb-controls-h) - 0.75rem) * var(--lb-ar)));
    max-width: 100vw;
  }
  .lb-frame {
    border-radius: 0.5rem 0.5rem 0 0;
    box-shadow: 0 0 42px rgba(255,80,200,0.15), 0 14px 36px rgba(0,0,0,0.58);
  }
  .lb-controls {
    padding: 0 0.08rem calc(0.18rem + env(safe-area-inset-bottom));
  }
  .lb-btn-row {
    gap: 0.22rem;
    min-height: 48px;
    padding-top: 0.34rem;
  }
  .lb-progress-wrap {
    height: 4px;
    min-width: 0;
  }
  .lb-control-spacer {
    flex: 1 1 auto;
    min-width: 0.15rem;
  }
  .lb-volume-group {
    flex: 0 0 auto;
  }
  .lb-btn {
    width: 48px;
    height: 48px;
  }
  .lb-btn svg {
    width: 20px;
    height: 20px;
  }
  .lb-time { min-width: 74px; font-size: 0.6rem; }
  .lb-volume-popover { display: none; }
  .lb-tap-state svg { width: 62px; height: 62px; padding: 17px; }
  .lb-action-sheet {
    position: absolute;
    left: 0.35rem;
    right: 0.35rem;
    bottom: calc(0.35rem + env(safe-area-inset-bottom));
    z-index: 32;
    display: block;
    padding: 0.55rem 0.78rem 0.86rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1rem;
    background:
      linear-gradient(180deg, rgba(32,22,34,0.54), rgba(8,4,12,0.7)),
      rgba(12,8,14,0.58);
    box-shadow:
      0 20px 58px rgba(0,0,0,0.55),
      0 0 34px rgba(255,80,200,0.12),
      inset 0 1px 0 rgba(255,255,255,0.16);
    backdrop-filter: blur(34px) saturate(175%);
    -webkit-backdrop-filter: blur(34px) saturate(175%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .lb-overlay.lb-sheet-open .lb-action-sheet {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .lb-sheet-handle {
    width: 36px;
    height: 4px;
    margin: 0 auto 0.44rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.28);
  }
  .lb-sheet-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 76px;
    margin-bottom: 0.14rem;
    pointer-events: none;
  }
  .lb-sheet-brand img {
    display: block;
    width: auto;
    height: 74px;
    object-fit: contain;
    filter:
      drop-shadow(0 0 8px rgba(255,255,255,0.22))
      drop-shadow(0 0 14px rgba(255,80,200,0.24));
  }
  .lb-sheet-volume {
    display: grid;
    gap: 0.48rem;
    padding: 0.34rem 0 0.68rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .lb-sheet-volume-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: rgba(255,245,252,0.76);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .lb-sheet-volume-value {
    min-width: 3rem;
    text-align: right;
    color: rgba(255,190,235,0.8);
    font-variant-numeric: tabular-nums;
  }
  .lb-sheet-volume-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.72rem;
  }
  .lb-sheet-icon-btn {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 9999px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,245,252,0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .lb-sheet-icon-btn svg {
    width: 20px;
    height: 20px;
    display: block;
  }
  .lb-sheet-icon-btn .lb-icon-vol-off { display: none; }
  .lb-sheet-icon-btn.is-muted .lb-icon-vol-on { display: none; }
  .lb-sheet-icon-btn.is-muted .lb-icon-vol-off { display: block; }
  .lb-sheet-volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: min(58vw, 190px);
    height: 32px;
    border-radius: 9999px;
    background: transparent;
    cursor: pointer;
  }
  .lb-sheet-volume-slider::-webkit-slider-runnable-track {
    height: 5px;
    border-radius: 9999px;
    background: linear-gradient(to right,
      rgba(255,90,205,0.9) 0%,
      rgba(255,90,205,0.9) var(--vol, 100%),
      rgba(255,255,255,0.18) var(--vol, 100%),
      rgba(255,255,255,0.18) 100%);
  }
  .lb-sheet-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    margin-top: -6.5px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 2px 10px rgba(0,0,0,0.45), 0 0 12px rgba(255,80,200,0.34);
  }
  .lb-sheet-volume-slider::-moz-range-track {
    height: 5px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.18);
  }
  .lb-sheet-volume-slider::-moz-range-progress {
    height: 5px;
    border-radius: 9999px;
    background: rgba(255,90,205,0.9);
  }
  .lb-sheet-volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 9999px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 2px 10px rgba(0,0,0,0.45), 0 0 12px rgba(255,80,200,0.34);
  }
  .lb-sheet-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 0.32rem;
  }
  .lb-sheet-action {
    min-width: 0;
    min-height: 62px;
    border: 0;
    border-radius: 0.72rem;
    background: transparent;
    color: rgba(255,245,252,0.88);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.36rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
    transition: background 0.16s ease, transform 0.12s ease;
  }
  .lb-sheet-action:hover,
  .lb-sheet-action:focus-visible {
    background: rgba(255,255,255,0.08);
  }
  .lb-sheet-action svg {
    width: 20px;
    height: 20px;
    display: block;
  }
  .lb-sheet-action .lb-icon-fs-exit { display: none; }
  .lb-sheet-action.is-fullscreen .lb-icon-fs-enter { display: none; }
  .lb-sheet-action.is-fullscreen .lb-icon-fs-exit { display: block; }
  .lb-sheet-action:active,
  .lb-sheet-icon-btn:active {
    transform: scale(0.97);
  }
  .lb-sheet-action:focus-visible,
  .lb-sheet-icon-btn:focus-visible,
  .lb-sheet-volume-slider:focus-visible {
    outline: 2px solid rgba(255,140,225,0.82);
    outline-offset: 2px;
  }
  .watch-footer { padding: 2.5rem 1.25rem 2rem; gap: 0.9rem; }
  .footer-contact, .footer-legal-links, .footer-copy { font-size: 0.72rem; }
  .cookie-banner { padding: 0.9rem 1rem; }
}

@media (max-width: 420px) {
  .lb-controls {
    padding-left: 0.45rem;
    padding-right: 0.45rem;
  }
  .lb-btn-row {
    gap: 0.18rem;
  }
  .lb-btn { width: 46px; height: 46px; }
  .lb-btn svg { width: 18px; height: 18px; }
  .lb-time { min-width: 58px; font-size: 0.56rem; }
}
