/* ======================================================================================================================
 *
 *   POLAKO PODCAST - MAIN STYLES
 *   Neon tattoo aesthetic: dark base, pink/red/green neon accents, glitch effects
 *   Light theme support with ink-on-paper aesthetic
 *
 * ====================================================================================================================== */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #1E1E1E;
  --bg-card: #252525;
  --neon-pink: #537953;
  --neon-green: #E2BA5B;
  --neon-red: #E2BA5B;
  --neon-cyan: #E2BA5B;
  --text: #E9E9E9;
  --text-dim: #888;
  --nav-bg: rgba(30,30,30,.85);
  --border-subtle: rgba(255,255,255,.05);
  --border-pink: rgba(83,121,83,.15);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --glow-pink: 0 0 10px var(--neon-pink), 0 0 40px var(--neon-pink), 0 0 80px rgba(83,121,83,.3);
  --glow-green: 0 0 10px var(--neon-green), 0 0 40px var(--neon-green), 0 0 80px rgba(226,186,91,.3);
  --glow-red: 0 0 10px var(--neon-red), 0 0 40px var(--neon-red);
  --transition: cubic-bezier(.22,1,.36,1);
  --theme-transition: background .6s ease, color .6s ease, border-color .6s ease, box-shadow .6s ease;
}

/* --- LIGHT THEME --- */
[data-theme="light"] {
  --bg: #E9E9E9;
  --bg-card: #ffffff;
  --text: #1E1E1E;
  --text-dim: #666;
  --nav-bg: rgba(233,233,233,.9);
  --border-subtle: rgba(0,0,0,.08);
  --border-pink: rgba(83,121,83,.25);
  --neon-pink: #3f5b3f;
  --neon-green: #b89840;
  --glow-pink: 0 0 8px rgba(63,91,63,.3), 0 0 20px rgba(63,91,63,.15);
  --glow-green: 0 0 8px rgba(184,152,64,.3), 0 0 20px rgba(184,152,64,.15);
}

[data-theme="light"] .noise {
  opacity: .015;
}

[data-theme="light"] .hero-bg-glow {
  background: radial-gradient(circle, rgba(63,91,63,.08) 0%, transparent 70%);
}

[data-theme="light"] .lang-menu {
  background: var(--bg-card);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

[data-theme="light"] .episode-card {
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

[data-theme="light"] .episode-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.1), 0 0 20px rgba(63,91,63,.08);
}

[data-theme="light"] .about-card {
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

[data-theme="light"] .theater-video {
  box-shadow: 0 0 40px rgba(63,91,63,.1), 0 15px 40px rgba(0,0,0,.15);
}

[data-theme="light"] ::selection {
  background: var(--neon-pink);
  color: #fff;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-pink) var(--bg);
}

/* --- PRELOADER --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s ease;
}

.preloader.done {
  pointer-events: none;
}

.preloader-warp {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity .4s ease, transform .4s ease;
}

.preloader.done .preloader-warp {
  opacity: 0;
  transform: scale(1.5);
}

.preloader-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: preloaderSpin 1.2s linear infinite;
}

.preloader-ring:nth-child(1) {
  width: 100%;
  height: 100%;
  border-top-color: var(--neon-pink);
  border-bottom-color: var(--neon-pink);
  box-shadow: 0 0 15px rgba(83,121,83,.4);
  animation-duration: 1.2s;
}

.preloader-ring:nth-child(2) {
  width: 72%;
  height: 72%;
  border-left-color: var(--neon-green);
  border-right-color: var(--neon-green);
  box-shadow: 0 0 15px rgba(226,186,91,.3);
  animation-duration: 1.6s;
  animation-direction: reverse;
}

.preloader-ring:nth-child(3) {
  width: 44%;
  height: 44%;
  border-top-color: var(--neon-pink);
  border-left-color: var(--neon-green);
  box-shadow: 0 0 10px rgba(83,121,83,.3);
  animation-duration: 2s;
}

@keyframes preloaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
  animation: preloaderPulse 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: .6; }
  50% { opacity: 1; }
}

.preloader-drips {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 1;
}

.preloader-drip-col {
  flex: 1;
  background: var(--bg);
  transform-origin: top;
  transition: transform .5s cubic-bezier(.55,.06,.68,.19);
}

.preloader-drip-col::after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 10%;
  width: 80%;
  height: 50px;
  border-radius: 0 0 50% 50%;
  background: inherit;
}

.preloader.done .preloader-drip-col {
  transform: translateY(100%);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  transition: var(--theme-transition);
}

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

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

/* --- INK CANVAS --- */
#ink-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* --- NAVIGATION --- */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: background .4s, backdrop-filter .4s, padding .4s;
}

.main-nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  padding: .6rem 2rem;
  border-bottom: 1px solid var(--border-pink);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-link {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--neon-pink);
  text-decoration: none;
  text-shadow: var(--glow-pink);
  letter-spacing: 4px;
  transition: text-shadow .3s;
}

.nav-logo-link:hover {
  text-shadow: 0 0 20px var(--neon-pink), 0 0 60px var(--neon-pink), 0 0 120px var(--neon-pink);
}

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: .3rem 0;
  transition: color .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-green);
  box-shadow: var(--glow-green);
  transition: width .4s var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--text);
  padding: .45rem .9rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: border-color .3s, box-shadow .3s;
}

.lang-btn:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 15px rgba(83,121,83,.2);
}

.lang-flag {
  font-size: 1.15rem;
  line-height: 1;
}

.lang-arrow {
  font-size: .65rem;
  transition: transform .3s;
}

.lang-dropdown.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid rgba(83,121,83,.2);
  border-radius: 8px;
  list-style: none;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all .3s var(--transition);
  overflow: hidden;
}

.lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu li {
  padding: .6rem 1rem;
  cursor: pointer;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: background .2s, color .2s;
}

.lang-menu li:hover {
  background: rgba(83,121,83,.1);
  color: var(--neon-pink);
}

.lang-menu li.active {
  color: var(--neon-green);
}

/* Theme Toggle - Tattoo Needle */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
}

.toggle-track {
  width: 52px;
  height: 28px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  position: relative;
  transition: all .5s var(--transition);
  overflow: hidden;
}

[data-theme="light"] .toggle-track {
  background: rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.15);
}

.toggle-ink {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-green));
  opacity: 0;
  transition: opacity .5s;
}

.theme-toggle:hover .toggle-ink {
  opacity: .15;
}

.toggle-needle {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--neon-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  transition: all .5s var(--transition);
  box-shadow: 0 0 12px rgba(83,121,83,.4);
}

.toggle-needle svg {
  transition: transform .5s var(--transition);
}

[data-theme="light"] .toggle-needle {
  left: 26px;
  background: #E2BA5B;
  box-shadow: 0 0 12px rgba(226,186,91,.4);
}

[data-theme="light"] .toggle-needle svg {
  transform: rotate(180deg);
}

/* Language wash transition overlay */
.lang-wash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

.lang-wash-row {
  flex: 1;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-green));
  opacity: 1;
  transform: translateX(-100%);
}

.lang-wash-row::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -15px;
  width: 30px;
  height: 80%;
  border-radius: 0 50% 50% 0;
  background: inherit;
}

/* Paint drip transition overlay */
.paint-drip-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
  display: flex;
}

.paint-drip-col {
  flex: 1;
  position: relative;
  transform: translateY(-100%);
}

.paint-drip-col::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 10%;
  width: 80%;
  height: 40px;
  border-radius: 0 0 50% 50%;
  background: inherit;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text);
  transition: all .3s;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83,121,83,.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseGlow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .6; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: 2rem;
  width: 100%;
}

.logo-container {
  margin-top: 5rem;
  margin-bottom: 2rem;
}

.hero-logo {
  width: min(68vw, 420px);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(83,121,83,.5));
  animation: logoFloat 6s ease-in-out infinite;
  user-select: none;
  -webkit-user-drag: none;
  cursor: pointer;
  transition: filter .4s, transform .4s;
}

/* Random hover effects applied via JS classes */
.hero-logo.fx-glitch {
  animation: logoGlitch .4s steps(4) forwards, logoFloat 6s ease-in-out infinite;
}

.hero-logo.fx-neon-burst {
  filter: drop-shadow(0 0 20px var(--neon-pink)) drop-shadow(0 0 60px var(--neon-green)) drop-shadow(0 0 100px var(--neon-pink)) brightness(1.3);
  transform: scale(1.08);
}

.hero-logo.fx-invert {
  filter: drop-shadow(0 0 30px var(--neon-green)) invert(1) hue-rotate(180deg);
  transform: scale(1.05);
}

.hero-logo.fx-skew {
  transform: skewX(-12deg) skewY(2deg) scale(1.04);
  filter: drop-shadow(0 0 40px var(--neon-red)) drop-shadow(0 0 80px rgba(226,186,91,.3));
}

.hero-logo.fx-pulse-grow {
  animation: logoPulseGrow .5s ease-in-out forwards;
}

@keyframes logoGlitch {
  0% { transform: translate(0); filter: drop-shadow(0 0 30px rgba(83,121,83,.5)); }
  25% { transform: translate(-6px, 3px); filter: drop-shadow(4px 0 0 var(--neon-pink)) drop-shadow(-4px 0 0 var(--neon-green)); }
  50% { transform: translate(4px, -4px); filter: drop-shadow(-3px 0 0 var(--neon-green)) drop-shadow(3px 0 0 var(--neon-red)); }
  75% { transform: translate(-3px, 1px); filter: drop-shadow(2px 0 0 var(--neon-pink)) drop-shadow(-2px 0 0 var(--neon-cyan)); }
  100% { transform: translate(0); filter: drop-shadow(0 0 30px rgba(83,121,83,.5)); }
}

@keyframes logoPulseGrow {
  0% { transform: scale(1); filter: drop-shadow(0 0 30px rgba(83,121,83,.5)); }
  50% { transform: scale(1.15); filter: drop-shadow(0 0 50px var(--neon-pink)) drop-shadow(0 0 100px var(--neon-green)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 30px rgba(83,121,83,.5)); }
}

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

.logo-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Glitch Effect */
.glitch {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  color: var(--text);
  position: relative;
  letter-spacing: 8px;
  line-height: 1;
  animation: glitchText 3s infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  color: var(--neon-pink);
  animation: glitchBefore 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
  color: var(--neon-green);
  animation: glitchAfter 3s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitchBefore {
  0%, 92%, 100% { transform: translate(0); }
  93% { transform: translate(-5px, -2px); }
  95% { transform: translate(5px, 2px); }
  97% { transform: translate(-3px, 1px); }
}

@keyframes glitchAfter {
  0%, 92%, 100% { transform: translate(0); }
  94% { transform: translate(5px, 2px); }
  96% { transform: translate(-5px, -1px); }
  98% { transform: translate(3px, -2px); }
}

.glitch-sub {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  color: var(--neon-pink);
  letter-spacing: 12px;
  text-shadow: var(--glow-pink);
  position: relative;
}

.hero-tagline {
  font-size: 1.6rem;
  color: var(--text-dim);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 4rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s .5s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s .8s both;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: .9rem 2.2rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .3s var(--transition);
}

.btn-neon {
  background: var(--neon-pink);
  color: var(--bg);
  border: none;
  box-shadow: 0 0 15px rgba(83,121,83,.4);
}

.btn-neon:hover {
  box-shadow: 0 0 30px rgba(83,121,83,.6), 0 0 60px rgba(83,121,83,.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.2);
}

.btn-outline:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  box-shadow: 0 0 20px rgba(226,186,91,.2);
  transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  animation: fadeInUp 1s 1.2s both;
}

.scroll-indicator span {
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--neon-pink), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .3; transform: scaleY(.6); }
}

/* --- SECTIONS --- */
.section {
  position: relative;
  z-index: 1;
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section::before {
  content: '';
  display: block;
  width: 40%;
  max-width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-green), transparent);
  margin: 0 auto 4rem;
  opacity: .35;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 6px;
  position: relative;
  display: inline-block;
}

.glitch-hover {
  transition: text-shadow .3s;
}

.glitch-hover:hover {
  animation: glitchQuick .3s;
  text-shadow: var(--glow-pink);
}

@keyframes glitchQuick {
  0% { transform: translate(0); }
  20% { transform: translate(-3px, 2px); }
  40% { transform: translate(3px, -2px); }
  60% { transform: translate(-2px, -1px); }
  80% { transform: translate(2px, 1px); }
  100% { transform: translate(0); }
}

.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-green));
  margin: 1rem auto;
  box-shadow: 0 0 10px rgba(83,121,83,.5);
}

.section-sub {
  color: var(--text-dim);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-top: .5rem;
}

.platform-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2rem;
  padding: 1.25rem;
  border: 1px solid rgba(103,214,124,.22);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(103,214,124,.08), rgba(83,121,83,.04) 42%, rgba(255,255,255,.02));
  box-shadow: 0 24px 60px -42px rgba(0,0,0,.9);
}

.platform-spotlight-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .85rem;
  padding: .35rem;
}

.platform-spotlight-kicker {
  color: #67d67c;
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.platform-spotlight-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  letter-spacing: 2px;
  line-height: .95;
}

.platform-spotlight-text {
  max-width: 42rem;
  color: var(--text-dim);
  font-size: 1rem;
}

.platform-spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: .25rem;
}

.platform-spotlight-embed {
  min-height: 352px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(103,214,124,.12), rgba(10,10,10,.88));
  border: 1px solid rgba(103,214,124,.18);
}

.platform-spotlight-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

[data-theme="light"] .platform-spotlight {
  background: linear-gradient(135deg, rgba(103,214,124,.1), rgba(255,255,255,.96) 58%);
  box-shadow: 0 22px 48px -36px rgba(0,0,0,.24);
}

[data-theme="light"] .platform-spotlight-embed {
  background: linear-gradient(135deg, rgba(103,214,124,.1), rgba(255,255,255,.95));
  box-shadow: 0 18px 36px rgba(0,0,0,.06);
}

/* --- EPISODES --- */
.episodes-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.episode-card {
  display: flex;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all .4s var(--transition);
  opacity: 0;
  transform: translateY(40px);
}

.episode-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.episode-card:hover {
  border-color: rgba(83,121,83,.3);
  box-shadow: 0 10px 40px rgba(0,0,0,.4), 0 0 30px rgba(83,121,83,.1);
  transform: translateY(-4px);
}

.episode-card:hover .episode-thumb img {
  transform: scale(1.08);
}

.episode-card:hover .episode-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.episode-thumb {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  min-height: 160px;
  overflow: hidden;
}

.episode-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--transition);
}

.episode-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.8);
  width: 56px;
  height: 56px;
  background: var(--neon-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .3s var(--transition);
  box-shadow: 0 0 20px rgba(83,121,83,.5);
}

.episode-play::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--bg);
  margin-left: 3px;
}

.episode-num {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(30,30,30,.8);
  color: var(--neon-green);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: .2rem .6rem;
  border-radius: 4px;
  letter-spacing: 2px;
}

.episode-info {
  padding: 1.5rem 1.5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.episode-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: .4rem;
  transition: color .3s;
}

.episode-card:hover .episode-title {
  color: var(--neon-pink);
}

.episode-meta {
  font-size: .8rem;
  color: var(--text-dim);
  margin-bottom: .8rem;
  display: flex;
  gap: 1rem;
}

.episode-meta span {
  display: flex;
  align-items: center;
  gap: .3rem;
}

.episode-desc {
  font-size: .9rem;
  color: var(--text-dim);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- INLINE THEATER MODE --- */
.episode-card.theater-active {
  flex-direction: column;
  border-color: var(--neon-pink);
  box-shadow: 0 0 60px rgba(83,121,83,.15), 0 20px 60px rgba(0,0,0,.3);
  transform: none;
  transition: all .5s var(--transition);
}

.episode-card.theater-active .episode-thumb {
  display: none;
}

.episode-card.theater-active .episode-info {
  padding: 1.5rem;
}

.theater-inline {
  width: 100%;
  overflow: hidden;
  animation: theaterExpand .5s var(--transition) both;
  transition: opacity .3s ease, max-height .4s ease;
  background: linear-gradient(180deg, rgba(83,121,83,.08), rgba(30,30,30,.14));
}

@keyframes theaterExpand {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 4000px;
    opacity: 1;
  }
}

.theater-inline-media {
  display: grid;
  grid-template-columns: 1fr 300px;
  grid-template-rows: auto auto;
  gap: .75rem;
  padding: 1rem;
  align-items: start;
}

.theater-inline-panel {
  min-width: 0;
  background: rgba(12,12,12,.55);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}

[data-theme="light"] .theater-inline-panel {
  background: rgba(255,255,255,.9);
  border-color: rgba(0,0,0,.08);
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.theater-inline-panel-youtube {
  grid-column: 1;
  grid-row: 1 / -1;
  border-color: rgba(255,84,84,.2);
}

.theater-inline-panel-spotify {
  grid-column: 2;
  grid-row: 1;
  border-color: rgba(30,215,96,.2);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-self: start;
}

.theater-inline-panel-spotify .theater-inline-provider {
  color: #1DB954;
}

.theater-inline-video-spotify {
  flex: 0 0 auto;
  min-height: 0;
  background: #121212;
}

.theater-inline-video-spotify iframe {
  width: 100%;
  height: 352px;
  min-height: 352px;
  border: none;
  display: block;
  border-radius: 0;
  background: #121212;
}

.theater-inline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1rem;
  background: rgba(255,255,255,.02);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

[data-theme="light"] .theater-inline-head {
  background: rgba(0,0,0,.02);
  border-bottom-color: rgba(0,0,0,.06);
}

.theater-inline-provider-group {
  display: flex;
  flex-direction: column;
  gap: .12rem;
}

.theater-inline-provider {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 1.5px;
}

.theater-inline-panel-youtube .theater-inline-provider {
  color: #ff7070;
}

.theater-inline-kind {
  color: var(--text-dim);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.theater-inline-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .48rem .82rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  text-decoration: none;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: border-color .3s ease, color .3s ease, background .3s ease, transform .3s ease;
}

.theater-inline-open:hover,
.theater-inline-open:focus-visible {
  color: var(--neon-pink);
  border-color: rgba(83,121,83,.45);
  background: rgba(83,121,83,.08);
  transform: translateY(-1px);
}

.theater-inline-video {
  width: 100%;
  background: var(--bg-card);
  overflow: hidden;
}

.theater-inline-video-youtube {
  aspect-ratio: 16/9;
}

.theater-inline-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.theater-inline-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .35rem 1rem 1rem;
}

.theater-inline-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--neon-pink);
}

.theater-inline-close {
  background: none;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.theater-inline-close:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  box-shadow: 0 0 15px rgba(83,121,83,.3);
  transform: rotate(90deg);
}

/* --- SHOW NOTES --- */
.theater-show-notes-fullwidth {
  padding: 0 1rem 1rem;
  width: 100%;
}

.theater-show-notes-area {
  padding: .6rem .8rem;
}

/* Separate button block under Spotify */
.theater-show-notes-btn-separate {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}

/* Big button inside Spotify panel */
.theater-show-notes-btn-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  height: 100%;
  min-height: 80px;
  padding: 1.2rem 1rem;
  background: linear-gradient(135deg, rgba(83,121,83,.15), rgba(226,186,91,.08));
  border: 1px solid rgba(83,121,83,.3);
  border-radius: 12px;
  color: var(--neon-pink);
  font-family: var(--font-display);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .3s, border-color .3s, box-shadow .4s, transform .3s var(--transition);
}

.show-notes-btn-icon {
  font-size: 1.6rem;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(83,121,83,.4));
  transition: transform .3s var(--transition), filter .3s;
}

.show-notes-btn-label {
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.show-notes-btn-arrow {
  font-size: .75rem;
  transition: transform .3s var(--transition);
}

.theater-show-notes-btn-big::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-green), var(--neon-pink));
  background-size: 200% 200%;
  opacity: 0;
  z-index: -1;
  transition: opacity .4s;
  animation: shinyBorderSpin 3s linear infinite;
}

@keyframes shinyBorderSpin {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.theater-show-notes-btn-big:hover {
  background: linear-gradient(135deg, rgba(83,121,83,.22), rgba(226,186,91,.12));
  border-color: rgba(83,121,83,.5);
  box-shadow: 0 0 20px rgba(83,121,83,.3), 0 0 40px rgba(83,121,83,.1), inset 0 0 20px rgba(83,121,83,.05);
  transform: translateY(-2px);
}

.theater-show-notes-btn-big:hover::before {
  opacity: .3;
}

.theater-show-notes-btn-big:hover .show-notes-btn-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 12px rgba(83,121,83,.6));
}

.theater-show-notes-btn-big[aria-expanded="true"] {
  background: linear-gradient(135deg, rgba(83,121,83,.25), rgba(226,186,91,.15));
  border-color: var(--neon-pink);
  box-shadow: var(--glow-pink), inset 0 0 30px rgba(83,121,83,.08);
}

.theater-show-notes-btn-big[aria-expanded="true"]::before {
  opacity: .4;
}

.theater-show-notes-btn-big[aria-expanded="true"] .show-notes-btn-arrow {
  transform: rotate(180deg);
}

/* Shiny burst on click */
.theater-show-notes-btn-big.show-notes-burst {
  animation: showNotesBurst .6s ease-out;
}

.theater-show-notes-btn-big.show-notes-burst::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83,121,83,.5), rgba(226,186,91,.3), transparent);
  animation: burstRipple .6s ease-out forwards;
  pointer-events: none;
}

@keyframes showNotesBurst {
  0% { transform: scale(1); }
  15% { transform: scale(.96); }
  30% { transform: scale(1.04); box-shadow: 0 0 30px rgba(83,121,83,.5), 0 0 60px rgba(226,186,91,.3), 0 0 90px rgba(83,121,83,.15); }
  100% { transform: scale(1); }
}

@keyframes burstRipple {
  0% { width: 0; height: 0; opacity: .6; transform: translate(-50%, -50%); }
  100% { width: 300px; height: 300px; opacity: 0; transform: translate(-50%, -50%); }
}

/* Standard button (fallback) */
.theater-show-notes-btn:not(.theater-show-notes-btn-big) {
  width: 100%;
  padding: .7rem 1rem;
  background: rgba(83,121,83,.12);
  border: 1px solid rgba(83,121,83,.25);
  border-radius: 10px;
  color: var(--neon-pink);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background .3s, border-color .3s, box-shadow .3s, transform .3s var(--transition);
}

.theater-show-notes-btn:not(.theater-show-notes-btn-big):hover {
  background: rgba(83,121,83,.2);
  border-color: rgba(83,121,83,.45);
  box-shadow: 0 0 15px rgba(83,121,83,.25), 0 0 30px rgba(83,121,83,.1);
  transform: translateY(-1px);
}

.theater-show-notes-btn[aria-expanded="true"]:not(.theater-show-notes-btn-big) {
  background: rgba(83,121,83,.18);
  border-color: var(--neon-pink);
  box-shadow: var(--glow-pink);
}

.theater-show-notes-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s var(--transition), opacity .4s ease;
  opacity: 0;
}

.theater-show-notes-dropdown.open {
  max-height: 3000px;
  opacity: 1;
  overflow-y: auto;
}

.show-notes-content {
  padding: .8rem 0 .4rem;
}

.show-notes-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--neon-green);
  margin-bottom: .8rem;
}

.show-note-item {
  display: flex;
  gap: .8rem;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s ease, transform .4s var(--transition), background .3s;
}

.theater-show-notes-dropdown.open .show-note-item {
  opacity: 1;
  transform: translateY(0);
}

.theater-show-notes-dropdown.open .show-note-item:nth-child(1) { transition-delay: .05s; }
.theater-show-notes-dropdown.open .show-note-item:nth-child(2) { transition-delay: .1s; }
.theater-show-notes-dropdown.open .show-note-item:nth-child(3) { transition-delay: .15s; }
.theater-show-notes-dropdown.open .show-note-item:nth-child(4) { transition-delay: .2s; }
.theater-show-notes-dropdown.open .show-note-item:nth-child(5) { transition-delay: .25s; }
.theater-show-notes-dropdown.open .show-note-item:nth-child(6) { transition-delay: .3s; }
.theater-show-notes-dropdown.open .show-note-item:nth-child(7) { transition-delay: .35s; }
.theater-show-notes-dropdown.open .show-note-item:nth-child(8) { transition-delay: .4s; }

.show-note-item:hover {
  background: rgba(83,121,83,.06);
  border-radius: 6px;
}

.show-note-item:last-child {
  border-bottom: none;
}

.show-note-timestamp {
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--neon-pink);
  white-space: nowrap;
  min-width: 3.2rem;
  padding-top: .15rem;
  transition: color .3s;
}

.show-note-item:hover .show-note-timestamp {
  text-shadow: 0 0 8px rgba(83,121,83,.3);
}

.show-note-body {
  flex: 1;
  min-width: 0;
}

.show-note-text {
  color: var(--text);
  font-size: .88rem;
  line-height: 1.5;
}

.show-note-subtext {
  color: var(--text-dim);
  font-size: .82rem;
  margin-top: .3rem;
  line-height: 1.4;
  font-style: italic;
}

.show-note-image-trigger {
  display: inline-flex;
  max-width: 100%;
  margin-top: .5rem;
  padding: 0;
  background: none;
  border: none;
  border-radius: 10px;
  cursor: zoom-in;
}

.show-note-image-trigger:focus-visible {
  outline: 2px solid var(--neon-pink);
  outline-offset: 4px;
}

.show-note-image {
  display: block;
  max-width: 100%;
  max-height: 200px;
  border-radius: 8px;
  margin-top: 0;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color .3s, box-shadow .3s, transform .3s var(--transition);
}

.show-note-image-trigger:hover .show-note-image,
.show-note-image-trigger:focus-visible .show-note-image {
  border-color: rgba(83,121,83,.3);
  box-shadow: 0 0 20px rgba(83,121,83,.15);
  transform: scale(1.02);
}

body.show-note-lightbox-open {
  overflow: hidden;
}

.show-note-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(6,6,6,.84);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.show-note-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.show-note-lightbox-dialog {
  position: relative;
  width: min(92vw, 1040px);
  max-height: 90vh;
  padding: 1rem 1rem .85rem;
  border-radius: 18px;
  background: rgba(18,18,18,.96);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 80px rgba(0,0,0,.45), 0 0 40px rgba(83,121,83,.12);
}

.show-note-lightbox-image {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: calc(90vh - 4.75rem);
  object-fit: contain;
  border-radius: 12px;
  background: #121212;
}

.show-note-lightbox-caption {
  margin-top: .7rem;
  color: var(--text-dim);
  font-size: .9rem;
  text-align: center;
}

.show-note-lightbox-close {
  position: absolute;
  top: .7rem;
  right: .7rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(10,10,10,.72);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color .25s ease, color .25s ease, transform .25s ease, background .25s ease;
}

.show-note-lightbox-close:hover,
.show-note-lightbox-close:focus-visible {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  background: rgba(24,24,24,.92);
  transform: scale(1.04);
  outline: none;
}

.show-notes-outro {
  margin-top: 1rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--text-dim);
  font-size: .85rem;
  line-height: 1.6;
  font-style: italic;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease .35s, transform .4s var(--transition) .35s;
}

.theater-show-notes-dropdown.open .show-notes-outro {
  opacity: 1;
  transform: translateY(0);
}

[data-theme="light"] .theater-show-notes-btn {
  background: rgba(63,91,63,.08);
  border-color: rgba(63,91,63,.2);
}

[data-theme="light"] .theater-show-notes-btn-big {
  background: linear-gradient(135deg, rgba(63,91,63,.1), rgba(184,152,64,.06));
  border-color: rgba(63,91,63,.2);
}

[data-theme="light"] .theater-show-notes-btn-big:hover {
  background: linear-gradient(135deg, rgba(63,91,63,.15), rgba(184,152,64,.1));
  box-shadow: 0 4px 20px rgba(63,91,63,.15), 0 0 30px rgba(63,91,63,.08);
}

[data-theme="light"] .show-note-item {
  border-bottom-color: rgba(0,0,0,.06);
}

[data-theme="light"] .show-note-item:hover {
  background: rgba(63,91,63,.04);
}

[data-theme="light"] .show-note-image {
  border-color: rgba(0,0,0,.1);
}

[data-theme="light"] .show-note-image-trigger:hover .show-note-image,
[data-theme="light"] .show-note-image-trigger:focus-visible .show-note-image {
  border-color: rgba(63,91,63,.25);
  box-shadow: 0 4px 15px rgba(0,0,0,.1);
}

[data-theme="light"] .show-note-lightbox-dialog {
  background: rgba(255,255,255,.97);
  border-color: rgba(0,0,0,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.18), 0 0 30px rgba(63,91,63,.08);
}

[data-theme="light"] .show-note-lightbox-image {
  background: #f4f4f4;
}

[data-theme="light"] .show-note-lightbox-close {
  border-color: rgba(0,0,0,.1);
  background: rgba(255,255,255,.85);
}

[data-theme="light"] .show-notes-outro {
  border-top-color: rgba(0,0,0,.08);
}

@media (max-width: 600px) {
  .show-note-lightbox {
    padding: .85rem;
  }

  .show-note-lightbox-dialog {
    width: 100%;
    padding: .75rem .75rem .7rem;
    border-radius: 14px;
  }

  .show-note-lightbox-image {
    max-height: calc(90vh - 4rem);
  }

  .show-note-lightbox-close {
    top: .5rem;
    right: .5rem;
  }
}

/* --- ABOUT --- */
.about-under-hero {
  padding-top: 0;
  padding-bottom: 4rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  color: var(--text-dim);
  margin-top: 1.2rem;
  font-size: 1.05rem;
}

.about-text .section-line {
  margin: 1rem auto;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  justify-content: center;
}

.stat {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: var(--neon-green);
  text-shadow: var(--glow-green);
}

.stat-label {
  font-family: var(--font-body);
  font-size: .8rem;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-shadow: none;
}

.about-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(83,121,83,.15);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(83,121,83,.2), transparent 70%);
  top: -50px;
  right: -50px;
  border-radius: 50%;
  animation: pulseGlow 4s ease-in-out infinite;
}

.card-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.card-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: .5rem;
}

.card-content p {
  color: var(--text-dim);
  font-size: 1.1rem;
}

/* --- SHARE YOUR TATTOO STORY --- */
.story-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.story-grid {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.story-content .section-line {
  margin: 1rem auto;
}

.story-subtitle {
  color: var(--text-dim);
  font-size: 1.1rem;
  margin-top: .5rem;
  font-style: italic;
}

.btn-support {
  display: inline-block;
  margin-top: 1.8rem;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.story-label {
  margin-top: 1rem;
  color: var(--text-dim);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-desc {
  margin-top: 1.2rem;
  color: var(--text-dim);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
}

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.contact-info .section-line {
  margin: 1rem auto;
}

.contact-info p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.contact-link {
  --brand-rgb: 83, 121, 83;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  padding: 1rem 1.1rem;
  min-height: 90px;
  border-radius: 20px;
  border: 1px solid rgba(var(--brand-rgb), .24);
  background: linear-gradient(140deg, rgba(var(--brand-rgb), .14), rgba(var(--brand-rgb), .03) 55%, rgba(255,255,255,.03));
  box-shadow: 0 18px 45px -36px rgba(0,0,0,.9);
  backdrop-filter: blur(16px);
  transition: transform .35s var(--transition), border-color .35s ease, box-shadow .35s ease, background .35s ease;
}

.contact-link::before,
.footer-social-link::before {
  content: '';
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -20%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  transform: translateX(-220%) rotate(18deg);
  transition: transform .7s var(--transition);
  pointer-events: none;
}

.contact-link::after,
.footer-social-link::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: calc(var(--burst-x, 50%) - 9px);
  top: calc(var(--burst-y, 50%) - 9px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.55) 0%, rgba(var(--brand-rgb), .45) 34%, rgba(var(--brand-rgb), 0) 72%);
  opacity: 0;
  transform: scale(.25);
  pointer-events: none;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(var(--brand-rgb), .56);
  box-shadow: 0 26px 60px -30px rgba(var(--brand-rgb), .75);
  background: linear-gradient(140deg, rgba(var(--brand-rgb), .22), rgba(var(--brand-rgb), .06) 55%, rgba(255,255,255,.04));
}

.contact-link:hover::before,
.contact-link:focus-visible::before,
.footer-social-link:hover::before,
.footer-social-link:focus-visible::before {
  transform: translateX(430%) rotate(18deg);
}

.contact-link.is-pressed,
.footer-social-link.is-pressed {
  transform: scale(.97);
}

.contact-link.is-bursting::after,
.footer-social-link.is-bursting::after {
  animation: socialBurst .55s ease-out;
}

.contact-link:focus-visible,
.footer-social-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), .18), 0 26px 60px -30px rgba(var(--brand-rgb), .75);
}

.contact-icon-wrap {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: rgb(var(--brand-rgb));
  background: rgba(var(--brand-rgb), .14);
  box-shadow: inset 0 0 0 1px rgba(var(--brand-rgb), .24);
  transition: transform .35s var(--transition), background .35s ease, box-shadow .35s ease;
}

.contact-link:hover .contact-icon-wrap,
.contact-link:focus-visible .contact-icon-wrap {
  transform: rotate(-6deg) scale(1.08);
  background: rgba(var(--brand-rgb), .22);
  box-shadow: inset 0 0 0 1px rgba(var(--brand-rgb), .36), 0 16px 28px -20px rgba(var(--brand-rgb), .82);
}

.contact-icon-svg {
  width: 24px;
  height: 24px;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .15rem;
  min-width: 0;
  text-align: left;
}

.contact-label {
  font-weight: 700;
  letter-spacing: .02em;
}

.contact-handle {
  color: var(--text-dim);
  font-size: .92rem;
  word-break: break-word;
  transition: color .35s ease;
}

.contact-link:hover .contact-handle,
.contact-link:focus-visible .contact-handle {
  color: var(--text);
}

.contact-link[data-brand="youtube"],
.footer-social-link[data-brand="youtube"] {
  --brand-rgb: 255, 84, 84;
}

.contact-link[data-brand="patreon"],
.footer-social-link[data-brand="patreon"] {
  --brand-rgb: 255, 119, 84;
}

.contact-link[data-brand="email"],
.footer-social-link[data-brand="email"] {
  --brand-rgb: 226, 186, 91;
}

.contact-link[data-brand="instagram"],
.footer-social-link[data-brand="instagram"] {
  --brand-rgb: 230, 133, 87;
}

.contact-link[data-brand="tiktok"],
.footer-social-link[data-brand="tiktok"] {
  --brand-rgb: 86, 223, 203;
}

.contact-link[data-brand="spotify"],
.footer-social-link[data-brand="spotify"] {
  --brand-rgb: 103, 214, 124;
}

@keyframes socialBurst {
  0% {
    opacity: .65;
    transform: scale(.25);
  }
  100% {
    opacity: 0;
    transform: scale(9);
  }
}

[data-theme="light"] .contact-link {
  background: linear-gradient(140deg, rgba(var(--brand-rgb), .1), rgba(255,255,255,.92) 66%);
  box-shadow: 0 20px 40px -34px rgba(0,0,0,.28);
}

[data-theme="light"] .contact-link:hover,
[data-theme="light"] .contact-link:focus-visible,
[data-theme="light"] .footer-social-link:hover,
[data-theme="light"] .footer-social-link:focus-visible {
  box-shadow: 0 22px 44px -28px rgba(var(--brand-rgb), .42);
}

[data-theme="light"] .contact-icon-wrap,
[data-theme="light"] .footer-social-link {
  box-shadow: inset 0 0 0 1px rgba(var(--brand-rgb), .2);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.15);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 1rem 0 .5rem;
  outline: none;
  transition: border-color .3s;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--text-dim);
  font-size: .95rem;
  pointer-events: none;
  transition: all .3s var(--transition);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -.5rem;
  font-size: .75rem;
  color: var(--neon-pink);
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-pink);
  box-shadow: 0 0 10px rgba(83,121,83,.5);
  transition: width .4s var(--transition);
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
  width: 100%;
}

.btn-submit {
  align-self: flex-start;
  border: none;
}

/* --- REVEAL ANIMATIONS --- */
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all .8s var(--transition);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- FOOTER --- */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 2rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--neon-pink);
  letter-spacing: 4px;
  text-shadow: 0 0 10px rgba(83,121,83,.3);
}

.footer-copy {
  color: var(--text-dim);
  font-size: .8rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-social-link {
  --brand-rgb: 83, 121, 83;
  position: relative;
  overflow: hidden;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: rgb(var(--brand-rgb));
  text-decoration: none;
  background: rgba(var(--brand-rgb), .1);
  border: 1px solid rgba(var(--brand-rgb), .22);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
  transition: transform .3s var(--transition), box-shadow .3s ease, background .3s ease, border-color .3s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-4px);
  background: rgba(var(--brand-rgb), .18);
  border-color: rgba(var(--brand-rgb), .46);
  box-shadow: 0 18px 36px -24px rgba(var(--brand-rgb), .78);
}

.footer-social-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), .18), 0 18px 36px -24px rgba(var(--brand-rgb), .78);
}

.footer-social-link.is-pressed,
.footer-social-link.is-pressed:hover,
.footer-social-link.is-pressed:focus-visible {
  transform: scale(.97);
}

.footer-social-link span {
  display: grid;
  place-items: center;
}

.footer-social-link .contact-icon-svg {
  width: 20px;
  height: 20px;
}

@media (prefers-reduced-motion: reduce) {
  .contact-link,
  .contact-link::before,
  .contact-icon-wrap,
  .contact-handle,
  .footer-social-link,
  .footer-social-link::before {
    transition: none;
  }

  .contact-link::after,
  .footer-social-link::after {
    animation: none;
  }
}

/* --- MOBILE --- */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70vw;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right .4s var(--transition);
    border-left: 1px solid rgba(83,121,83,.2);
  }

  .nav-links.open {
    right: 0;
  }

  .mobile-toggle {
    display: flex;
  }

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

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .episode-card {
    flex-direction: column;
  }

  .platform-spotlight,
  .theater-inline-media {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .theater-inline-panel-youtube,
  .theater-inline-panel-spotify,
  .theater-show-notes-btn-separate {
    grid-column: 1;
  }

  .theater-inline-panel-youtube {
    grid-row: 1;
  }

  .theater-inline-panel-spotify {
    grid-row: 2;
    width: 100%;
  }

  .theater-show-notes-btn-separate {
    grid-row: 3;
  }

  .episode-thumb {
    width: 100%;
    min-height: 200px;
  }

  .episode-info {
    padding: 1.2rem;
  }

  .about-stats {
    gap: 1.5rem;
  }

  .stat {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .logo-container {
    margin-top: 4rem;
    margin-bottom: 1.5rem;
  }

  .hero-logo {
    width: min(60vw, 260px);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: 5rem 1.2rem;
  }

  .theater-container {
    width: 96vw;
  }

  .theater-inline-head {
    padding: .8rem .85rem;
  }

  .theater-close {
    top: -40px;
    font-size: 2rem;
  }
}