/* ================================================================
   THE GOONER LOUNGE — Design System v03.0
   Private · Neon · Immersive
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Rajdhani:wght@600;700&family=VT323&display=swap');

:root {
  --neon-purple: #a78bfa;
  --neon-pink: #ff2d78;
  --neon-cyan: #67e8f9;
  --neon-green: #22ff88;
  --purple: #9146ff;
  --pink: #ff2d78;
  --teal: #00c896;
  --deep-bg: #020104;
  --glass: rgba(8, 6, 22, 0.92);
  --border-glow: rgba(167, 139, 250, 0.42);
  --text: #f0e9ff;
  --text-muted: #b8a8ff;
  --text-faint: #6a5a8a;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --split-soft: -3px 0 12px rgba(167, 139, 250, 0.9), 3px 0 12px rgba(255, 45, 120, 0.9);
  --nav-h: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--deep-bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

body.void { background: #010008; }

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--neon-cyan); outline-offset: 3px; }

/* ── Atmosphere ── */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(145, 70, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 40%, rgba(255, 45, 120, 0.1), transparent 50%),
    radial-gradient(ellipse 40% 35% at 0% 70%, rgba(103, 232, 249, 0.08), transparent 50%),
    radial-gradient(circle, rgba(145, 70, 255, 0.14) 1px, transparent 1px);
  background-size: auto, auto, auto, 36px 36px;
  opacity: 0.85;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
  animation: orbDrift 40s linear infinite;
  will-change: transform;
}
.orb-1 { width: 920px; height: 920px; background: #a78bfa; top: -400px; left: -300px; animation-duration: 55s; }
.orb-2 { width: 680px; height: 680px; background: #ff2d78; bottom: -250px; right: -200px; animation-duration: 48s; animation-delay: -22s; }
.orb-3 { width: 520px; height: 520px; background: #67e8f9; top: 45%; left: 55%; animation-duration: 35s; animation-delay: -11s; }
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -70px) scale(1.2); }
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='5'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 110px;
  mix-blend-mode: overlay;
}

.scanline {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    transparent 0px,
    transparent 3px,
    rgba(255, 45, 120, 0.045) 3px,
    rgba(255, 45, 120, 0.045) 6px
  );
  animation: scan 4.5s linear infinite;
  opacity: 0.35;
}
@keyframes scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(300%); }
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 55%, rgba(2, 1, 8, 0.88) 100%);
}

/* ── Intro splash ── */
#intro-splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.2s var(--ease);
}
#intro-vid {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 100dvh;
}
.neon-skip {
  position: absolute;
  bottom: max(28px, env(safe-area-inset-bottom));
  right: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(167, 139, 250, 0.35);
  color: rgba(240, 233, 255, 0.7);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: color 0.25s, background 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.neon-skip:hover {
  color: #fff;
  background: rgba(167, 139, 250, 0.18);
  border-color: rgba(167, 139, 250, 0.7);
  box-shadow: 0 0 28px rgba(167, 139, 250, 0.45);
}

/* ── Page ── */
.page {
  position: relative;
  z-index: 10;
  max-width: 920px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 36px) 24px 160px;
}

.section-label {
  font-family: 'VT323', monospace;
  font-size: 1.4rem;
  letter-spacing: 0.28em;
  color: #c4b5fd;
  margin: 56px 0 20px;
  padding-left: 22px;
  position: relative;
  text-shadow: 0 0 22px rgba(167, 139, 250, 0.85);
}
.section-label::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #67e8f9;
  text-shadow: 0 0 12px #67e8f9;
  animation: blink 1.1s infinite;
}
@keyframes blink { 50% { opacity: 0.2; } }

/* ── Hero ── */
.hero-section {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: calc(var(--nav-h) + 48px) 32px 64px;
  overflow: hidden;
  text-align: center;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.28) 1px, transparent 2px);
  background-size: 40px 40px;
  opacity: 0.22;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 90%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 90%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-logo {
  width: clamp(150px, 18vw, 240px);
  height: auto;
  margin: 0 auto 28px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow:
    -18px 0 70px rgba(167, 139, 250, 0.85),
    18px 0 70px rgba(255, 45, 120, 0.8),
    0 0 4px #a78bfa,
    0 36px 100px rgba(0, 0, 0, 0.85);
  animation: logoPulse 4.5s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% {
    box-shadow:
      -18px 0 70px rgba(167, 139, 250, 0.85),
      18px 0 70px rgba(255, 45, 120, 0.8),
      0 0 4px #a78bfa,
      0 36px 100px rgba(0, 0, 0, 0.85);
  }
  50% {
    box-shadow:
      -26px 0 100px rgba(167, 139, 250, 1),
      26px 0 100px rgba(255, 45, 120, 1),
      0 0 10px #ff2d78,
      0 48px 140px rgba(0, 0, 0, 0.92);
  }
}

.hero-byline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(0.78rem, 1.35vw, 0.98rem);
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #9b8ad4;
  margin-bottom: 14px;
  text-shadow: 0 0 24px rgba(167, 139, 250, 0.35);
}

.hero-display {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3.6rem, 11vw, 8.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.88;
  text-transform: uppercase;
  background: linear-gradient(135deg, #e0bbff, #c4b5fd, #a78bfa, #7c3aed, #c4b5fd);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(-6px 0 22px #a78bfa)
    drop-shadow(6px 0 22px #ff2d78)
    drop-shadow(0 0 70px rgba(167, 139, 250, 0.75));
  animation: glitchHero 7s infinite linear, titlePulse 3.2s ease-in-out infinite, gradientFlow 5s ease infinite;
}
@keyframes gradientFlow {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
@keyframes glitchHero {
  0%, 92%, 100% { transform: translate(0); }
  93% { transform: translate(-3px, 2px); }
  95% { transform: translate(4px, -2px); }
  97% { transform: translate(-2px, 3px); }
}
@keyframes titlePulse {
  0%, 100% {
    filter:
      drop-shadow(-6px 0 22px #a78bfa)
      drop-shadow(6px 0 22px #ff2d78)
      drop-shadow(0 0 70px rgba(167, 139, 250, 0.75));
  }
  50% {
    filter:
      drop-shadow(-10px 0 36px #a78bfa)
      drop-shadow(10px 0 36px #ff2d78)
      drop-shadow(0 0 100px rgba(255, 45, 120, 0.55));
  }
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 14px;
  font-family: 'VT323', monospace;
  font-size: 1.05rem;
  color: #67e8f9;
  margin: 28px 0 36px;
  text-shadow: 0 0 16px rgba(103, 232, 249, 0.75);
}
.meta-dot { color: #ff2d78; font-size: 1.2rem; opacity: 0.85; }
.terminal-line { color: #c4b5fd; }
.hero-heart {
  color: rgba(255, 45, 120, 0.55);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.25s, transform 0.25s, filter 0.25s;
  margin-left: 4px;
}
.hero-heart:hover {
  color: #ff2d78;
  transform: scale(1.25);
  filter: drop-shadow(0 0 10px #ff2d78);
}

/* ── Social app icons (iOS rounded squares, neon glow, no hard border) ── */
.hero-grid-ctas,
.hero-social-icons {
  display: flex;
  gap: 18px 22px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 640px;
  margin: 0 auto;
}

.soc-app-btn {
  --soc-size: 88px;
  display: block;
  width: var(--soc-size);
  height: var(--soc-size);
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
  text-decoration: none;
  border: none;
  outline: none;
  background: transparent;
  position: relative;
  isolation: isolate;
  /* Soft depth + neon — NO hard stroke/border ring */
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(167, 139, 250, 0.38),
    0 0 18px rgba(255, 45, 120, 0.18);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    filter 0.35s var(--ease);
}
.soc-app-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  opacity: 0.7;
}
.soc-app-btn img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center;
  display: block;
  margin: 0 !important;
  border: 0;
  border-radius: inherit;
}
.soc-app-btn:hover {
  transform: translateY(-8px) scale(1.12);
  filter: brightness(1.12) saturate(1.08);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(167, 139, 250, 0.75),
    0 0 36px rgba(255, 45, 120, 0.45),
    0 0 72px rgba(103, 232, 249, 0.22);
}
.soc-app-btn:active { transform: scale(0.96); }

.featured-soc-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 18px;
  margin-top: 18px;
}
.featured-soc-row .soc-app-btn {
  --soc-size: 78px;
  border-radius: 20px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  color: #fff;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), filter 0.35s, background 0.35s;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.btn.full { width: 100%; }
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: scale(0.98); }

.tinder-cta {
  display: flex;
  justify-content: center;
  margin: 8px 0 12px;
}
.tinder-btn {
  background: linear-gradient(135deg, #ff2d78, #ff6b8a);
  color: #fff;
  font-size: 1.2rem;
  padding: 18px 48px;
  box-shadow: 0 0 40px rgba(255, 45, 120, 0.75);
  border: none;
  min-width: 220px;
}
.tinder-btn:hover {
  box-shadow: 0 0 64px rgba(255, 45, 120, 1);
  filter: brightness(1.06);
}

.neon-launch { width: 100%; margin-top: 12px; box-shadow: 0 0 36px currentColor; }
.purple {
  background: linear-gradient(90deg, #6d28d9, #a78bfa);
  color: #fff;
  box-shadow: 0 0 36px rgba(167, 139, 250, 0.55);
}
.cyan {
  background: linear-gradient(90deg, #155e75, #67e8f9);
  color: #020104;
  box-shadow: 0 0 36px rgba(103, 232, 249, 0.45);
}
.purple:hover { box-shadow: 0 0 56px rgba(167, 139, 250, 0.9); }
.cyan:hover { box-shadow: 0 0 56px rgba(103, 232, 249, 0.75); }

.discord-full,
.btn.discord-full {
  background: linear-gradient(135deg, #5865f2, #7289da);
  color: #fff;
  width: 100%;
  box-shadow: 0 0 36px rgba(88, 101, 242, 0.55);
  animation: discordThump 2.8s ease-in-out infinite;
}
.discord-user,
.btn.discord-user {
  background: rgba(88, 101, 242, 0.12);
  color: #c5caff;
  width: 100%;
  border: 1px solid rgba(88, 101, 242, 0.4);
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.2);
}
.discord-user:hover {
  background: rgba(88, 101, 242, 0.22);
  border-color: rgba(88, 101, 242, 0.65);
  color: #fff;
}
@keyframes discordThump {
  0%, 100% { box-shadow: 0 0 28px rgba(88, 101, 242, 0.45); }
  50% { box-shadow: 0 0 48px rgba(88, 101, 242, 0.85); }
}

.chaos-btn {
  background: linear-gradient(90deg, #7c3aed, #a78bfa 50%, #c084fc);
  color: #fff;
  width: 100%;
  box-shadow: 0 0 36px rgba(124, 58, 237, 0.55);
}

.of-btn {
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.25), rgba(233, 30, 99, 0.35));
  border: 1px solid rgba(255, 45, 120, 0.45);
  color: #ff9ab4;
  width: 100%;
  box-shadow: 0 0 28px rgba(255, 45, 120, 0.35);
}
.of-btn:hover {
  color: #fff;
  border-color: rgba(255, 107, 138, 0.8);
  box-shadow: 0 0 48px rgba(255, 45, 120, 0.65);
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.4), rgba(233, 30, 99, 0.5));
}

.submit-btn,
.surprise-core {
  background: linear-gradient(90deg, #ff2d78, #f97316);
  color: #fff;
  font-size: 1.15rem;
  padding: 22px 40px;
  box-shadow: 0 0 48px rgba(255, 45, 120, 0.85);
  border: none;
  width: 100%;
  letter-spacing: 0.1em;
}
.submit-btn:hover,
.surprise-core:hover {
  box-shadow: 0 0 72px rgba(255, 45, 120, 1);
  filter: brightness(1.05);
}
.submit-btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

/* ── Cards ── */
.card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--border-glow);
  border-radius: 26px;
  padding: 40px 32px;
  margin-bottom: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px -20px rgba(0, 0, 0, 0.85);
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.card:hover {
  transform: translateY(-10px);
  border-color: rgba(209, 196, 255, 0.55);
  box-shadow:
    0 40px 100px -16px rgba(167, 139, 250, 0.4),
    0 0 50px rgba(103, 232, 249, 0.12);
}
.card-glow {
  position: absolute;
  inset: -40%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 50% 28%, rgba(167, 139, 250, 0.38), transparent 68%);
  opacity: 0.55;
  transition: opacity 0.5s;
}
.card:hover .card-glow { opacity: 0.9; }
.fire-glow {
  background: radial-gradient(circle at 50% 30%, rgba(255, 45, 120, 0.4), transparent 68%) !important;
}
.pink-glow {
  background: radial-gradient(circle at 50% 30%, rgba(255, 45, 120, 0.35), transparent 68%) !important;
}
.card-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, transparent, var(--neon-purple), var(--neon-pink), transparent);
}
.card-top-line.fire {
  background: linear-gradient(to right, transparent, #ff2d78, #f97316, transparent);
}
.card-top-line.pink {
  background: linear-gradient(to right, transparent, #ff2d78, #ff6b8a, transparent);
}

.neon-card.purple-glow .card-glow {
  background: radial-gradient(circle at 40% 30%, rgba(167, 139, 250, 0.55), transparent 72%);
}
.neon-card.cyan-glow .card-glow {
  background: radial-gradient(circle at 60% 40%, rgba(103, 232, 249, 0.5), transparent 72%);
}

.ai-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.ai-duo .card { margin-bottom: 0; height: 100%; }

.ai-icon {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.35rem;
  margin: 0 auto 18px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.ai-icon.brain {
  background: rgba(167, 139, 250, 0.14);
  border: 2px solid rgba(167, 139, 250, 0.65);
  color: #c4b5fd;
  box-shadow: 0 0 42px rgba(167, 139, 250, 0.55);
}
.ai-icon.vision {
  background: rgba(103, 232, 249, 0.12);
  border: 2px solid rgba(103, 232, 249, 0.65);
  color: #67e8f9;
  box-shadow: 0 0 42px rgba(103, 232, 249, 0.5);
}
.ai-icon.dice {
  background: rgba(124, 58, 237, 0.14);
  border: 2px solid rgba(167, 139, 250, 0.55);
  color: #c4b5fd;
  box-shadow: 0 0 36px rgba(124, 58, 237, 0.45);
}
.ai-icon.fire-icon {
  background: rgba(255, 45, 120, 0.12);
  border: 2px solid rgba(255, 45, 120, 0.55);
  color: #ff6b8a;
  box-shadow: 0 0 42px rgba(255, 45, 120, 0.5);
}
.card:hover .ai-icon { transform: scale(1.08) rotate(4deg); }

.card-name {
  position: relative;
  z-index: 1;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  text-align: center;
}
.card-desc {
  position: relative;
  z-index: 1;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #d1c4ff;
  text-align: center;
  max-width: 380px;
  margin: 0 auto 22px;
  opacity: 0.92;
}

/* Decorative status pills — small, non-clickable */
.card-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 auto 16px;
  pointer-events: none;
  user-select: none;
  cursor: default;
}
.card-tag.live,
.card-tag.live-pulse {
  background: rgba(255, 45, 120, 0.14);
  color: #ff6b8a;
  border: 1px solid rgba(255, 45, 120, 0.32);
  display: flex;
  width: fit-content;
}
.card-tag.local {
  background: rgba(103, 232, 249, 0.12);
  color: #67e8f9;
  border: 1px solid rgba(103, 232, 249, 0.32);
  display: flex;
  width: fit-content;
}
.card-tag.live::before,
.card-tag.live-pulse::before,
.card-tag.local::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  animation: blink 1.6s ease infinite;
}
.card-tag.live-pulse {
  animation: tagPulse 2.4s ease-in-out infinite;
}
@keyframes tagPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 45, 120, 0); }
  50% { box-shadow: 0 0 18px rgba(255, 45, 120, 0.35); }
}

.btn-col {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

/* ── Highlights embed ── */
.hl-embed-card {
  position: relative;
  background: var(--glass);
  border: 1px solid rgba(103, 232, 249, 0.28);
  border-radius: 26px;
  padding: 18px;
  margin-bottom: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px -20px rgba(0, 0, 0, 0.85), 0 0 40px rgba(103, 232, 249, 0.12);
  backdrop-filter: blur(18px);
}
.hl-embed-glow {
  position: absolute;
  inset: -30%;
  pointer-events: none;
  background: radial-gradient(circle at 50% 20%, rgba(103, 232, 249, 0.22), transparent 60%);
}
.hl-embed-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 5;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #67e8f9;
  background: rgba(2, 8, 16, 0.72);
  border: 1px solid rgba(103, 232, 249, 0.4);
  padding: 6px 12px;
  border-radius: 999px;
  pointer-events: none;
  box-shadow: 0 0 18px rgba(103, 232, 249, 0.25);
}
.hl-embed-player {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #050510;
  aspect-ratio: 16 / 9;
  max-height: 420px;
}
.hl-embed-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hl-embed-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(2, 1, 8, 0.75) 0%, transparent 45%);
}
.hl-embed-now {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #f0e9ff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  max-width: 70%;
}
.hl-embed-now-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff2d78;
  box-shadow: 0 0 10px #ff2d78;
  animation: blink 1.2s infinite;
  flex-shrink: 0;
}
.hl-embed-dots {
  position: absolute;
  right: 14px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  gap: 6px;
}
.hl-embed-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hl-embed-dot.active {
  background: #67e8f9;
  box-shadow: 0 0 10px #67e8f9;
  transform: scale(1.25);
}
.hl-embed-tap {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
}
.hl-embed-play-icon {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
  text-shadow: 0 0 24px rgba(167, 139, 250, 0.8);
}
.hl-embed-cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding: 4px 6px 2px;
}
.hl-embed-meta {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  color: #9adcf0;
  letter-spacing: 0.08em;
}
.hl-embed-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #e0bbff;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.4);
  background: rgba(167, 139, 250, 0.1);
  transition: all 0.3s var(--ease);
}
.hl-embed-cta:hover {
  color: #fff;
  border-color: rgba(167, 139, 250, 0.75);
  box-shadow: 0 0 28px rgba(167, 139, 250, 0.45);
  transform: translateY(-2px);
}
.hl-embed-cta-arrow { transition: transform 0.25s var(--ease); }
.hl-embed-cta:hover .hl-embed-cta-arrow { transform: translateX(4px); }

/* ── Gooner Feed form (critical: visible + clickable) ── */
.submission-card {
  border-color: rgba(255, 45, 120, 0.35);
  box-shadow: 0 32px 80px -20px rgba(0, 0, 0, 0.85), 0 0 40px rgba(255, 45, 120, 0.12);
}
.sub-form {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
  width: 100%;
  pointer-events: auto;
}
.sub-input {
  position: relative;
  z-index: 5;
  width: 100%;
  display: block;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(12, 8, 28, 0.95);
  border: 1.5px solid rgba(167, 139, 250, 0.45);
  color: #f5f0ff;
  padding: 18px 20px;
  border-radius: 16px;
  font-size: 1.05rem;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
  outline: none;
  pointer-events: auto;
  caret-color: #ff2d78;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 24px rgba(167, 139, 250, 0.12);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.sub-input::placeholder {
  color: rgba(184, 168, 255, 0.45);
  letter-spacing: 0.04em;
}
.sub-input:hover {
  border-color: rgba(196, 181, 253, 0.65);
  background: rgba(18, 12, 40, 0.98);
}
.sub-input:focus {
  border-color: #ff6b8a;
  background: rgba(20, 12, 42, 1);
  box-shadow:
    0 0 0 4px rgba(255, 45, 120, 0.18),
    0 0 36px rgba(255, 45, 120, 0.28);
}
.sub-msg {
  position: relative;
  z-index: 5;
  font-size: 0.92rem;
  text-align: center;
  min-height: 22px;
  color: #ff6b8a;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.sub-msg.ok {
  color: var(--neon-green);
  text-shadow: 0 0 12px rgba(34, 255, 136, 0.45);
}

.sub-feed {
  width: 100%;
  margin-top: 8px;
}
.sub-buttons-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.sub-user-btn {
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.14), rgba(145, 70, 255, 0.14));
  border: 1px solid rgba(255, 45, 120, 0.32);
  color: var(--text);
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: all 0.3s var(--ease);
}
.sub-user-btn:hover {
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.28), rgba(145, 70, 255, 0.28));
  border-color: rgba(255, 45, 120, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 45, 120, 0.22);
}
.sub-user-btn .sub-count {
  font-size: 0.78rem;
  opacity: 0.55;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Surprise ── */
.surprise-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 36px 0 12px;
  padding: 28px 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 45, 120, 0.22);
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 45, 120, 0.12), transparent 60%), rgba(8, 4, 16, 0.55);
}
.warning {
  color: #ff6b8a;
  font-family: 'VT323', monospace;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-align: center;
  text-shadow: 0 0 16px rgba(255, 45, 120, 0.7);
}
.keyboard-hint {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
}
.keyboard-hint .key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.6rem;
  padding: 2px 8px;
  margin: 0 4px;
  border-radius: 6px;
  border: 1px solid rgba(167, 139, 250, 0.4);
  background: rgba(167, 139, 250, 0.12);
  color: #c4b5fd;
  font-weight: 700;
}

/* ── Featured / Vault Zero ── */
.featured-card {
  text-align: center;
  border-color: rgba(255, 45, 120, 0.32);
  animation: featuredPulse 4.5s ease-in-out infinite;
}
@keyframes featuredPulse {
  0%, 100% { box-shadow: 0 32px 80px -20px rgba(0, 0, 0, 0.85), 0 0 30px rgba(255, 45, 120, 0.12); }
  50% { box-shadow: 0 32px 90px -16px rgba(255, 45, 120, 0.28), 0 0 50px rgba(255, 45, 120, 0.2); }
}
.avatar-ring,
.avatar-ring-lg {
  position: relative;
  z-index: 1;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 4px;
  margin: 8px auto 18px;
  background: conic-gradient(#ff2d78 0deg, #ff6b8a 90deg, #a78bfa 180deg, #ff2d78 360deg);
  box-shadow:
    -12px 0 36px rgba(145, 70, 255, 0.7),
    12px 0 36px rgba(255, 45, 120, 0.7),
    0 0 60px rgba(145, 70, 255, 0.25);
  animation: spinRing 5s linear infinite;
}
@keyframes spinRing { to { transform: rotate(360deg); } }
.avatar-ring img,
.avatar-ring-lg .card-img,
.card-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  animation: spinRingCounter 5s linear infinite;
}
@keyframes spinRingCounter { to { transform: rotate(-360deg); } }
.featured-card .card-name {
  text-shadow: var(--split-soft);
  font-size: 1.7rem;
}
.featured-btns { margin-top: 8px; }

.mad-card { text-align: center; }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Site nav overrides (works with nav.js injection) ── */
.site-nav {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000 !important;
  height: var(--nav-h) !important;
  background: rgba(3, 2, 12, 0.92) !important;
  backdrop-filter: blur(22px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.4) !important;
  border-bottom: 1px solid rgba(167, 139, 250, 0.28) !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55), inset 0 -1px 0 rgba(145, 70, 255, 0.18) !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 18px !important;
}
.nav-logo-link {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}
.nav-logo-img {
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  object-fit: cover !important;
  box-shadow:
    0 0 18px rgba(145, 70, 255, 0.65),
    -2px 0 10px rgba(145, 70, 255, 0.45),
    2px 0 10px rgba(255, 45, 120, 0.4) !important;
}
.nav-logo-text {
  font-family: 'Rajdhani', 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: #f0e9ff;
  text-shadow: 0 0 18px rgba(167, 139, 250, 0.55);
  white-space: nowrap;
}
.nav-links {
  flex: 1 !important;
  display: flex !important;
  gap: 6px !important;
  margin-left: 18px !important;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-link {
  color: rgba(240, 233, 255, 0.5) !important;
  padding: 8px 14px !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-radius: 999px !important;
  border: 1px solid transparent !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: all 0.25s var(--ease) !important;
}
.nav-link:hover,
.nav-link.is-active {
  color: #fff !important;
  background: rgba(167, 139, 250, 0.16) !important;
  border-color: rgba(167, 139, 250, 0.45) !important;
  box-shadow: 0 0 18px rgba(167, 139, 250, 0.35) !important;
  text-shadow: var(--split-soft) !important;
}
.nav-join-btn {
  background: linear-gradient(90deg, #a78bfa, #ff2d78) !important;
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-decoration: none !important;
  box-shadow: 0 0 28px rgba(255, 45, 120, 0.45) !important;
  border: none !important;
  white-space: nowrap !important;
  transition: transform 0.25s, box-shadow 0.25s !important;
}
.nav-join-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 0 40px rgba(255, 45, 120, 0.75) !important;
}

/* ── Responsive ── */
body.gl-has-nav .page { padding-top: 28px; }
body.gl-has-nav .hero-section { padding-top: 28px; }
.form-input, .sub-input, input[type="text"], input[type="email"], input[type="password"], input[type="url"], textarea {
  font-size: 16px;
}

@media (max-width: 768px) {
  :root { --nav-h: 58px; }
  .page { padding: calc(var(--nav-h) + 24px) 16px 130px; }
  body.gl-has-nav .page { padding: 20px 16px 130px; }
  body.gl-has-nav .hero-section { padding: 20px 18px 44px; }
  .hero-section { padding: calc(var(--nav-h) + 28px) 18px 44px; }
  .hero-logo { width: 150px; }
  .hero-display { font-size: clamp(3rem, 13vw, 4.8rem); }
  .hero-byline { letter-spacing: 0.22em; font-size: 0.72rem; }
  .ai-duo { grid-template-columns: 1fr; gap: 18px; }
  .card { padding: 30px 20px; }
  .soc-app-btn { --soc-size: 74px; border-radius: 18px; }
  .featured-soc-row .soc-app-btn { --soc-size: 66px; border-radius: 16px; }
  .hero-social-icons { gap: 14px; }
  .nav-logo-text { display: none; }
  .avatar-ring-lg { width: 120px; height: 120px; }
  .hl-embed-player { max-height: 260px; }
  .btn, .neon-launch, .submit-btn, .surprise-core { padding: 16px 24px; font-size: 0.95rem; }
  .section-label { font-size: 1.15rem; margin: 42px 0 16px; letter-spacing: 0.18em; }
}

@media (max-width: 480px) {
  .page { padding: calc(var(--nav-h) + 18px) 14px 120px; }
  .hero-section { padding: calc(var(--nav-h) + 20px) 14px 36px; }
  .soc-app-btn { --soc-size: 64px; border-radius: 16px; }
  .featured-soc-row .soc-app-btn { --soc-size: 58px; border-radius: 14px; }
  .hero-meta { font-size: 0.9rem; gap: 8px; }
  .sub-input { padding: 16px 16px; font-size: 1rem; }
  .card-name { font-size: 1.3rem; }
}

@media (min-width: 960px) {
  .soc-app-btn { --soc-size: 96px; border-radius: 24px; }
  .featured-soc-row .soc-app-btn { --soc-size: 84px; border-radius: 22px; }
  .hero-social-icons { gap: 22px 26px; }
}

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

/* Text-like links should look tappable without turning chrome into buttons */
a, button, [role="button"] { cursor: pointer; touch-action: manipulation; }
p a, li a, footer a, .gateway-footer a {
  color: var(--neon-cyan, #67e8f9);
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-decoration-color: rgba(103, 232, 249, 0.5);
}
p a:hover, li a:hover, footer a:hover, .gateway-footer a:hover {
  color: #fff;
  text-decoration-color: var(--neon-pink, #ff2d78);
}
