/* ============================================
   ROOT — ACTUAL TDS PALETTE
   ============================================ */
:root {
  --void: #000000;
  --void-05: #0d0d0d;
  --void-10: #1a1a1a;
  --void-15: #222;
  --ash: #333;
  --smoke: #777;
  --bone: #ccc;
  --white: #eee;

  --pink: #ff0066;
  --cyan: #00ffee;
  --green: #aaff00;
  --yellow: #ffcc00;
  --orange: #ff6600;
  --magenta: #ff00ff;

  --font-title: 'Rubik Glitch', cursive;
  --font-heading: 'Unbounded', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'Syne', sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--void);
  color: var(--bone);
  font-family: var(--font-body);
  overflow-x: hidden;
  max-width: 100vw;
}

::selection { background: var(--pink); color: var(--void); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--pink); }

/* ============================================
   SPLASH SCREEN
   ============================================ */
#splash {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--void);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

#splash-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--void);
}

#splash.done {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

/* Scanline overlay — global */
.scanlines {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.06) 2px,
    rgba(0,0,0,0.06) 4px
  );
  pointer-events: none;
  z-index: 99998;
}

/* ============================================
   MAIN SITE — hidden until splash ends
   ============================================ */
#site {
  opacity: 0;
  transition: opacity 1s ease;
}
#site.visible { opacity: 1; position: relative; }

/* ============================================
   NAV — Freakshow-inspired minimal
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.8rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: difference;
}

.nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
  transition: filter 0.3s;
}

.nav-brand:hover .nav-logo {
  filter: brightness(1.3);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--pink); }

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 4px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ============================================
   HERO — Big, dark, confrontational
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: transparent;
}

/* Subtle ambient neon glow behind */
.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,0,102,0.06) 0%, rgba(255,0,255,0.03) 30%, transparent 70%);
  pointer-events: none;
}

.storm-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}

.hero-logo {
  width: clamp(400px, 60vw, 900px);
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: brightness(1.05);
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(5rem, 14vw, 12rem);
  color: var(--white);
  letter-spacing: 8px;
  line-height: 0.85;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--pink);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--smoke);
  letter-spacing: 4px;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

/* ============================================
   NEON DIVIDER
   ============================================ */
.neon-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--magenta), var(--cyan), var(--green), var(--yellow), transparent);
  opacity: 0.7;
}

.neon-line.thin {
  height: 1px;
  opacity: 0.3;
}

/* ============================================
   SECTION STYLING
   ============================================ */
section {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ash);
}

.label-pink { color: var(--pink); }
.label-cyan { color: var(--cyan); }
.label-green { color: var(--green); }
.label-yellow { color: var(--yellow); }

/* ============================================
   SHOWS — Freakshow product grid style
   ============================================ */
.shows-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.show-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--ash);
  min-height: 300px;
  transition: background 0.4s ease;
}

.show-block:hover {
  background: var(--void-05);
}

.show-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.show-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.show-visual img {
  max-width: 280px;
  max-height: 280px;
  object-fit: contain;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.show-block:hover .show-visual img {
  transform: scale(1.05);
  filter: saturate(1.3);
}

.show-status {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.status-live { color: var(--green); }
.status-coming { color: var(--yellow); }
.status-special { color: var(--cyan); }

.show-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.show-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--smoke);
  max-width: 500px;
}

.show-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--smoke);
  margin-top: 1.5rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--ash);
  transition: all 0.3s;
  width: fit-content;
}

.show-link:hover {
  color: var(--pink);
  border-color: var(--pink);
}

/* ============================================
   TDS FEATURE — The announcement
   ============================================ */
.tds-feature {
  padding: 8rem 3rem;
  max-width: 100%;
  background: var(--void-05);
  border-top: 1px solid var(--ash);
  border-bottom: 1px solid var(--ash);
  position: relative;
  overflow: hidden;
}

.tds-feature::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,0,102,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.tds-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.tds-premieres {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--yellow);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.tds-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 2.5rem;
}

.tds-title span {
  display: block;
  background: linear-gradient(90deg, var(--pink), var(--magenta), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tds-logline {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 2;
  color: var(--bone);
  max-width: 750px;
  margin-bottom: 3rem;
}

.tds-meta {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tds-meta-item {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tds-meta-label { color: var(--smoke); }
.tds-meta-value { color: var(--white); display: block; margin-top: 0.3rem; font-size: 0.75rem; }

/* Cast grid — compact */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--void-10);
  border: 1px solid var(--ash);
  margin-top: 2rem;
}

.cast-item {
  padding: 1rem 1.5rem;
  background: var(--void-05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.cast-item:hover { background: var(--void-10); }

.cast-char {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--cyan);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cast-actor {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--smoke);
}

.cast-featured {
  grid-column: span 2;
  background: var(--void);
  border-left: 2px solid var(--pink);
}

.cast-featured .cast-char {
  color: var(--pink);
  font-size: 0.7rem;
}

.cast-featured .cast-actor {
  color: var(--white);
  font-size: 0.9rem;
}

/* ============================================
   WIRELAND RANCH FEATURE
   ============================================ */
.wireland-ranch-feature {
  padding: 8rem 3rem;
  max-width: 100%;
  background: var(--void-05);
  border-top: 1px solid var(--ash);
  border-bottom: 1px solid var(--ash);
  position: relative;
  overflow: hidden;
}

.wireland-ranch-feature::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(170,255,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.wireland-ranch-feature .tds-premieres {
  color: var(--green);
}

/* ============================================
   LORE FEATURE
   ============================================ */
.lore-feature {
  padding: 8rem 3rem;
  max-width: 100%;
  background: var(--void-05);
  border-top: 1px solid var(--ash);
  border-bottom: 1px solid var(--ash);
  position: relative;
  overflow: hidden;
}

.lore-feature::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,0,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.lore-feature .tds-title span {
  background: linear-gradient(90deg, var(--magenta), var(--cyan), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lore-feature .show-link {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--smoke);
  margin-top: 1.5rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--ash);
  transition: all 0.3s;
  width: fit-content;
  display: inline-block;
}

.lore-feature .show-link:hover {
  color: var(--pink);
  border-color: var(--pink);
}

/* ============================================
   BLRRB BANNER — in-universe, playful
   ============================================ */
.blrrb-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 3rem;
  background: var(--void-05);
  border-top: 1px solid var(--ash);
  border-bottom: 1px solid var(--ash);
  transition: background 0.3s;
}

.blrrb-strip:hover { background: var(--void-10); }

.blrrb-logo-link {
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}

.blrrb-logo-link:hover {
  opacity: 0.8;
}

.blrrb-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.blrrb-logo-link:hover .blrrb-logo-img {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.blrrb-text-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--smoke);
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.blrrb-text-link:hover {
  color: var(--pink);
}

/* ============================================
   ABOUT / TRANSMISSION
   ============================================ */
.transmission {
  text-align: center;
  padding: 7rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.transmission p {
  font-size: 1rem;
  line-height: 2.2;
  color: var(--bone);
}

.transmission em {
  color: var(--pink);
  font-style: normal;
}

/* ============================================
   FOOTER — Freakshow-style
   ============================================ */
.listen-bar {
  padding: 4rem 3rem;
  border-top: 1px solid var(--ash);
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.listen-col h4 {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--smoke);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.listen-col a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--bone);
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color 0.2s;
}

.listen-col a:hover { color: var(--pink); }

footer {
  padding: 2rem 3rem;
  border-top: 1px solid var(--ash);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--smoke);
  letter-spacing: 2px;
}

.footer-credit { color: var(--smoke); }
.footer-credit a { color: var(--cyan); text-decoration: none; }
.footer-credit a:hover { color: var(--pink); }
.footer-sig { color: var(--pink); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-hamburger { display: block; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: 200px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    border-left: 1px solid var(--ash);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.7rem; letter-spacing: 3px; }
  section { padding: 4rem 1.5rem; }
  .show-block { grid-template-columns: 1fr; }
  .show-visual { min-height: 200px; }
  .tds-feature { padding: 5rem 1.5rem; }
  .wireland-ranch-feature { padding: 5rem 1.5rem; }
  .lore-feature { padding: 5rem 1.5rem; }
  .cast-grid { grid-template-columns: 1fr; }
  .cast-featured { grid-column: span 1; }
  .listen-bar { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; gap: 0.8rem; text-align: center; }
}
