:root {
  --vn-bg: #0a0608;
  --vn-accent: #b57bee;
  --vn-accent2: #7c3aed;
  --vn-soft: rgba(181,123,238,0.12);
  --vn-border: rgba(181,123,238,0.15);
  --vn-muted: rgba(245,243,239,0.45);
}

.vn-body {
  background: var(--vn-bg);
}

.vn-body body::after { display: none; }

/* NAV override */
.vn-nav { background: transparent !important; }
.vn-nav.stuck {
  background: rgba(10,6,8,0.96) !important;
  border-bottom: 1px solid var(--vn-border) !important;
}
.vn-logo { color: var(--white); }
.vn-back {
  color: var(--vn-muted) !important;
  letter-spacing: 0.2em !important;
}
.vn-back:hover { color: var(--white) !important; }

/* ── HERO ── */
.vn-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}

.vn-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--vn-bg);
}

.vn-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.vn-orb-1 {
  width: 600px; height: 600px;
  background: rgba(124,58,237,0.2);
  top: -100px; right: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.vn-orb-2 {
  width: 400px; height: 400px;
  background: rgba(181,123,238,0.12);
  bottom: 0; left: 10%;
  animation: orbFloat2 9s ease-in-out infinite;
}
.vn-orb-3 {
  width: 300px; height: 300px;
  background: rgba(255,45,107,0.07);
  top: 40%; left: 40%;
  animation: orbFloat1 15s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-40px) scale(1.05); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50%       { transform: translateY(-30px) translateX(20px); }
}

.vn-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.vn-eyebrow {
  font-family: 'Antonio', sans-serif;
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--vn-accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}

.vn-title {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(72px, 12vw, 150px);
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.25s forwards;
  background: linear-gradient(135deg, #f5f3ef 0%, var(--vn-accent) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vn-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--vn-muted);
  max-width: 520px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}

.vn-hero-actions {
  opacity: 0;
  animation: fadeUp 0.9s ease 0.55s forwards;
}

.vn-btn {
  background: var(--vn-accent2) !important;
  color: #fff !important;
}
.vn-btn:hover {
  background: var(--vn-accent) !important;
}

/* ── PLATFORMS ── */
.vn-platforms-section {
  padding: 64px 48px;
  border-top: 1px solid var(--vn-border);
  background: rgba(181,123,238,0.03);
}

.vn-section-eyebrow {
  font-family: 'Antonio', sans-serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--vn-accent);
  margin-bottom: 20px;
}

.vn-platforms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vn-platform-btn {
  font-family: 'Antonio', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--vn-border);
  padding: 12px 24px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  background: transparent;
}

.vn-platform-btn:hover {
  border-color: var(--vn-accent);
  background: var(--vn-soft);
  color: var(--vn-accent);
}

/* ── EPISODES ── */
.vn-episodes-section {
  padding: 80px 48px;
  border-top: 1px solid var(--vn-border);
}

.vn-section-title {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 48px;
}

.vn-episodes-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
}

.vn-episode {
  display: grid;
  grid-template-columns: 40px 80px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--vn-border);
  transition: padding-left 0.2s;
}

.vn-episode:hover { padding-left: 8px; }

.vn-ep-number {
  font-family: 'Antonio', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--vn-accent);
  opacity: 0.6;
}

.vn-ep-art {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: #1a1020;
  overflow: hidden;
}

.vn-ep-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.vn-ep-art-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(10,6,8,1));
}

.vn-ep-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,6,8,0.6);
  border: none;
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
}

.vn-ep-art:hover .vn-ep-play { opacity: 1; }

.vn-ep-info { min-width: 0; }

.vn-ep-title {
  font-family: 'Antonio', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vn-ep-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--vn-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vn-ep-meta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  font-size: 11px;
  color: rgba(181,123,238,0.5);
  font-family: 'Antonio', sans-serif;
  letter-spacing: 0.1em;
}

.vn-ep-link {
  font-family: 'Antonio', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--vn-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  flex-shrink: 0;
}

.vn-ep-link:hover { color: var(--vn-accent); }

/* ── AUDIO PLAYER BAR ── */
.vn-player-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10,6,8,0.97);
  border-top: 1px solid var(--vn-border);
  backdrop-filter: blur(20px);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.vn-player-bar.visible { transform: translateY(0); }

.vn-player-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vn-player-btn {
  background: none;
  border: 1px solid var(--vn-border);
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.vn-player-btn:hover, .vn-player-btn.playing {
  border-color: var(--vn-accent);
  background: var(--vn-soft);
}

.vn-player-title {
  font-family: 'Antonio', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vn-player-progress {
  flex: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vn-player-progress input[type=range] {
  flex: 1;
  -webkit-appearance: none;
  height: 2px;
  background: var(--vn-border);
  outline: none;
  cursor: pointer;
}
.vn-player-progress input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--vn-accent);
}

.vn-player-time {
  font-family: 'Antonio', sans-serif;
  font-size: 11px;
  color: var(--vn-muted);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.vn-player-close {
  background: none; border: none; color: var(--vn-muted);
  cursor: pointer; font-size: 18px; line-height: 1;
  padding: 4px; transition: color 0.2s;
}
.vn-player-close:hover { color: var(--white); }

/* ── FOOTER ── */
.vn-footer {
  border-top: 1px solid var(--vn-border);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-back {
  font-family: 'Antonio', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--vn-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-back:hover { color: var(--white); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .vn-hero { padding: 100px 24px 60px; }
  .vn-platforms-section, .vn-episodes-section { padding: 56px 24px; }
  .vn-episode { grid-template-columns: 30px 64px 1fr; gap: 12px; }
  .vn-ep-link { display: none; }
  .vn-ep-art { width: 64px; height: 64px; }
  .vn-player-bar { padding: 12px 20px; }
  .vn-player-progress { display: none; }
  .vn-footer { padding: 24px; flex-direction: column; gap: 12px; text-align: center; }
}
