/* ─── VARIABLES ─────────────────────────────────────── */
:root {
  --bg:          #0e0e0e;
  --bg-mid:      #141414;
  --bg-card:     #111111;
  --text:        #ececec;
  --muted:       #888;
  --max:         1280px;
  --r:           18px;

  /* Nostalgia / Slime palette */
  --slime:       #4dff00;
  --slime-dark:  #1a6600;
  --slime-mid:   #2db300;
  --slime-glow:  rgba(77, 255, 0, 0.65);
  --slime-dim:   rgba(77, 255, 0, 0.15);
  --orange:      #ff7a00;
  --orange-warm: #ff4500;

  /* Neon Nightmares palette */
  --neon-pink:   #ff0090;
  --neon-cyan:   #00ffff;
  --neon-purple: #9900ff;
  --neon-lime:   #7fff00;
  --neon-yellow: #ffff00;
  --neon-pink-g: rgba(255, 0, 144, 0.65);

  /* Park After Dark */
  --park-blue:   #4d9fff;
  --park-deep:   #1a3fff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Special Elite', 'Courier New', monospace;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

/* ─── SCANLINES ─────────────────────────────────────── */
.scanlines {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.06) 2px,
    rgba(0, 0, 0, 0.06) 4px
  );
}

/* ─── GREEN ORBS BACKGROUND ─────────────────────────── */
.green-orbs-bg {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  overflow: hidden;
}
.green-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(77, 255, 0, 0.9);
  box-shadow:
    0 0 6px 2px rgba(77, 255, 0, 0.8),
    0 0 14px 4px rgba(77, 255, 0, 0.4),
    0 0 28px 8px rgba(77, 255, 0, 0.15);
  animation: orbFloat var(--dur) ease-in-out infinite, orbPulse var(--pulse) ease-in-out infinite;
}
@keyframes orbFloat {
  0%        { transform: translate(0, 0); }
  25%       { transform: translate(var(--dx1), var(--dy1)); }
  50%       { transform: translate(var(--dx2), var(--dy2)); }
  75%       { transform: translate(var(--dx3), var(--dy3)); }
  100%      { transform: translate(0, 0); }
}
@keyframes orbPulse {
  0%, 100%  { opacity: var(--op); }
  50%       { opacity: calc(var(--op) * 0.4); }
}

/* ─── VT323 UTILITY ─────────────────────────────────── */
.vt { font-family: 'VT323', monospace; letter-spacing: 0.05em; }

/* ─── TOPBAR ─────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 36px;
  height: 64px;
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid rgba(77, 255, 0, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  color: var(--slime);
  text-shadow:
    0 0 12px var(--slime-glow),
    0 0 30px rgba(77, 255, 0, 0.3);
  flex-shrink: 0;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: rgba(236, 236, 236, 0.75);
  white-space: nowrap;
  transition: color 0.2s, text-shadow 0.2s;
}

.main-nav a:hover {
  color: var(--slime);
  text-shadow: 0 0 10px var(--slime-glow);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.social-icons { display: flex; align-items: center; gap: 14px; }

.social-icon {
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  transition: color 0.2s, filter 0.2s;
}
.social-icon:hover {
  color: var(--slime);
  filter: drop-shadow(0 0 6px var(--slime-glow));
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 4px;
  cursor: pointer;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--slime);
  margin: 5px 0;
  box-shadow: 0 0 6px var(--slime-glow);
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 4px;
  border: 2px solid transparent;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-slime {
  background: linear-gradient(135deg, #39cc00, #1a6600);
  color: #fff;
  border-color: var(--slime);
  box-shadow: 0 0 18px rgba(77, 255, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.btn-slime:hover { box-shadow: 0 0 32px rgba(77, 255, 0, 0.6), 0 4px 20px rgba(0,0,0,0.4); }

.btn-neon {
  background: transparent;
  color: var(--neon-pink);
  border-color: var(--neon-pink);
  box-shadow: 0 0 14px rgba(255, 0, 144, 0.35), inset 0 0 14px rgba(255, 0, 144, 0.05);
}
.btn-neon:hover {
  background: rgba(255, 0, 144, 0.1);
  box-shadow: 0 0 28px rgba(255, 0, 144, 0.6), 0 4px 20px rgba(0,0,0,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover { border-color: var(--slime); color: var(--slime); }

.btn.small { min-height: 38px; padding: 0 18px; font-size: 0.88rem; }

/* ─── INNER WRAPPER ──────────────────────────────────── */
.inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #080808;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.atm-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
}
.glow-green  { width: 600px; height: 500px; background: rgba(77, 255, 0, 0.2);  bottom: -100px; left: -80px; }
.glow-orange { width: 400px; height: 350px; background: rgba(255, 122, 0, 0.18); top: 10%; left: 5%; }
.glow-blue   { width: 500px; height: 400px; background: rgba(0, 100, 255, 0.12); top: 0; right: -60px; }
.glow-purple { width: 350px; height: 300px; background: rgba(153, 0, 255, 0.1); bottom: 20%; right: 10%; }

.hero-stars { position: absolute; inset: 0; }

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 40px 140px;
  width: 100%;
}

.hero-copy { max-width: 560px; }

.hero-eyebrow {
  font-size: 1rem;
  color: var(--slime);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.hero-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow:
    0 0 40px rgba(77, 255, 0, 0.25),
    0 0 80px rgba(77, 255, 0, 0.12),
    2px 2px 0 rgba(77, 255, 0, 0.15);
}

.hero-tagline {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  margin-bottom: 28px;
}

.hero-series-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.series-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-radius: 4px;
  border: 1px solid transparent;
  max-width: 420px;
}

.badge-slime {
  background: rgba(77, 255, 0, 0.06);
  border-color: rgba(77, 255, 0, 0.25);
}

.badge-neon {
  background: rgba(255, 0, 144, 0.06);
  border-color: rgba(255, 0, 144, 0.25);
}

.badge-number {
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  white-space: nowrap;
}

.badge-slime .badge-name {
  font-family: 'Creepster', cursive;
  font-size: 0.95rem;
  color: var(--slime);
  letter-spacing: 0.04em;
}

.badge-neon .badge-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  color: var(--neon-pink);
  letter-spacing: 0.1em;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Hero visual (CSS book shelf) ── */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hero-shelf {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  position: relative;
}

.shelf-book {
  width: 160px;
  height: 270px;
  border-radius: 4px 10px 10px 4px;
  overflow: hidden;
  box-shadow: 8px 8px 24px rgba(0,0,0,0.7), -2px 0 0 rgba(0,0,0,0.5);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.shelf-book:hover { transform: translateY(-10px) rotate(-2deg); }

.shelf-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.sb-slime-drops {
  display: flex;
  gap: 14px;
  position: absolute;
  top: 0; left: 0; right: 0;
  justify-content: space-around;
  padding: 0 8px;
}

.sb-slime-drops span {
  display: block;
  width: 6px;
  background: var(--slime);
  border-radius: 0 0 50% 50%;
  animation: slimeDrip 3s ease-in-out infinite;
  filter: drop-shadow(0 0 4px var(--slime-glow));
}
.sb-slime-drops span:nth-child(1) { height: 20px; animation-delay: 0s; }
.sb-slime-drops span:nth-child(2) { height: 32px; animation-delay: .5s; }
.sb-slime-drops span:nth-child(3) { height: 18px; animation-delay: 1s; }

.sb-stars {
  font-size: 0.6rem;
  color: var(--neon-yellow);
  letter-spacing: 2px;
  text-shadow: 0 0 6px rgba(255,255,0,0.6);
}

.sb-moon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(200,200,255,0.6);
  box-shadow: 0 0 8px rgba(200,200,255,0.3);
  position: absolute;
  top: 12px;
  right: 12px;
}

.sb-title {
  font-family: 'Creepster', cursive;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--slime);
  text-shadow:
    0 0 12px var(--slime-glow),
    0 0 24px rgba(77,255,0,0.3),
    1px 1px 0 var(--slime-dark);
  text-align: center;
  margin-top: auto;
}

.sb-title.blue {
  color: var(--park-blue);
  text-shadow:
    0 0 12px rgba(77,153,255,0.8),
    0 0 24px rgba(77,153,255,0.4);
  font-size: 1.15rem;
}

.sb-kids {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  height: 28px;
  margin-top: auto;
}

.kid {
  width: 7px;
  background: rgba(0,0,0,0.9);
  border-radius: 3px 3px 0 0;
  position: relative;
}
.k1 { height: 22px; }
.k2 { height: 26px; }
.k3 { height: 24px; }
.k4 { height: 20px; }
.kid::before {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(0,0,0,0.9);
  position: absolute;
  top: -10px;
  left: -1px;
}

.sb-author {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  text-align: center;
}
.sb-author.blue { color: rgba(200, 220, 255, 0.7); }

.shelf-board {
  position: absolute;
  bottom: -28px;
  left: -20px;
  right: -20px;
  height: 28px;
  background: linear-gradient(180deg, #3a2208 0%, #1e1104 60%, #130b02 100%);
  border-radius: 4px;
  box-shadow:
    0 6px 20px rgba(0,0,0,0.8),
    0 -1px 0 rgba(255,160,40,0.15),
    inset 0 2px 4px rgba(255,180,60,0.08);
}

/* Lava lamp */
.lava-lamp {
  position: relative;
  width: 130px;
  height: 270px;
  flex-shrink: 0;
}

/* Photo of the lamp — multiply blend makes the white bg transparent.
   bottom: -16px compensates for 16px of bottom whitespace in the PNG
   so the actual lamp base lands flush on the shelf board. */
.lamp-img {
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  z-index: 2;
}

/* Blobs float inside the glass region.
   Image (130×195px) bottom at container y=376 (360+16).
   Image top in container: 376-195 = 181px.
   Glass interior = 20–70% of image height (39–136.5px into image).
   → top: (181+39)/360 = 61%
   → bottom: (360−(181+136.5))/360 = 12%
   Glass walls ~22% each side. */
.lamp-blobs {
  position: absolute;
  top: 61%;
  bottom: 12%;
  left: 22%;
  right: 22%;
  overflow: hidden;
  border-radius: 44% 44% 38% 38%;
  z-index: 3;
}

.lamp-blob {
  position: absolute;
  background: radial-gradient(circle at 40% 35%, rgba(140,255,150,0.92), rgba(0,210,70,0.78));
  border-radius: 50%;
  filter: blur(2px);
}
.b1 { width: 26px; height: 26px; bottom: 6%; left: 50%; transform: translateX(-50%); animation: blobFloat 4s ease-in-out infinite; }
.b2 { width: 18px; height: 20px; bottom: 28%; left: 3%; animation: blobFloat 5.2s ease-in-out infinite reverse; animation-delay: .8s; }
.b3 { width: 15px; height: 16px; bottom: 56%; right: 3%; animation: blobFloat 3.8s ease-in-out infinite; animation-delay: 1.5s; }
.b4 { width: 20px; height: 18px; bottom: 74%; left: 20%; animation: blobFloat 6s ease-in-out infinite reverse; animation-delay: 2.2s; }

.lamp-glow {
  position: absolute;
  bottom: 26%; left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 100px;
  background: radial-gradient(ellipse, rgba(0,255,80,0.18), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Hero slime bottom transition */
.hero-slime-bottom {
  margin-top: -19px;
  align-self: center;
  line-height: 0;
  pointer-events: none;
  flex-shrink: 0;
}
.slime-drip-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: fill;
  vertical-align: bottom;
}

/* ─── SECTION COMMONS ────────────────────────────────── */
.series-section {
  padding: 80px 0;
}

.series-header { margin-bottom: 52px; }

.series-eyebrow {
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}

.slime-color { color: var(--slime); text-shadow: 0 0 10px var(--slime-glow); }
.neon-color  { color: var(--neon-pink); text-shadow: 0 0 10px var(--neon-pink-g); }

.series-title {
  line-height: 1;
  margin-bottom: 16px;
}

.slime-underline { max-width: 600px; margin: 8px 0 20px; }

.series-desc {
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(236, 236, 236, 0.75);
}

/* ─── NOSTALGIA SECTION ──────────────────────────────── */
.nostalgia-section {
  background:
    radial-gradient(ellipse 80% 50% at 10% 80%, rgba(77, 255, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(255, 122, 0, 0.06) 0%, transparent 55%),
    #0e0e0e;
}

.nostalgia-title {
  font-family: 'Creepster', cursive;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  color: var(--slime);
  text-shadow:
    0 0 20px var(--slime-glow),
    0 0 40px rgba(77, 255, 0, 0.3),
    2px 3px 0 var(--slime-dark),
    4px 6px 0 rgba(26, 102, 0, 0.4);
  letter-spacing: 0.04em;
}

/* ─── BOOK CARDS ──────────────────────────────────────── */
.books-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.book-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  background: #080e08;
  border: 1px solid rgba(77, 255, 0, 0.14);
  border-radius: var(--r);
  padding: 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.book-card:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 255, 0, 0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(77,255,0,0.12);
}

/* Book Covers */
.cover {
  width: 220px;
  height: 371px;
  border-radius: 4px 10px 10px 4px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 6px 6px 20px rgba(0,0,0,0.7), -3px 0 0 rgba(0,0,0,0.5);
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.3s;
}
.book-card:hover .cover-img { transform: scale(1.03); }

/* Slime Night cover */
.cover-slime-night {
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(255, 100, 0, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 70% 20%, rgba(77, 255, 0, 0.15) 0%, transparent 50%),
    linear-gradient(160deg, #3d1800 0%, #1a0900 35%, #0d1a00 100%);
  border: 2px solid var(--slime);
  box-shadow: 6px 6px 20px rgba(0,0,0,0.7), 0 0 25px rgba(77,255,0,0.25);
}

.cover-slime-drops {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  z-index: 2;
}

.cover-slime-drops span {
  display: block;
  width: 8px;
  background: var(--slime);
  border-radius: 0 0 50% 50%;
  animation: slimeDrip 2.8s ease-in-out infinite;
  filter: drop-shadow(0 0 5px var(--slime-glow));
  position: relative;
  top: 0;
}
.cover-slime-drops span::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--slime);
  position: absolute;
  bottom: -8px;
  left: -2px;
}

.cover-lightning {
  position: absolute;
  top: 18px; left: 8px;
  display: flex;
  gap: 6px;
  opacity: 0.85;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6));
}
.cover-lightning svg { width: 18px; }

.cover-badge-star {
  font-size: 0.6rem;
  color: var(--neon-yellow);
  letter-spacing: 3px;
  text-shadow: 0 0 6px rgba(255,255,0,0.6);
  align-self: flex-end;
}

.cover-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.cover-locale {
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cover-title {
  font-family: 'Creepster', cursive;
  line-height: 0.95;
}

.slime-title-text {
  font-size: 2.8rem;
  color: var(--slime);
  text-shadow:
    0 0 16px var(--slime-glow),
    0 0 30px rgba(77,255,0,0.4),
    2px 3px 0 var(--slime-dark),
    3px 5px 0 rgba(26,102,0,0.5);
}

.cover-question-mark {
  font-family: 'Creepster', cursive;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.15);
  position: absolute;
  right: 10px;
  bottom: 40px;
  line-height: 1;
}

.cover-kids-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 7px;
  height: 36px;
  z-index: 1;
}

.ck { width: 9px; background: rgba(0,0,0,0.95); border-radius: 3px 3px 0 0; position: relative; }
.ck1 { height: 26px; }
.ck2 { height: 32px; }
.ck3 { height: 28px; }
.ck4 { height: 23px; }
.ck::before {
  content: '';
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(0,0,0,0.95);
  position: absolute;
  top: -12px;
  left: -1px;
}

.cover-author-credit {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.65);
  text-align: center;
  z-index: 1;
  margin-top: 4px;
}
.blue-author { color: rgba(180,210,255,0.7); }

/* Park After Dark cover */
.cover-park-dark {
  background:
    radial-gradient(ellipse 60% 40% at 70% 20%, rgba(77, 100, 255, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 30% 80%, rgba(30, 50, 200, 0.2) 0%, transparent 60%),
    linear-gradient(160deg, #000d2e 0%, #00082a 50%, #010038 100%);
  border: 2px solid var(--park-blue);
  box-shadow: 6px 6px 20px rgba(0,0,0,0.7), 0 0 25px rgba(77,153,255,0.22);
}

.park-stars-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.park-stars-bg span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  animation: starTwinkle 2s ease-in-out infinite;
}
.park-stars-bg span:nth-child(1)  { top: 15%; left: 20%; animation-delay: 0s; }
.park-stars-bg span:nth-child(2)  { top: 25%; left: 60%; animation-delay: .3s; }
.park-stars-bg span:nth-child(3)  { top: 10%; left: 80%; animation-delay: .7s; }
.park-stars-bg span:nth-child(4)  { top: 35%; left: 40%; animation-delay: 1s; }
.park-stars-bg span:nth-child(5)  { top: 18%; left: 50%; animation-delay: 1.4s; }
.park-stars-bg span:nth-child(6)  { top: 45%; left: 15%; animation-delay: .5s; }
.park-stars-bg span:nth-child(7)  { top: 8%;  left: 35%; animation-delay: 1.8s; }
.park-stars-bg span:nth-child(8)  { top: 30%; left: 75%; animation-delay: .2s; }
.park-stars-bg span:nth-child(9)  { top: 50%; left: 55%; animation-delay: .9s; }
.park-stars-bg span:nth-child(10) { top: 22%; left: 10%; animation-delay: 1.2s; }

.park-moon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(180, 200, 255, 0.7);
  box-shadow: 0 0 12px rgba(180, 200, 255, 0.4), 0 0 25px rgba(180,200,255,0.15);
}

.park-title-text {
  font-size: 2.4rem;
  color: var(--park-blue);
  text-shadow:
    0 0 16px rgba(77,153,255,0.9),
    0 0 32px rgba(77,153,255,0.5),
    0 0 60px rgba(77,153,255,0.2);
}

.blue-locale { color: rgba(150,180,255,0.5); }

.park-gate {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 32px;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 1;
}

.gate-post {
  width: 8px;
  height: 30px;
  background: rgba(50, 80, 180, 0.6);
  border-top: 4px solid rgba(100,150,255,0.7);
}

.gate-arch {
  width: 60px;
  height: 20px;
  border: 2px solid rgba(100,150,255,0.5);
  border-bottom: none;
  border-radius: 50px 50px 0 0;
}

.park-kids { position: absolute; bottom: 18px; left: 0; right: 0; }

/* Book info panel */
.book-info {
  display: flex;
  flex-direction: column;
  padding: 4px 0;
}

.book-num {
  font-size: 1rem;
  color: var(--slime);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.book-name {
  font-family: 'Creepster', cursive;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 14px;
}

.book-blurb {
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(236,236,236,0.72);
  flex: 1;
  margin-bottom: 20px;
}

.book-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Series CTA row */
.series-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(77, 255, 0, 0.12);
}

.series-cta-label {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ─── NEON NIGHTMARES SECTION ────────────────────────── */
.neon-section {
  position: relative;
  padding-top: 0;
  z-index: 60;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 0, 144, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(153, 0, 255, 0.08) 0%, transparent 55%),
    #0a0a14;
}

.neon-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 0, 144, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 144, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.4) 70%, transparent 100%);
}

.neon-header { text-align: left; }

.neon-title-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  letter-spacing: 0.08em;
  line-height: 0.9;
  background: linear-gradient(135deg, #ff0090, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 0, 144, 0.5)) drop-shadow(0 0 40px rgba(0, 255, 255, 0.3));
}

.neon-subtitle {
  font-size: 1.1rem;
  color: rgba(0, 255, 255, 0.6);
  letter-spacing: 0.1em;
  margin: 10px 0 16px;
}

.neon-desc { color: rgba(220, 220, 240, 0.7); }

/* ─── VHS CARDS ──────────────────────────────────────── */
.vhs-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.vhs-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vhs-box {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 6px 6px 24px rgba(0,0,0,0.8);
  transition: transform 0.25s, filter 0.25s;
  position: relative;
}
.vhs-card:hover .vhs-box { transform: translateY(-6px) scale(1.02); }

.vhs-spine {
  width: 34px;
  flex-shrink: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.vhs-spine-text {
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
}

.vhs-spine-sub {
  font-family: 'VT323', monospace;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
}

.vhs-face {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.vhs-series-label {
  font-family: 'VT323', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  padding: 6px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-transform: uppercase;
}

.vhs-series-label.cinerama { color: var(--neon-lime); }
.vhs-series-label.neon-nm  { color: var(--neon-pink); }

.vhs-art {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.vhs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.vhs-card:hover .vhs-img { transform: scale(1.04); }

/* Slice Night art */
.vhs-art-slice {
  background:
    radial-gradient(ellipse 60% 50% at 50% 70%, rgba(255, 80, 0, 0.25) 0%, transparent 60%),
    linear-gradient(160deg, #1a0800, #0d0d00);
  border-top: 1px solid rgba(77,255,0,0.12);
  border-bottom: 1px solid rgba(77,255,0,0.12);
}

.vhs-slice-night { box-shadow: 6px 6px 24px rgba(0,0,0,0.8), 0 0 20px rgba(77,255,0,0.15); }
.vhs-killer-tape { box-shadow: 6px 6px 24px rgba(0,0,0,0.8), 0 0 20px rgba(127,255,0,0.15); }
.vhs-mall-madness { box-shadow: 6px 6px 24px rgba(0,0,0,0.8), 0 0 20px rgba(255,105,180,0.15); }

.vhs-web-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  opacity: 0.5;
}

.vhs-pumpkin {
  position: absolute;
  width: 20px;
  height: 18px;
  background: radial-gradient(circle, #ff6600, #cc4400);
  border-radius: 50% 50% 40% 40%;
  box-shadow: 0 0 8px rgba(255,100,0,0.5);
}
.p1 { bottom: 16px; left: 12px; }
.p2 { bottom: 12px; right: 16px; width: 14px; height: 13px; }

/* Killer Tape art */
.vhs-art-tape {
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(127,255,0,0.12) 0%, transparent 60%),
    linear-gradient(160deg, #0a1a00, #001a0a);
}

.vhs-tape-reel {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid rgba(127,255,0,0.3);
  bottom: 22px;
}
.reel-left  { left: 20px; }
.reel-right { right: 20px; }
.vhs-tape-reel::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: rgba(127,255,0,0.1);
}

.vhs-tape-ribbon {
  position: absolute;
  bottom: 34px;
  left: 32px;
  right: 32px;
  height: 3px;
  background: rgba(127,255,0,0.25);
  border-radius: 999px;
}

/* Mall Madness art */
.vhs-art-mall {
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255, 50, 150, 0.12) 0%, transparent 60%),
    linear-gradient(160deg, #1a0030, #100020);
}

.mall-corridor {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
}

.mall-floor {
  width: 80%;
  height: 40%;
  background: linear-gradient(0deg, rgba(255,50,150,0.08), transparent);
  border-top: 1px solid rgba(255,50,150,0.15);
}

.mall-light {
  position: absolute;
  top: 20px;
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,100,180,0.5), transparent);
}
.ml1 { left: 30%; }
.ml2 { left: 50%; }
.ml3 { left: 70%; }

/* Common VHS title */
.vhs-title-area {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 10px;
}

.vhs-title {
  font-family: 'Creepster', cursive;
  font-size: 2rem;
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.vhs-title-green {
  color: var(--slime);
  text-shadow: 0 0 16px var(--slime-glow), 0 0 32px rgba(77,255,0,0.3), 2px 3px 0 var(--slime-dark);
}

.vhs-title-lime {
  color: var(--neon-lime);
  text-shadow: 0 0 16px rgba(127,255,0,0.8), 0 0 32px rgba(127,255,0,0.3), 2px 3px 0 rgba(60,120,0,0.6);
}

.vhs-title-pink {
  color: var(--neon-pink);
  text-shadow: 0 0 16px var(--neon-pink-g), 0 0 32px rgba(255,0,144,0.3), 2px 3px 0 rgba(140,0,80,0.5);
}

.vhs-tagline {
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

.vhs-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: 'VT323', monospace;
}

.vhs-label-tag {
  font-size: 0.75rem;
  border: 1px solid rgba(77,255,0,0.5);
  color: var(--slime);
  padding: 1px 6px;
  border-radius: 2px;
  letter-spacing: 0.08em;
}

.vhs-author-tag {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}

.vhs-stars {
  font-size: 0.75rem;
  color: var(--neon-yellow);
  text-shadow: 0 0 4px rgba(255,255,0,0.4);
}

.vhs-desc { display: flex; flex-direction: column; gap: 10px; }

.vhs-book-name {
  font-family: 'Creepster', cursive;
  font-size: 1.5rem;
  color: #fff;
}

/* ─── ABOUT SECTION ──────────────────────────────────── */
.about-section {
  padding: 80px 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(77, 255, 0, 0.04) 0%, transparent 60%),
    #0e0e0e;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(77,255,0,0.12);
  border-radius: var(--r);
  padding: 52px;
}

.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: 0.14em;
  line-height: 0.9;
  color: var(--slime);
  text-shadow: 0 0 30px rgba(77,255,0,0.35), 0 0 60px rgba(77,255,0,0.15);
  margin: 10px 0 6px;
}

.about-sub {
  font-family: 'Creepster', cursive;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  font-style: italic;
}

.about-bio {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(236,236,236,0.72);
  margin-bottom: 12px;
}

.about-actions { margin-top: 24px; }

/* About visual: VHS tape stack */
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.about-tape-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.mini-tape {
  height: 52px;
  background: linear-gradient(90deg, #1a0030, #0d0d0d);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  position: relative;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.mini-tape span {
  font-family: 'VT323', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
}

.mini-tape::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 12px;
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px 0 0 4px;
}

.mt1 { border-color: rgba(77,255,0,0.2); }
.mt2 { border-color: rgba(255,0,144,0.2); }
.mt3 { border-color: rgba(0,255,255,0.2); }

.clock-widget {
  background: #0a0a0a;
  border: 1px solid rgba(77,255,0,0.25);
  border-radius: 6px;
  padding: 12px 20px;
  text-align: center;
  box-shadow: 0 0 20px rgba(77,255,0,0.12), inset 0 0 12px rgba(0,0,0,0.5);
  width: 100%;
}

.clock-time {
  font-size: 3rem;
  color: var(--slime);
  text-shadow: 0 0 16px var(--slime-glow), 0 0 30px rgba(77,255,0,0.3);
  display: block;
  line-height: 1;
}

.clock-pm {
  font-size: 1rem;
  color: rgba(77,255,0,0.5);
  letter-spacing: 0.2em;
}

/* ─── NEWSLETTER ─────────────────────────────────────── */
.newsletter-section {
  padding: 80px 0;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(77,255,0,0.06) 0%, transparent 60%),
    rgba(255,255,255,0.025);
  border: 1px solid rgba(77,255,0,0.18);
  border-radius: var(--r);
  padding: 52px;
}

.newsletter-title {
  font-family: 'Creepster', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--slime);
  text-shadow:
    0 0 20px var(--slime-glow),
    0 0 40px rgba(77,255,0,0.3),
    2px 3px 0 var(--slime-dark);
  line-height: 0.95;
  margin: 10px 0 14px;
}

.newsletter-sub {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(236,236,236,0.7);
  margin-bottom: 28px;
}

.signup-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.signup-form input {
  flex: 1 1 230px;
  min-height: 52px;
  border-radius: 4px;
  border: 1px solid rgba(77,255,0,0.25);
  background: rgba(77,255,0,0.04);
  color: #fff;
  padding: 0 16px;
  font-size: 0.95rem;
  font-family: 'Special Elite', monospace;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.signup-form input::placeholder { color: rgba(255,255,255,0.3); }
.signup-form input:not(:placeholder-shown) { color: #ff7a00; }
.signup-form input:focus {
  outline: none;
  border-color: rgba(77,255,0,0.6);
  box-shadow: 0 0 12px rgba(77,255,0,0.15);
}

.signup-fine {
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: 0.06em;
}

/* Newsletter visual */
.newsletter-visual { display: flex; justify-content: center; }

.fright-card {
  background: rgba(77,255,0,0.05);
  border: 1px solid rgba(77,255,0,0.25);
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  width: 100%;
  max-width: 260px;
  position: relative;
  overflow: hidden;
}

.fright-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(77,255,0,0.08), transparent 65%);
  pointer-events: none;
}

.fc-top { margin-bottom: 16px; }

.fc-label {
  font-size: 1.6rem;
  color: var(--slime);
  text-shadow: 0 0 14px var(--slime-glow);
  letter-spacing: 0.12em;
}

.fc-icon { display: flex; justify-content: center; filter: drop-shadow(0 0 12px rgba(77,255,0,0.3)); margin-bottom: 14px; }

.fc-text {
  font-size: 0.88rem;
  color: rgba(236,236,236,0.6);
  line-height: 1.6;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: #080808;
  border-top: 1px solid rgba(77, 255, 0, 0.12);
  margin-top: 60px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 40px 36px;
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr 0.75fr;
  gap: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo { margin-bottom: 12px; }

.fl-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: var(--slime);
  text-shadow: 0 0 18px rgba(77,255,0,0.4);
  display: block;
}

.fl-tag {
  font-size: 0.85rem;
  color: rgba(77,255,0,0.5);
  letter-spacing: 0.1em;
  display: block;
  margin-top: -2px;
}

.footer-tagline {
  font-family: 'Creepster', cursive;
  font-size: 0.9rem;
  color: rgba(236,236,236,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--slime);
  text-shadow: 0 0 8px rgba(77,255,0,0.3);
  margin-bottom: 4px;
}

.footer-col a {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--slime); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}

.footer-legal { display: flex; gap: 20px; }

.footer-legal a {
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--muted); }

/* ─── REVEAL ANIMATIONS ──────────────────────────────── */
.reveal-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── KEYFRAMES ──────────────────────────────────────── */
@keyframes slimeDrip {
  0%, 100% { transform: scaleY(1); }
  50%       { transform: scaleY(1.08); }
}

@keyframes blobFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-18px); }
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 16px var(--slime-glow), 0 0 30px rgba(77,255,0,0.3), 2px 3px 0 var(--slime-dark); }
  50%       { text-shadow: 0 0 24px var(--slime-glow), 0 0 50px rgba(77,255,0,0.5), 2px 3px 0 var(--slime-dark); }
}

@keyframes neonFlicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    filter: drop-shadow(0 0 20px rgba(255, 0, 144, 0.5)) drop-shadow(0 0 40px rgba(0, 255, 255, 0.3));
  }
  20%, 24%, 55% {
    filter: drop-shadow(0 0 5px rgba(255, 0, 144, 0.2)) drop-shadow(0 0 10px rgba(0, 255, 255, 0.1));
  }
}

.neon-title-text { animation: neonFlicker 6s infinite; }
.slime-title-text { animation: glowPulse 3s ease-in-out infinite; }

/* ─── UTILITY ────────────────────────────────────────── */
.desktop-only { display: flex; }
.is-hidden { display: none !important; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .books-row { grid-template-columns: 1fr; }
  .book-card  { grid-template-columns: 200px 1fr; }
  .cover { width: 200px; height: 338px; }
  .vhs-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .topbar { padding: 0 20px; height: 58px; }
  .desktop-only { display: none !important; }
  .menu-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 58px; left: 0; right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 0;
    background: rgba(8, 8, 8, 0.98);
    border-bottom: 1px solid rgba(77, 255, 0, 0.18);
    backdrop-filter: blur(24px);
    z-index: 199;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 24px; width: 100%; font-size: 1.3rem; }

  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding: 60px 24px 0; gap: 20px; text-align: center; }
  .hero-copy { max-width: none; }
  .hero-ctas { justify-content: center; }
  .hero-series-badges { align-items: center; }
  .series-badge { justify-content: center; }
  .hero-visual { align-items: center; }
  .lava-lamp { height: 203px; margin: 0 -18px; }

  .vhs-row { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .inner { padding: 0 20px; }
  .newsletter-inner { grid-template-columns: 1fr; padding: 24px 20px; }
  .newsletter-title { font-size: 2rem; margin: 6px 0 10px; }
  .newsletter-sub { font-size: 0.85rem; margin-bottom: 18px; }
  .signup-form input { height: 52px; flex: none; }
  .newsletter-visual { display: none; }
  .about-inner { padding: 36px 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 36px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 14px 24px; }
}

@media (max-width: 620px) {
  .book-card { grid-template-columns: 1fr; }
  .cover { width: 85%; max-width: 340px; height: auto; margin: 0 auto; }
  .books-row { gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .signup-form { flex-direction: column; }
  .btn, .signup-form input { width: 100%; }
  .hero-shelf { gap: 0; }
  .shelf-book { width: 120px; height: 203px; }
  .sb-title { font-size: 1.1rem; }
}
