:root {
  --ink: #080608;
  --surface: #130c10;
  --surface-2: #1c1217;
  --line: #2e1a21;
  --line-strong: #4d2733;
  --text: #f6edf0;
  --muted: #b09aa2;
  --faint: #7a626c;
  --accent: #ff2d55;
  --accent-soft: #ff7a94;
  --accent-ink: #1a050b;
  --danger: #ff5470;
  --glow: rgba(255, 45, 85, 0.14);
  --bloom: 0 0 24px rgba(255, 45, 85, 0.45);
  --font-display: "Black Han Sans", "Apple SD Gothic Neo", sans-serif;
  --font-body: "IBM Plex Sans KR", "Apple SD Gothic Neo", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --wide: 72rem;
  --measure: 36rem;
  color: var(--text);
  background: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color-scheme: dark;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(50rem 26rem at 85% -10%, rgba(255, 45, 85, 0.18), transparent 60%) no-repeat fixed,
    radial-gradient(40rem 24rem at -10% 30%, rgba(147, 32, 84, 0.14), transparent 60%) no-repeat fixed,
    var(--ink);
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 20;
  padding: 0.5rem 0.8rem;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
}

.skip-link:focus {
  top: 0.75rem;
}

.site-header,
.site-footer,
main {
  width: min(var(--wide), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 45, 85, 0.18);
  background: rgba(8, 6, 8, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  text-decoration: none;
}

.lamp-mark {
  width: 0.55rem;
  height: 0.55rem;
  flex: none;
  background: var(--accent);
  box-shadow: 0 0 14px 3px rgba(255, 45, 85, 0.5);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(255, 45, 85, 0.3);
}

.brand-sub {
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header nav a {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.site-header nav a:hover {
  color: var(--text);
}

.site-header nav a[aria-current="page"] {
  color: var(--accent-soft);
}

.badge-19 {
  padding: 0.18rem 0.55rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  box-shadow: 0 0 12px rgba(255, 45, 85, 0.25);
}

main {
  flex: 1;
  padding: 3rem 0 4.5rem;
}

.kicker {
  margin: 0 0 0.9rem;
  color: rgba(255, 122, 148, 0.7);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
.speaker {
  font-family: var(--font-display);
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  text-shadow: 0 0 28px rgba(255, 45, 85, 0.22);
}

h2 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.25;
}

.hero {
  max-width: 44rem;
  margin-bottom: 4rem;
  padding-top: 1.5rem;
}

.hero-slim {
  max-width: none;
  margin-bottom: 1.1rem;
  padding-top: 0.4rem;
}

.hero-slim .lede {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.2;
  color: var(--text);
}

.lede {
  margin: 0;
  max-width: var(--measure);
  color: var(--muted);
  font-size: 1.06rem;
  text-wrap: pretty;
}

.pull {
  margin: 0 0 1rem;
  color: var(--accent-soft);
  font-size: 1.15rem;
  line-height: 1.45;
}

.catalog > h2,
.featured > h2,
.related > h2 {
  margin-bottom: 0.85rem;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured {
  margin-bottom: 2.2rem;
}

.featured-grid,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 0.7rem;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem 1rem;
  margin: 0 0 0.75rem;
}

.chip-row,
.sort-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.chip-row-tags {
  margin: 0 0 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.2rem 0.7rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.chip:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
}

.chip.is-on,
.chip[aria-current="page"] {
  border-color: var(--accent);
  color: var(--accent-soft);
  box-shadow: 0 0 16px rgba(255, 45, 85, 0.22);
}

.browse-title {
  margin: 0 0 0.6rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
}

.related,
.landing-about,
.landing-cast {
  margin: 0 0 2.5rem;
}

.landing-about,
.landing-cast {
  max-width: var(--measure);
}

.landing-about p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.cast-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.cast-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.cast-name {
  color: var(--text);
  font-weight: 500;
}

.cast-role {
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.taxon-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.4rem;
}

.work-stats {
  margin: 0 0 1rem;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.work-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255, 45, 85, 0.16);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.work-card:hover,
.work-card:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(255, 45, 85, 0.22);
  transform: translateY(-2px);
}

.work-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--surface-2);
  transition: filter 220ms ease, transform 220ms ease;
}

.work-card:hover img,
.work-card:focus-within img {
  filter: brightness(0.72);
  transform: scale(1.03);
}

.work-card-meta {
  position: absolute;
  inset: auto 0 0;
  padding: 2.4rem 0.85rem 0.7rem;
  background: linear-gradient(180deg, transparent, rgba(8, 6, 8, 0.94) 68%);
}

.work-card-tag {
  display: inline-block;
  margin-bottom: 0.2rem;
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-card h2 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.work-card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  margin: 0.3rem 0 0;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
}

.work-card a::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 2.6rem;
  height: 2.6rem;
  margin: -1.3rem 0 0 -1.3rem;
  border-radius: 999px;
  background: rgba(255, 45, 85, 0.92);
  box-shadow: var(--bloom);
  color: #fff;
  font-size: 0.75rem;
  line-height: 2.6rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.work-card:hover a::after,
.work-card:focus-within a::after {
  opacity: 1;
}

@media (min-width: 720px) {
  .catalog-grid,
  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-grid .work-card {
    grid-column: 1 / -1;
  }

  .featured-grid .work-card img {
    aspect-ratio: 21 / 9;
  }

  .featured-grid .work-card h2 {
    font-size: 1.7rem;
  }
}

.crumbs {
  margin: 0 0 1.8rem;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.crumbs a {
  color: var(--muted);
  text-decoration: none;
}

.crumbs a:hover {
  color: var(--accent-soft);
}

.landing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.cover {
  margin: 0;
  background: var(--surface-2);
  border: 1px solid rgba(255, 45, 85, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.landing-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
}

.landing-copy .lede {
  margin-bottom: 1.6rem;
}

.btn,
button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 4px;
  background: linear-gradient(180deg, #ff4770, #ef1444);
  box-shadow: var(--bloom), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff5f7;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.btn:hover,
button:hover {
  filter: brightness(1.12);
  box-shadow: 0 0 34px rgba(255, 45, 85, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #fff5f7;
  transform: translateY(-1px);
}

.btn:active,
button:active {
  transform: translateY(0);
  box-shadow: 0 0 14px rgba(255, 45, 85, 0.35);
}

button.ghost,
.btn.ghost {
  background: transparent;
  border-color: var(--line-strong);
  box-shadow: none;
  color: var(--text);
}

button.ghost:hover,
.btn.ghost:hover {
  background: transparent;
  border-color: var(--accent);
  box-shadow: none;
  color: var(--accent-soft);
  text-shadow: 0 0 12px rgba(255, 45, 85, 0.45);
  filter: none;
}

.ad-slot {
  position: relative;
  min-height: 250px;
  margin: 1.5rem 0 0;
  padding: 1.9rem 1rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.ad-fullpage {
  margin: 0;
}

.ad-slot::before {
  content: "AD";
  position: absolute;
  top: 0.55rem;
  left: 0.85rem;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal {
  max-width: 40rem;
}

.legal h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.legal h2 {
  margin: 1.8rem 0 0.6rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  margin: 0 0 1.2rem;
  padding-left: 1.2rem;
}

.site-footer {
  padding: 1.6rem 0 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.7;
}

.site-footer p {
  margin: 0 0 0.45rem;
  max-width: 46rem;
}

.site-footer a {
  color: var(--muted);
}

body.age-locked {
  overflow: hidden;
}

.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(8, 6, 8, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.age-gate,
.checkout-panel {
  width: min(34rem, 100%);
  margin: 3rem auto;
  padding: 2.2rem 2rem;
  background: var(--surface);
  border: 1px solid rgba(255, 45, 85, 0.22);
  border-radius: 6px;
  box-shadow: 0 0 60px rgba(255, 45, 85, 0.12);
}

.age-gate h2,
.checkout-panel h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  font-weight: 400;
  line-height: 1.1;
  text-shadow: 0 0 22px rgba(255, 45, 85, 0.2);
}

.age-gate p,
.checkout-panel p {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.age-gate button,
.checkout-panel button#confirm {
  width: 100%;
  margin-top: 0.4rem;
}

.page-play .age-overlay {
  display: flex;
}

.player {
  display: grid;
}

.page-play {
  background: #070608;
}

.page-play .site-header,
.page-play .site-footer,
.page-play .skip-link,
.page-play .ad-slot {
  display: none;
}

.page-play.is-ads {
  display: flex;
  flex-direction: column;
}

.page-play.is-ads .ad-slot {
  display: block;
  order: 2;
  width: min(100vw, calc(100dvh * 16 / 9));
  max-width: 100%;
  min-height: 90px;
  margin: 0 auto;
  padding: 1.6rem 0.6rem 0.6rem;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: #070608;
}

.page-play.is-ads main {
  order: 1;
  min-height: calc(100dvh - 96px);
}

.page-play.is-ads .vn-stage {
  height: min(calc(100dvh - 96px), calc(100vw * 9 / 16));
}

.page-play main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100dvh;
  padding: 0;
}

.page-play .age-gate {
  width: min(28rem, calc(100% - 2rem));
}

.vn-stage {
  position: relative;
  width: min(100vw, calc(100dvh * 16 / 9));
  height: min(100dvh, calc(100vw * 9 / 16));
  overflow: hidden;
  background: #000;
  color: #ead9c3;
}

.vn-media,
.vn-bg,
.vn-rain,
.vn-heat,
.vn-breath,
.vn-grain,
.vn-vignette {
  position: absolute;
  inset: 0;
}

.vn-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.vn-bg.is-on {
  opacity: 1;
  animation: kenburns 18s ease-out forwards;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.vn-rain {
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(234, 217, 195, 0.18) 40%,
    transparent 70%
  );
  background-size: 3px 140px;
  animation: rain 0.7s linear infinite;
  transition: opacity 0.6s ease;
}

.vn-rain.is-on {
  opacity: 0.35;
}

@keyframes rain {
  from {
    background-position: 0 -140px;
  }
  to {
    background-position: 0 140px;
  }
}

.vn-grain {
  z-index: 2;
  pointer-events: none;
  opacity: 0.18;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.vn-vignette {
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 48%, rgba(0, 0, 0, 0.45) 100%);
}

.vn-heat {
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse at 70% 35%, rgba(180, 48, 62, 0.28), transparent 52%),
    radial-gradient(ellipse at 30% 80%, rgba(196, 120, 58, 0.22), transparent 55%);
  mix-blend-mode: screen;
  transition: opacity 0.6s ease;
}

.vn-heat.is-on {
  opacity: 1;
  animation: heatpulse 4.2s ease-in-out infinite;
}

.vn-breath {
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(ellipse at 50% 70%, rgba(255, 214, 196, 0.16), transparent 62%);
  transition: opacity 0.6s ease;
}

.vn-breath.is-on {
  opacity: 1;
  animation: breath 3.4s ease-in-out infinite;
}

@keyframes heatpulse {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

@keyframes breath {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.85;
  }
}

.vn-stage[data-mood="heat"] .vn-bg.is-on,
.vn-stage[data-mood="close"] .vn-bg.is-on {
  filter: saturate(1.18) contrast(1.06) sepia(0.12);
  animation: kenburns-close 16s ease-out forwards;
}

.vn-stage[data-mood="after"] .vn-bg.is-on {
  filter: saturate(1.08) contrast(0.96) sepia(0.18);
  animation: kenburns 22s ease-out forwards;
}

.vn-stage[data-mood="close"] .vn-vignette {
  background: radial-gradient(ellipse at center, transparent 36%, rgba(20, 4, 8, 0.62) 100%);
}

@keyframes kenburns-close {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.2);
  }
}

.vn-sprite {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: top center;
  z-index: 4;
  opacity: 0;
  transform: translateX(24px);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 16%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 16%, #000 100%);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.vn-sprite.is-on {
  opacity: 1;
  transform: none;
}

.vn-title {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8% 8% 10%;
  background: linear-gradient(180deg, rgba(7, 6, 8, 0.15) 0%, rgba(7, 6, 8, 0.72) 100%);
}

.vn-eyebrow {
  margin: 0 0 0.6rem;
  color: #c4a574;
  font-family: "Italiana", serif;
  font-size: 0.78rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.vn-title h1 {
  margin: 0;
  font-family: "Gowun Batang", serif;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  font-weight: 700;
  line-height: 1.05;
  text-shadow: none;
}

.vn-english {
  margin: 0.4rem 0 0;
  color: #8a88a3;
  font-family: "Italiana", serif;
  font-size: 0.95rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
}

.vn-rim {
  width: 7.5rem;
  height: 1px;
  margin: 1.4rem 0 1rem;
  background: linear-gradient(90deg, #c4a574, transparent);
}

.vn-tag {
  max-width: 28rem;
  margin: 0;
  color: #d8cbb8;
  font-weight: 300;
  line-height: 1.8;
}

.vn-title button {
  display: block;
  width: max-content;
  min-height: 0;
  margin-top: 1.8rem;
  padding: 0.75rem 1.4rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #ead9c3;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: none;
  cursor: pointer;
}

.vn-title button::before {
  content: "— ";
  color: #c4a574;
}

.vn-title button:hover,
.vn-title button:focus-visible {
  color: #c4a574;
}

.vn-hud {
  position: absolute;
  inset: auto 0 0;
  z-index: 7;
  padding: 0 5% 4%;
}

.vn-choices {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 0.9rem;
}

.vn-choices.hidden {
  display: none;
}

.vn-choices button,
.vn-end {
  display: block;
  width: 100%;
  min-height: 0;
  justify-content: flex-start;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(196, 166, 116, 0.28);
  border-radius: 0;
  background: rgba(14, 10, 12, 0.62);
  box-shadow: none;
  color: #ead9c3;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  cursor: pointer;
}

.vn-end {
  display: block;
  text-decoration: none;
}

.vn-title button:hover,
.vn-title button:focus-visible,
.vn-choices button:hover,
.vn-choices button:focus-visible,
.vn-end:hover {
  filter: none;
  transform: none;
  box-shadow: none;
  border-color: #c4a574;
  background: rgba(14, 10, 12, 0.62);
  color: #fff6e8;
}

.vn-textbox {
  position: relative;
  min-height: 7.4rem;
  padding: 1.15rem 1.3rem 1.3rem;
  background: rgba(16, 12, 14, 0.78);
  border: 1px solid rgba(196, 166, 116, 0.22);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.vn-meniscus {
  position: absolute;
  left: 8%;
  right: 8%;
  top: -1px;
  height: 8px;
  border-radius: 0 0 50% 50%;
  border-bottom: 1px solid rgba(196, 166, 116, 0.7);
}

.vn-speaker {
  margin: 0 0 0.45rem;
  color: #c4a574;
  font-family: "Gowun Batang", serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.vn-speaker:empty {
  display: none;
}

.vn-line {
  margin: 0;
  max-width: 58ch;
  font-family: "Gowun Batang", serif;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.85;
}

.vn-caret {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.35rem;
  border-right: 1px solid #c4a574;
  border-bottom: 1px solid #c4a574;
  transform: rotate(45deg);
  animation: blink 1.1s steps(2) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.addr-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.2rem;
}

code#addr {
  display: block;
  flex: 1 1 16rem;
  padding: 0.8rem 1rem;
  overflow-wrap: anywhere;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.5;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.banner {
  margin: 1rem 0 0;
  color: var(--danger);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.page-play .player,
.page-play .age-gate {
  width: 100%;
}

@media (max-width: 820px) {
  .landing-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 560px) {
  main {
    padding: 2rem 0 3rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  .hero {
    margin-bottom: 3rem;
    padding-top: 0.5rem;
  }

  .hero-slim {
    margin-bottom: 0.85rem;
  }

  .catalog-grid,
  .featured-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .featured-grid .work-card {
    grid-column: 1 / -1;
  }

  .featured-grid .work-card img {
    aspect-ratio: 16 / 9;
  }

  .featured-grid .work-card h2 {
    font-size: 1.2rem;
  }

  .work-card a::after {
    opacity: 0;
  }

  .vn-stage {
    width: 100vw;
    height: 100dvh;
  }

  .vn-sprite {
    right: -18%;
    height: 68%;
  }

  .vn-title {
    padding: 10% 7% 12%;
  }

  .vn-title h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .vn-hud {
    padding: 0 4% 5%;
  }

  .vn-textbox {
    min-height: 8.4rem;
  }

  .age-gate,
  .checkout-panel {
    margin: 1.5rem auto;
    padding: 1.6rem 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .vn-bg,
  .vn-rain,
  .vn-heat,
  .vn-breath,
  .vn-sprite,
  .vn-caret {
    animation: none;
  }
}
