:root {
  --lime: #cdff00;
  --bg: #000;
}

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

html { scroll-behavior: smooth; }

html, body { background: var(--bg); color: #fff; font-family: 'Archivo', system-ui, sans-serif; }

body { min-height: 100vh; overflow-x: hidden; }

/* ---- cursor glow (desktop only) ---- */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 480px; height: 480px;
  margin: -240px 0 0 -240px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, rgba(205,255,0,0.12) 0%, rgba(205,255,0,0.05) 35%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  body:hover .cursor-glow { opacity: 1; }
}

/* ---- top bar ---- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.2rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
  backdrop-filter: blur(2px);
}
.brand {
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: #fff;
  text-decoration: none;
}
.topnav { display: flex; gap: 1.4rem; }
.topnav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.18s ease;
}
.topnav a:hover { color: var(--lime); }
@media (max-width: 560px) { .topnav { display: none; } }

#fx {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180%;
  height: 180%;
  pointer-events: none;
  z-index: 2;
  display: block;
  mix-blend-mode: screen;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6vh 1.5rem 4vh;
}

.logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
}

.logo {
  position: relative;
  z-index: 1;
  width: clamp(280px, 62vw, 620px);
  height: auto;
  display: block;
  will-change: transform;
}

.name {
  font-weight: 900;
  font-size: clamp(2rem, 7vw, 4.5rem);
  letter-spacing: 0.02em;
}

.tagline {
  margin-top: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  font-size: clamp(0.7rem, 2vw, 1rem);
  color: var(--lime);
}

.genre {
  margin-top: 0.4rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  font-size: clamp(0.65rem, 1.6vw, 0.85rem);
  opacity: 0.6;
}

.socials {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  justify-content: center;
}

.socials a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.55rem 1.1rem;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  transition: all 0.18s ease;
}

.socials a:hover {
  color: var(--bg);
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 24px rgba(205,255,0,0.55);
  transform: translateY(-2px);
}

/* ---- scroll hint ---- */
.scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 7px;
}
.scroll-hint span {
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--lime);
  animation: scrolldot 1.6s ease-in-out infinite;
}
@keyframes scrolldot {
  0% { opacity: 0; transform: translateY(-4px); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; }
}

/* ---- sections ---- */
.section {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(3.5rem, 9vw, 7rem) 1.5rem;
}
.section-head { margin-bottom: 2rem; text-align: center; }
.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.6rem;
}
.section-head h2 {
  font-weight: 900;
  font-size: clamp(1.8rem, 6vw, 3rem);
  letter-spacing: 0.01em;
}

.player, .video {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(205,255,0,0.12), 0 20px 60px rgba(0,0,0,0.6);
}
.video {
  aspect-ratio: 16 / 9;
}
.video iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.stream-links {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.pill {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.3rem;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  transition: all 0.18s ease;
}
.pill:hover {
  color: var(--bg);
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 24px rgba(205,255,0,0.5);
}

/* ---- booking ---- */
#booking { text-align: center; }
.booking-text {
  opacity: 0.7;
  font-size: 1rem;
  letter-spacing: 0.03em;
  margin-bottom: 1.8rem;
}
.cta {
  display: inline-block;
  color: var(--bg);
  background: var(--lime);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.95rem 2.6rem;
  border-radius: 999px;
  transition: all 0.2s ease;
  box-shadow: 0 0 30px rgba(205,255,0,0.35);
}
.cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 46px rgba(205,255,0,0.65);
}

/* ---- reveal on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---- footer ---- */
.foot {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1.5rem 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.foot-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  justify-content: center;
  margin-bottom: 1.6rem;
}
.foot-socials a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  transition: color 0.18s ease;
}
.foot-socials a:hover { color: var(--lime); }
.copy {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  opacity: 0.45;
}

.foot-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.foot-legal a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  transition: color 0.18s ease;
  cursor: pointer;
}
.foot-legal a:hover { color: var(--lime); }

/* ---- embed placeholders (pre-consent) ---- */
.embed-frame { position: relative; }
.embed-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2.5rem 1.5rem;
  min-height: 200px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(205,255,0,0.25);
  border-radius: 14px;
}
.video.embed-frame .embed-placeholder { position: absolute; inset: 0; min-height: 0; }
.embed-placeholder p {
  font-size: 0.85rem;
  opacity: 0.7;
  max-width: 340px;
  line-height: 1.5;
}

/* ---- consent banner ---- */
.consent {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  z-index: 9998;
  width: min(620px, calc(100% - 2rem));
  background: rgba(12,12,12,0.96);
  border: 1px solid rgba(205,255,0,0.3);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
}
.consent[hidden] { display: none; }
.consent-inner { padding: 1.2rem 1.3rem; }
.consent-inner p {
  font-size: 0.82rem;
  line-height: 1.55;
  opacity: 0.85;
  margin-bottom: 1rem;
}
.consent-inner a { color: var(--lime); }
.consent-actions { display: flex; gap: 0.7rem; justify-content: flex-end; flex-wrap: wrap; }
.consent-btn {
  font-family: inherit;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  transition: all 0.18s ease;
}
.consent-btn.decline:hover { border-color: #fff; }
.consent-btn.accept {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--bg);
}
.consent-btn.accept:hover { box-shadow: 0 0 24px rgba(205,255,0,0.55); }

/* ---- legal pages ---- */
.legal {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
}
.legal .back {
  color: var(--lime);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.legal h1 {
  font-weight: 900;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  margin: 1.2rem 0 1.5rem;
}
.legal h2 {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin: 2rem 0 0.6rem;
  color: var(--lime);
}
.legal p, .legal li {
  font-size: 0.92rem;
  line-height: 1.7;
  opacity: 0.85;
}
.legal ul { margin: 0.4rem 0 0 1.2rem; }
.legal a { color: var(--lime); }
.legal .note {
  font-size: 0.82rem;
  opacity: 0.6;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.legal .updated {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .glow, .logo { transform: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint span { animation: none; }
}
