:root {
  --ink: #0a0d14;
  --ink-2: #11151f;
  --ink-3: #181d29;
  --paper: #ede4cf;
  --paper-2: #d9ccae;
  --paper-3: #c2b189;
  --gold: #e9b657;
  --gold-2: #c8902f;
  --gold-3: #f6d68a;
  --ember: #ff8a3d;
  --rust: #b34a1f;
  --crimson: #8a1c20;
  --sindoor: #c2271d;
  --teal: #2a5a5f;
  --moss: #4a5b3a;
  --fog: rgba(220, 210, 185, 0.06);
  --mist: rgba(190, 200, 215, 0.05);
  --glass-bg: rgba(22, 27, 38, 0.42);
  --glass-bord: rgba(233, 182, 87, 0.18);
}

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

html,
body {
  background: var(--ink);
  color: var(--paper);
  font-family: "Cormorant Garamond", serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
  cursor: none;
}

body {
  background:
    radial-gradient(
      1200px 800px at 80% -10%,
      rgba(233, 182, 87, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 700px at -10% 30%,
      rgba(42, 90, 95, 0.12),
      transparent 60%
    ),
    radial-gradient(
      1000px 800px at 50% 110%,
      rgba(138, 28, 32, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, #06080d 0%, #0a0d14 30%, #0c111c 60%, #07090f 100%);
}

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

/* ============ CUSTOM CURSOR + FIREFLIES ============ */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold-3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: screen;
  box-shadow:
    0 0 12px var(--gold),
    0 0 24px var(--ember),
    0 0 40px rgba(233, 182, 87, 0.5);
  transition:
    transform 0.15s ease,
    opacity 0.3s ease;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(233, 182, 87, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transition:
    width 0.3s,
    height 0.3s,
    border-color 0.3s;
  transform: translate(-50%, -50%);
}
.firefly {
  position: fixed;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-3);
  box-shadow:
    0 0 8px var(--gold),
    0 0 18px var(--ember);
  pointer-events: none;
  z-index: 50;
  mix-blend-mode: screen;
  opacity: 0;
}

/* ============ AMBIENT LAYERS ============ */
.rain-canvas,
.fog-canvas,
.star-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.fog-canvas {
  z-index: 3;
  opacity: 0.55;
}
.star-canvas {
  z-index: 1;
}

.lightning {
  position: fixed;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 255, 255, 0.85),
    transparent 50%
  );
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  mix-blend-mode: screen;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
}

/* ============ AUDIO CONTROL ============ */
.audio-orb {
  position: fixed;
  top: 28px;
  right: 32px;
  z-index: 9500;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-bord);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  box-shadow:
    0 0 30px rgba(233, 182, 87, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.4s ease;
}
.audio-orb:hover {
  transform: scale(1.08) rotate(8deg);
}
.audio-orb svg {
  width: 22px;
  height: 22px;
  fill: var(--gold-3);
}
.audio-orb .wave {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold-2);
  opacity: 0;
  animation: wave 2.4s ease-out infinite;
}
.audio-orb.playing .wave {
  opacity: 1;
}
.audio-orb .wave:nth-child(2) {
  animation-delay: 0.8s;
}
.audio-orb .wave:nth-child(3) {
  animation-delay: 1.6s;
}
@keyframes wave {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ============ NAV ============ */
.top-nav {
  position: fixed;
  top: 28px;
  left: 32px;
  z-index: 9500;
  display: flex;
  gap: 22px;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.top-nav a {
  color: rgba(237, 228, 207, 0.6);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.4s ease;
}
.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.top-nav a:hover {
  color: var(--gold-3);
}
.top-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.brand-mark {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9500;
  font-family: "Tiro Bangla", serif;
  font-size: 20px;
  color: var(--gold-3);
  text-shadow: 0 0 24px rgba(233, 182, 87, 0.45);
  letter-spacing: 0.04em;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 100%,
      rgba(233, 182, 87, 0.18),
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 20% 30%,
      rgba(42, 90, 95, 0.25),
      transparent 60%
    ),
    linear-gradient(180deg, #050709 0%, #0a0e16 40%, #0c111c 70%, #15110a 100%);
  z-index: 1;
}
.skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38vh;
  z-index: 5;
  pointer-events: none;
}
.skyline svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 1100px;
}
.hero-eyebrow {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.6em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 1;
  animation: fadeUp 1.4s 0.4s forwards;
  text-shadow:
    0 0 14px rgba(233, 182, 87, 0.18),
    0 0 30px rgba(233, 182, 87, 0.08);
  position: relative;
  z-index: 12;
}
.hero-bn {
  font-family: "Tiro Bangla", serif;
  font-size: clamp(48px, 4vw, 120px);
  line-height: 1.05;
  color: var(--paper);
  font-style: italic;
  margin-bottom: 18px;
  text-shadow:
    0 0 60px rgba(233, 182, 87, 0.25),
    0 4px 24px rgba(0, 0, 0, 0.7);
}
.hero-bn .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(-30deg);
  transform-origin: bottom;
}
.hero-en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 24px);
  color: rgba(237, 228, 207, 0.72);
  letter-spacing: 0.04em;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1.6s 2.4s forwards;
}
.hero-en .em {
  color: var(--gold-3);
  font-style: normal;
}

.cta-enter {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 44px;
  background: linear-gradient(
    135deg,
    rgba(233, 182, 87, 0.1),
    rgba(138, 28, 32, 0.05)
  );
  border: 1px solid rgba(233, 182, 87, 0.45);
  color: var(--gold-3);
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  cursor: none;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 1.6s 2.8s forwards;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cta-enter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(233, 182, 87, 0.4),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cta-enter:hover {
  letter-spacing: 0.5em;
  border-color: var(--gold);
  color: var(--paper);
  box-shadow: 0 0 50px rgba(233, 182, 87, 0.35);
}
.cta-enter:hover::before {
  opacity: 1;
}
.cta-enter svg {
  width: 14px;
  height: 14px;
}
.cta-enter .lamp {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-3);
  box-shadow:
    0 0 30px var(--gold),
    0 0 60px var(--ember);
  animation: lampPulse 2.4s ease-in-out infinite;
}
@keyframes lampPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
  }
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: rgba(237, 228, 207, 0.5);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 1.6s 3.2s forwards;
}
.scroll-hint::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ============ SECTION SCAFFOLD ============ */
.section {
  position: relative;
  min-height: 100vh;
  padding: 140px 8vw;
  z-index: 10;
}
.section-label {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-title {
  font-family: "Tiro Bangla", serif;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.05;
  color: var(--paper);
  font-style: italic;
  margin-bottom: 18px;
}
.section-sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.4vw, 22px);
  color: rgba(237, 228, 207, 0.62);
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 80px;
}

/* ============ POETRY UNIVERSE ============ */
.poetry-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.poetry-card {
  position: relative;
  padding: 56px 48px;
  background:
    linear-gradient(
      135deg,
      rgba(237, 228, 207, 0.04),
      rgba(237, 228, 207, 0.01)
    ),
    var(--glass-bg);
  border: 1px solid var(--glass-bord);
  border-radius: 2px;
  backdrop-filter: blur(12px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.04);
}
.poetry-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(233, 182, 87, 0.12);
  pointer-events: none;
}
.poetry-card .corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--gold);
}
.corner.tl {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}
.corner.tr {
  top: -1px;
  right: -1px;
  border-left: none;
  border-bottom: none;
}
.corner.bl {
  bottom: -1px;
  left: -1px;
  border-right: none;
  border-top: none;
}
.corner.br {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.poem-bn {
  font-family: "Noto Serif Bengali", serif;
  font-weight: 400;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.85;
  color: var(--paper);
  margin-bottom: 32px;
  font-style: normal;
}
.poem-bn .ink {
  background-image: linear-gradient(
    90deg,
    var(--gold-3),
    var(--paper),
    var(--gold-3)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.poem-en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(237, 228, 207, 0.55);
  line-height: 1.7;
  margin-bottom: 32px;
  border-left: 1px solid var(--gold);
  padding-left: 22px;
}
.poem-attr {
  font-family: "Caveat", cursive;
  font-size: 28px;
  color: var(--gold-3);
  text-align: right;
}

.poetry-visual {
  position: relative;
  height: 540px;
}
.tagore-portrait {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tagore-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(12, 7, 4, 0.38));
}
.floating-quote {
  position: absolute;
  font-family: "Caveat", cursive;
  font-size: 22px;
  color: rgba(233, 182, 87, 0.6);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  text-shadow: 0 0 20px rgba(233, 182, 87, 0.3);
}

/* ============ SUNDAY SUSPENSE ============ */
.suspense-section {
  background:
    radial-gradient(
      ellipse 80% 50% at 50% 50%,
      rgba(20, 15, 10, 0.6),
      transparent 70%
    ),
    linear-gradient(180deg, transparent, rgba(8, 5, 3, 0.4), transparent);
}
.flashlight-container {
  position: relative;
  width: 100%;
  margin-top: 60px;
}
.noir-case {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: flex-start;
}
.case-file {
  position: relative;
  padding: 52px 44px;
  background: repeating-linear-gradient(
    0deg,
    rgba(217, 204, 174, 0.95) 0px,
    rgba(217, 204, 174, 0.95) 30px,
    rgba(217, 204, 174, 0.92) 30px,
    rgba(217, 204, 174, 0.92) 31px
  );
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  transform: rotate(-1.2deg);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 80px 120px rgba(0, 0, 0, 0.4),
    inset 0 0 40px rgba(120, 90, 40, 0.18);
}
.case-file::before {
  content: "CONFIDENTIAL · গোপনীয়";
  position: absolute;
  top: 18px;
  right: -42px;
  background: var(--crimson);
  color: var(--paper);
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  padding: 7px 50px;
  transform: rotate(35deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.case-file::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(40, 30, 15, 0.35);
  pointer-events: none;
}
.case-stamp {
  position: absolute;
  bottom: 32px;
  right: 40px;
  width: 90px;
  height: 90px;
  border: 3px solid var(--crimson);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-align: center;
  transform: rotate(-12deg);
  opacity: 0.78;
}
.case-stamp .yr {
  font-size: 16px;
  letter-spacing: 0.05em;
  margin: 3px 0;
}

.case-title {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: 38px;
  line-height: 1.1;
  margin-bottom: 8px;
  color: #1a1208;
}
.case-meta {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--crimson);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(40, 30, 15, 0.3);
}
.case-meta span + span::before {
  content: " · ";
  opacity: 0.6;
}
.case-body {
  font-size: 16px;
  line-height: 1.85;
  color: #2a1d0d;
  font-style: italic;
}
.case-body p {
  margin-bottom: 14px;
}
.case-body .typed-line {
  color: #1a1208;
  font-style: normal;
  font-weight: 500;
}

.radio-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
}
.vintage-radio {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 5/4;
  background: linear-gradient(
    135deg,
    #3a2412 0%,
    #5c3a1e 30%,
    #4a2d15 60%,
    #2c1a0a 100%
  );
  border-radius: 18px 18px 6px 6px;
  padding: 28px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.7),
    inset 0 2px 4px rgba(255, 210, 140, 0.2),
    inset 0 -8px 30px rgba(0, 0, 0, 0.5);
  cursor: none;
}
.vintage-radio::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(233, 182, 87, 0.18);
  border-radius: 12px 12px 4px 4px;
  pointer-events: none;
}
.radio-grille {
  position: relative;
  height: 56%;
  background: repeating-linear-gradient(
    90deg,
    rgba(20, 12, 5, 0.95) 0,
    rgba(20, 12, 5, 0.95) 1px,
    rgba(60, 40, 18, 0.7) 1px,
    rgba(60, 40, 18, 0.7) 4px
  );
  border-radius: 6px;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.radio-grille .wave-viz {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 60%;
}
.radio-grille .wave-viz span {
  display: block;
  width: 3px;
  background: var(--gold-3);
  border-radius: 2px;
  box-shadow: 0 0 6px var(--gold);
  animation: vizPulse 1.1s ease-in-out infinite;
  height: 30%;
}
.radio-grille .wave-viz span:nth-child(2) {
  animation-delay: 0.1s;
  height: 60%;
}
.radio-grille .wave-viz span:nth-child(3) {
  animation-delay: 0.2s;
  height: 85%;
}
.radio-grille .wave-viz span:nth-child(4) {
  animation-delay: 0.15s;
  height: 45%;
}
.radio-grille .wave-viz span:nth-child(5) {
  animation-delay: 0.05s;
  height: 70%;
}
.radio-grille .wave-viz span:nth-child(6) {
  animation-delay: 0.25s;
  height: 92%;
}
.radio-grille .wave-viz span:nth-child(7) {
  animation-delay: 0.18s;
  height: 55%;
}
.radio-grille .wave-viz span:nth-child(8) {
  animation-delay: 0.08s;
  height: 78%;
}
.radio-grille .wave-viz span:nth-child(9) {
  animation-delay: 0.22s;
  height: 38%;
}
@keyframes vizPulse {
  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}
.radio-grille.silent .wave-viz span {
  animation-play-state: paused;
  opacity: 0.25;
}

.radio-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  padding: 0 6px;
}
.radio-dial {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #e9b657, #c8902f 60%, #6e4d18);
  box-shadow:
    inset 0 -3px 6px rgba(0, 0, 0, 0.5),
    0 4px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  cursor: none;
  transition: transform 0.4s ease;
}
.radio-dial::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 12px;
  background: var(--ink);
  border-radius: 2px;
  transform: translateX(-50%);
}
.radio-dial.on {
  animation: dialSpin 8s linear infinite;
  box-shadow:
    inset 0 -3px 6px rgba(0, 0, 0, 0.5),
    0 0 24px var(--gold);
}
@keyframes dialSpin {
  to {
    transform: rotate(360deg);
  }
}

.radio-display {
  flex: 1;
  margin: 0 16px;
  height: 36px;
  background: linear-gradient(180deg, #1a0e05, #2a1810);
  border: 1px solid rgba(233, 182, 87, 0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  overflow: hidden;
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold-3);
  text-shadow: 0 0 8px var(--gold);
  position: relative;
}
.radio-display .scroll-text {
  white-space: nowrap;
  animation: scrollText 14s linear infinite;
}
@keyframes scrollText {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.radio-toggle {
  margin-top: 24px;
  padding: 12px 32px;
  background: rgba(20, 12, 5, 0.7);
  border: 1px solid rgba(233, 182, 87, 0.4);
  color: var(--gold-3);
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s ease;
}
.radio-toggle:hover {
  background: rgba(233, 182, 87, 0.15);
}

.suspense-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 90px;
}
.case-mini {
  position: relative;
  padding: 32px 26px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bord);
  backdrop-filter: blur(10px);
  cursor: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.case-mini:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(233, 182, 87, 0.2);
}
.case-mini .num {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 14px;
}
.case-mini h4 {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: 24px;
  color: var(--paper);
  margin-bottom: 8px;
}
.case-mini .sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(237, 228, 207, 0.55);
  line-height: 1.6;
}
.case-mini .play {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--gold-3);
}
.case-mini .play svg {
  width: 12px;
  height: 12px;
  fill: var(--gold-3);
}

/* ============ MOUNTAINS ============ */
.mountain-section {
  position: relative;
  min-height: 130vh;
  padding: 140px 8vw 100px;
  overflow: hidden;
}
.mountain-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.mountain-stage svg {
  width: 100%;
  height: 100%;
}
.mountain-layer {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}
.mt-far {
  bottom: 0;
  height: 60%;
  opacity: 0.65;
}
.mt-mid {
  bottom: 0;
  height: 45%;
  opacity: 0.85;
}
.mt-near {
  bottom: 0;
  height: 32%;
  opacity: 1;
}

.mountain-text {
  position: relative;
  z-index: 10;
  max-width: 620px;
  margin-top: 50px;
}
.sun-orb {
  position: absolute;
  top: 18%;
  right: 14%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    #ffd28a,
    #e9b657 40%,
    rgba(233, 182, 87, 0.4) 60%,
    transparent 75%
  );
  filter: blur(2px);
  z-index: 2;
  box-shadow:
    0 0 120px rgba(233, 182, 87, 0.55),
    0 0 240px rgba(255, 138, 61, 0.4);
  animation: sunRise 12s ease-in-out infinite alternate;
}
@keyframes sunRise {
  0% {
    transform: translateY(0) scale(1);
    filter: blur(2px) hue-rotate(0deg);
  }
  100% {
    transform: translateY(-30px) scale(1.05);
    filter: blur(2px) hue-rotate(-8deg);
  }
}

.tea-shed {
  position: absolute;
  bottom: 24%;
  left: 8%;
  z-index: 8;
  width: 180px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.6));
}

/* ============ OLD KOLKATA ============ */
.kolkata-section {
  position: relative;
  min-height: 130vh;
  padding: 140px 0 100px;
  overflow: hidden;
}
.kolkata-section .section-head {
  padding: 0 8vw;
  position: relative;
  z-index: 10;
}
.street-stage {
  position: relative;
  height: 70vh;
  margin-top: 60px;
  overflow: hidden;
}
.street-stage svg {
  display: block;
  width: 100%;
  height: 100%;
}
.wet-puddle {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 50px;
  background: radial-gradient(
    ellipse at center,
    rgba(233, 182, 87, 0.18),
    transparent 70%
  );
  filter: blur(8px);
  z-index: 5;
}
.taxi {
  position: absolute;
  bottom: 22%;
  width: 220px;
  z-index: 8;
  animation: taxiDrive 14s linear infinite;
}
.taxi svg {
  width: 100%;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
}
@keyframes taxiDrive {
  0% {
    left: -240px;
  }
  100% {
    left: 110%;
  }
}
.tram-bell {
  position: absolute;
  bottom: 28%;
  right: 4%;
  width: 60px;
  height: 60px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bord);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12;
  cursor: none;
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease;
}
.tram-bell:hover {
  transform: scale(1.12);
}
.tram-bell svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-3);
}

.kolkata-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  padding: 80px 8vw 0;
  position: relative;
  z-index: 10;
}
.mosaic-card {
  position: relative;
  padding: 36px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bord);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mosaic-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.mosaic-card .bn {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: 28px;
  color: var(--gold-3);
  margin-bottom: 6px;
}
.mosaic-card .en {
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 0.42em;
  color: rgba(237, 228, 207, 0.4);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.mosaic-card .desc {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(237, 228, 207, 0.65);
}
.mc-1 {
  grid-column: 1 / 5;
  grid-row: 1;
}
.mc-2 {
  grid-column: 5 / 9;
  grid-row: 1 / 3;
  min-height: 240px;
}
.mc-3 {
  grid-column: 9 / 13;
  grid-row: 1;
}
.mc-4 {
  grid-column: 1 / 5;
  grid-row: 2;
}
.mc-5 {
  grid-column: 9 / 13;
  grid-row: 2;
}

/* ============ DURGA PUJA ============ */
.puja-section {
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(194, 39, 29, 0.18),
      transparent 60%
    ),
    radial-gradient(
      circle at 50% 60%,
      rgba(233, 182, 87, 0.12),
      transparent 60%
    );
  position: relative;
  overflow: hidden;
}
.pandal-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
  margin-top: 50px;
}
.pandal-art {
  position: relative;
  aspect-ratio: 4/5;
}
.pandal-art svg,
.art-figure img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 40px rgba(233, 182, 87, 0.3));
  object-fit: contain;
}
.art-figure {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.durga-portrait::after,
.durga-eyes-image::after {
  content: "";
  position: absolute;
  inset: 6%;
  background: radial-gradient(
    circle at center,
    rgba(233, 182, 87, 0.18),
    transparent 62%
  );
  filter: blur(14px);
  pointer-events: none;
}
.lights-string {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  display: flex;
  justify-content: space-around;
  z-index: 12;
}
.lights-string .bulb {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-3);
  box-shadow:
    0 0 12px var(--gold),
    0 0 24px var(--ember);
  animation: bulbBlink 1.4s ease-in-out infinite;
}
.lights-string .bulb:nth-child(2n) {
  background: #ff7050;
  box-shadow:
    0 0 12px #ff8a3d,
    0 0 24px #c2271d;
  animation-delay: 0.3s;
}
.lights-string .bulb:nth-child(3n) {
  background: #6abeff;
  box-shadow:
    0 0 12px #4a9eff,
    0 0 24px #2a5a5f;
  animation-delay: 0.6s;
}
.lights-string .bulb:nth-child(5n) {
  background: #b48aff;
  box-shadow: 0 0 12px #8a5cff;
  animation-delay: 0.9s;
}
@keyframes bulbBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.puja-rhythm {
  position: relative;
  padding: 56px 44px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bord);
  backdrop-filter: blur(10px);
}
.puja-rhythm .corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--gold);
}
.dhaak-trigger {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  background: linear-gradient(
    135deg,
    rgba(194, 39, 29, 0.18),
    rgba(233, 182, 87, 0.12)
  );
  border: 1px solid rgba(194, 39, 29, 0.5);
  color: var(--paper);
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
}
.dhaak-trigger:hover {
  background: rgba(194, 39, 29, 0.3);
  letter-spacing: 0.45em;
}
.puja-countdown {
  margin-top: 28px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(237, 228, 207, 0.85);
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  line-height: 1.6;
}
.puja-countdown strong {
  display: block;
  font-size: 12px;
  color: rgba(233, 182, 87, 0.95);
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.puja-countdown .count-value {
  display: inline-block;
  font-size: 22px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.04em;
  color: var(--paper);
}
.dhaak-trigger .pulse {
  width: 10px;
  height: 10px;
  background: var(--sindoor);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--sindoor);
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

.sindoor-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}
.sindoor-particles .dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sindoor);
  box-shadow: 0 0 8px var(--sindoor);
  opacity: 0;
}

/* ============ FOOD & WARMTH ============ */
.food-section {
  position: relative;
}
.food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 60px;
  align-items: center;
}
.tea-cup-stage {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tea-cup-stage svg,
.tea-cup-image {
  width: 100%;
  height: 150%;
  object-fit: contain;
}
.tea-cup-image {
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
}
.steam {
  position: absolute;
  bottom: 64%;
  width: 12px;
  height: 80px;
  background: radial-gradient(
    ellipse at center bottom,
    rgba(237, 228, 207, 0.55),
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(6px);
  animation: steam 4s ease-in-out infinite;
  opacity: 0;
}
@keyframes steam {
  0% {
    transform: translateY(0) scaleX(1);
    opacity: 0;
  }
  20% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-180px) scaleX(2.2);
    opacity: 0;
  }
}

.menu-card {
  padding: 50px 44px;
  background:
    linear-gradient(
      135deg,
      rgba(237, 228, 207, 0.04),
      rgba(237, 228, 207, 0.01)
    ),
    var(--glass-bg);
  border: 1px solid var(--glass-bord);
  backdrop-filter: blur(12px);
  position: relative;
}
.menu-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(233, 182, 87, 0.12);
  pointer-events: none;
}
.menu-header {
  text-align: center;
  border-bottom: 1px dashed rgba(233, 182, 87, 0.3);
  padding-bottom: 22px;
  margin-bottom: 28px;
}
.menu-header .bn {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: 36px;
  color: var(--gold-3);
  margin-bottom: 4px;
}
.menu-header .en {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: rgba(237, 228, 207, 0.55);
  text-transform: uppercase;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dotted rgba(233, 182, 87, 0.18);
  font-family: "Cormorant Garamond", serif;
}
.menu-item:last-child {
  border-bottom: none;
}
.menu-item .name {
  font-size: 18px;
  font-style: italic;
  color: var(--paper);
}
.menu-item .name .bn {
  font-family: "Noto Serif Bengali", serif;
  font-style: normal;
  font-size: 14px;
  color: rgba(237, 228, 207, 0.5);
  margin-left: 8px;
}
.menu-item .price {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold);
}

/* ============ MAP ============ */
.map-section {
  padding: 140px 8vw;
  position: relative;
}
.kolkata-map {
  position: relative;
  margin-top: 60px;
  aspect-ratio: 16/9;
  background:
    radial-gradient(
      ellipse at 50% 50%,
      rgba(42, 90, 95, 0.18),
      transparent 70%
    ),
    var(--glass-bg);
  border: 1px solid var(--glass-bord);
  backdrop-filter: blur(8px);
  padding: 40px;
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(233, 182, 87, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 182, 87, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}
.map-rivers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.map-rivers svg {
  width: 100%;
  height: 100%;
}

.hotspot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: none;
  z-index: 5;
}
.hotspot::before {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--gold-3);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
}
.hotspot::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: hotspotPing 2.2s ease-out infinite;
}
@keyframes hotspotPing {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
.hotspot .tooltip {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 16px;
  background: rgba(8, 5, 3, 0.95);
  border: 1px solid var(--gold);
  white-space: nowrap;
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold-3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.hotspot .tooltip .sub {
  display: block;
  font-family: "Cinzel", serif;
  font-style: normal;
  font-size: 8px;
  letter-spacing: 0.32em;
  color: rgba(237, 228, 207, 0.55);
  margin-top: 3px;
}
.hotspot:hover .tooltip {
  opacity: 1;
}

/* ============ FOOTER ============ */
.footer {
  position: relative;
  padding: 120px 8vw 60px;
  text-align: center;
  z-index: 10;
}
.footer-quote {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--paper);
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.4;
}
.footer-attr {
  font-family: "Caveat", cursive;
  font-size: 26px;
  color: var(--gold-3);
  margin-bottom: 80px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(233, 182, 87, 0.15);
  padding-top: 32px;
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.42em;
  color: rgba(237, 228, 207, 0.4);
  text-transform: uppercase;
}

/* =====================================================
   ABHIPSA — symbolic name appearances
===================================================== */
.abhipsa-whisper {
  position: fixed;
  pointer-events: none;
  z-index: 200;
  font-family: "Caveat", cursive;
  font-size: 38px;
  color: rgba(246, 214, 138, 0.85);
  text-shadow:
    0 0 24px rgba(233, 182, 87, 0.5),
    0 0 60px rgba(233, 182, 87, 0.25);
  opacity: 0;
  letter-spacing: 0.04em;
}
.abhipsa-fog {
  position: absolute;
  font-family: "Caveat", cursive;
  font-size: 42px;
  color: rgba(237, 228, 207, 0.55);
  text-shadow: 0 0 16px rgba(237, 228, 207, 0.25);
  pointer-events: none;
  opacity: 0;
  filter: blur(0.4px);
  transform: rotate(-3deg);
}

/* lightning name flash */
.lightning-name {
  position: fixed;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: 78px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 0 40px rgba(180, 220, 255, 0.7);
  letter-spacing: 0.08em;
  pointer-events: none;
  z-index: 4500;
  opacity: 0;
  mix-blend-mode: screen;
}

/* =====================================================
   SANTINIKETAN / RABINDRA UNIVERSE
===================================================== */
.santiniketan-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 70% 50% at 50% 30%,
      rgba(233, 182, 87, 0.18),
      transparent 65%
    ),
    radial-gradient(
      ellipse 60% 40% at 80% 80%,
      rgba(138, 90, 24, 0.12),
      transparent 60%
    );
}
.diary-stage {
  position: relative;
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.diary-book {
  position: relative;
  aspect-ratio: 5/4;
  perspective: 1800px;
  width: 100%;
  max-width: 760px;
}
.diary-spread {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(237, 228, 207, 0.95),
    rgba(217, 204, 174, 0.92)
  );
  border-radius: 4px 8px 8px 4px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    inset 0 0 60px rgba(120, 90, 40, 0.18),
    inset 4px 0 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.diary-spread::before {
  /* center seam */
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 22px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.18),
    transparent
  );
}
.diary-spread::after {
  /* paper texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence baseFrequency='0.65' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.32'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.32;
  pointer-events: none;
}
.diary-page {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  padding: 38px 36px;
  color: #2a1d0d;
  font-family: "Noto Serif Bengali", serif;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}
.diary-page.left {
  left: 0;
  padding-right: 28px;
}
.diary-page.right {
  right: 0;
  padding-left: 28px;
}
.diary-num {
  position: absolute;
  bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: #6e4d18;
  opacity: 0.55;
}
.diary-page.left .diary-num {
  right: 24px;
}
.diary-page.right .diary-num {
  left: 24px;
}
.diary-quote {
  font-family: "Noto Serif Bengali", serif;
  font-size: 18px;
  line-height: 1.95;
  color: #1a1208;
  font-weight: 400;
}
.diary-quote .ink-fade {
  display: inline-block;
  color: #1a1208;
}
.diary-note {
  margin-top: auto;
  font-family: "Caveat", cursive;
  font-size: 22px;
  color: #6a3a14;
  transform: rotate(-1.5deg);
  line-height: 1.4;
}
.diary-controls {
  position: absolute;
  bottom: -52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  width: max-content;
}
.diary-btn {
  padding: 10px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bord);
  color: var(--gold-3);
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s ease;
}
.diary-btn:hover {
  border-color: var(--gold);
  color: var(--paper);
}
.diary-flip {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(
    135deg,
    rgba(217, 204, 174, 0.95),
    rgba(180, 160, 120, 0.88)
  );
  transform-origin: left center;
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.santiniketan-side {
  position: relative;
}
.santiniketan-illust {
  width: 100%;
  aspect-ratio: 4/5;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}
.dance-silhouette {
  position: relative;
  width: 100%;
  height: 100%;
}
.lantern {
  position: absolute;
  width: 36px;
  height: 50px;
  cursor: none;
}
.lantern::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 12px;
  background: #3a2a18;
  transform: translateX(-50%);
}
.lantern .body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 12px;
  background: linear-gradient(180deg, #c2271d, #6a1612);
  border-radius: 6px 6px 4px 4px;
  box-shadow:
    0 0 24px var(--ember),
    0 0 50px rgba(255, 138, 61, 0.5);
}
.lantern .body::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 6px;
  background: #3a0a06;
  border-radius: 0 0 8px 8px;
}
.lantern.float {
  animation: lanternFloat 4s ease-in-out infinite;
}
@keyframes lanternFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

.he-nutan-banner {
  position: relative;
  margin-top: 90px;
  padding: 80px 60px;
  background: linear-gradient(
    135deg,
    rgba(194, 39, 29, 0.08),
    rgba(233, 182, 87, 0.05)
  );
  border-top: 1px solid rgba(233, 182, 87, 0.2);
  border-bottom: 1px solid rgba(233, 182, 87, 0.2);
  text-align: center;
}
.he-nutan-banner .quote-bn {
  font-family: "Noto Serif Bengali", serif;
  font-style: italic;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.35;
  color: var(--gold-3);
  margin-bottom: 18px;
  text-shadow: 0 0 40px rgba(233, 182, 87, 0.3);
}
.he-nutan-banner .quote-en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  color: rgba(237, 228, 207, 0.6);
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.he-nutan-banner .quote-attr {
  font-family: "Caveat", cursive;
  font-size: 26px;
  color: rgba(246, 214, 138, 0.85);
}

/* dance silhouette canvas */
.dance-art {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
}
.dance-art svg {
  width: 100%;
  height: 100%;
}

/* =====================================================
   HEMANTA DREAMSCAPE — blue moonlit
===================================================== */
.hemanta-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 60% 40% at 30% 20%,
      rgba(60, 100, 160, 0.22),
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 70% 70%,
      rgba(180, 220, 255, 0.08),
      transparent 65%
    ),
    linear-gradient(180deg, #050810 0%, #060d18 40%, #080f1c 70%, #060810 100%);
}
.moon {
  position: absolute;
  top: 12%;
  right: 12%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    #f0eedd 0%,
    #c8c8c0 60%,
    rgba(200, 200, 192, 0.4) 80%,
    transparent
  );
  box-shadow:
    0 0 80px rgba(200, 220, 255, 0.5),
    0 0 200px rgba(120, 160, 220, 0.3);
  z-index: 2;
}
.moon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 60% 30%,
      rgba(140, 140, 140, 0.18) 0%,
      transparent 12%
    ),
    radial-gradient(
      circle at 30% 60%,
      rgba(140, 140, 140, 0.15) 0%,
      transparent 10%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(140, 140, 140, 0.12) 0%,
      transparent 8%
    );
}
.dhrubatara {
  position: absolute;
  top: 8%;
  right: 38%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 20px #fff,
    0 0 40px rgba(180, 220, 255, 0.8),
    0 0 80px rgba(120, 160, 220, 0.4);
  z-index: 3;
  animation: dhrubataraPulse 3s ease-in-out infinite;
}
@keyframes dhrubataraPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
  }
}

.hemanta-stage {
  position: relative;
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  z-index: 10;
}

/* vinyl */
.vinyl-stage {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vinyl {
  position: relative;
  width: 88%;
  height: 88%;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle at center,
      #0a0d14 0px,
      #0a0d14 2px,
      #15181f 2px,
      #15181f 4px
    ),
    radial-gradient(circle at center, #1a1d24 0%, #06080d 100%);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(100, 140, 200, 0.18),
    inset 0 0 60px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vinyl.spin {
  animation: vinylSpin 6s linear infinite;
}
@keyframes vinylSpin {
  to {
    transform: rotate(360deg);
  }
}
.vinyl-label {
  position: relative;
  width: 36%;
  height: 36%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #c2271d, #6a1612);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gold-3);
  box-shadow: inset 0 -4px 12px rgba(0, 0, 0, 0.5);
  padding: 6%;
}
.vinyl-label .v-title {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.vinyl-label .v-artist {
  font-family: "Cinzel", serif;
  font-size: 8px;
  letter-spacing: 0.32em;
  opacity: 0.8;
}
.vinyl-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0a0d14;
  transform: translate(-50%, -50%);
}
.tonearm {
  position: absolute;
  top: 8%;
  right: 6%;
  width: 38%;
  height: 4px;
  background: linear-gradient(90deg, #4a4a4a, #2a2a2a);
  transform-origin: right center;
  transform: rotate(-22deg);
  z-index: 5;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.tonearm::before {
  content: "";
  position: absolute;
  right: -8px;
  top: -10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5a5a5a, #2a2a2a);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}
.tonearm::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #3a3a3a, #1a1a1a);
  transform: translateY(-50%);
}
.vinyl-stage.playing .tonearm {
  transform: rotate(-10deg);
}

/* lyrics window */
.lyrics-window {
  position: relative;
  padding: 56px 44px;
  background:
    linear-gradient(135deg, rgba(40, 60, 100, 0.18), rgba(20, 30, 50, 0.32)),
    var(--glass-bg);
  border: 1px solid rgba(180, 220, 255, 0.18);
  backdrop-filter: blur(14px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(100, 140, 200, 0.08);
}
.lyrics-window .corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(180, 220, 255, 0.6);
}
.lyrics-title-bn {
  font-family: "Noto Serif Bengali", serif;
  font-size: 28px;
  color: rgba(220, 235, 255, 0.95);
  margin-bottom: 4px;
  line-height: 1.3;
}
.lyrics-title-en {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(180, 200, 230, 0.5);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.lyric-line {
  font-family: "Noto Serif Bengali", serif;
  font-size: 22px;
  line-height: 1.95;
  color: rgba(220, 235, 255, 0.85);
  margin-bottom: 12px;
  opacity: 0.3;
  transition:
    opacity 1s ease,
    color 1s ease;
}
.lyric-line.active {
  opacity: 1;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 0 24px rgba(180, 220, 255, 0.4);
}
.lyric-line .trans {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(180, 200, 230, 0.55);
  margin-top: 2px;
  font-weight: 300;
}
.lyrics-controls {
  margin-top: 22px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.music-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(180, 220, 255, 0.1);
  border: 1px solid rgba(180, 220, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.3s ease;
}
.music-play:hover {
  background: rgba(180, 220, 255, 0.2);
}
.music-play svg {
  width: 18px;
  height: 18px;
  fill: rgba(220, 235, 255, 0.95);
}

.audio-bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 22px;
}
.audio-bars span {
  display: block;
  width: 2px;
  background: rgba(220, 235, 255, 0.5);
  height: 30%;
  animation: barPulse 1s ease-in-out infinite;
}
.audio-bars span:nth-child(2) {
  animation-delay: 0.1s;
}
.audio-bars span:nth-child(3) {
  animation-delay: 0.2s;
}
.audio-bars span:nth-child(4) {
  animation-delay: 0.15s;
}
.audio-bars span:nth-child(5) {
  animation-delay: 0.05s;
}
.audio-bars span:nth-child(6) {
  animation-delay: 0.25s;
}
.audio-bars span:nth-child(7) {
  animation-delay: 0.08s;
}
@keyframes barPulse {
  0%,
  100% {
    height: 30%;
  }
  50% {
    height: 90%;
  }
}
.audio-bars.paused span {
  animation-play-state: paused;
  opacity: 0.3;
}

.window-silhouette {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 320px;
  height: 60%;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 0 30px rgba(120, 160, 220, 0.2));
}

/* =====================================================
   FELUDA / BYOMKESH DETECTIVE ROOM
===================================================== */
.detective-section {
  position: relative;
  background:
    radial-gradient(ellipse at center, rgba(40, 28, 15, 0.45), transparent 60%),
    linear-gradient(180deg, #060709 0%, #08070a 60%, #050608 100%);
  overflow: hidden;
}
.detective-desk {
  position: relative;
  margin-top: 70px;
  padding: 60px;
  background: linear-gradient(135deg, #2a1d10 0%, #1a1208 60%, #0e0904 100%);
  border: 1px solid rgba(233, 182, 87, 0.18);
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.8),
    inset 0 0 80px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.desk-lamp-glow {
  position: absolute;
  top: -100px;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle at center,
    rgba(233, 182, 87, 0.32) 0%,
    rgba(233, 182, 87, 0.06) 40%,
    transparent 70%
  );
  pointer-events: none;
  filter: blur(8px);
}
.case-board {
  position: relative;
  z-index: 5;
}
.case-board h3 {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: 36px;
  color: var(--gold-3);
  margin-bottom: 12px;
}
.case-board p {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(237, 228, 207, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}
.clue-pile {
  position: relative;
  margin-top: 20px;
}
.clue {
  position: relative;
  padding: 14px 18px;
  background: rgba(217, 204, 174, 0.92);
  color: #1a1208;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  margin-bottom: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
  transform: rotate(-1.5deg);
  border-left: 3px solid var(--crimson);
}
.clue:nth-child(2) {
  transform: rotate(1.2deg);
}
.clue:nth-child(3) {
  transform: rotate(-0.8deg);
}
.clue .num {
  font-family: "Cinzel", serif;
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--crimson);
  display: block;
  margin-bottom: 4px;
}
.clue.ticket {
  background: linear-gradient(135deg, #d9ccae, #c2b189);
  font-family: "Cinzel", serif;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-align: center;
  padding: 18px;
  border-left: none;
  position: relative;
  transform: rotate(2deg);
}
.clue.ticket::before,
.clue.ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--ink);
  border-radius: 50%;
  transform: translateY(-50%);
}
.clue.ticket::before {
  left: -5px;
}
.clue.ticket::after {
  right: -5px;
}
.clue.ticket .big {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.04em;
  display: block;
  margin: 4px 0;
  color: #1a1208;
}
.clue.ticket .uv-hint {
  display: block;
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--crimson);
}

/* magnifier */
.magnify-zone {
  position: relative;
}
.magnify-zone .scroll-doc {
  position: relative;
  padding: 38px 32px;
  background: linear-gradient(
    180deg,
    rgba(217, 204, 174, 0.95),
    rgba(190, 172, 135, 0.9)
  );
  color: #1a1208;
  font-family: "Cormorant Garamond", serif;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  min-height: 380px;
  cursor: none;
  position: relative;
  overflow: hidden;
}
.scroll-doc .doc-head {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.42em;
  color: var(--crimson);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(40, 30, 15, 0.4);
}
.scroll-doc h4 {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: 28px;
  color: #1a1208;
  margin-bottom: 12px;
}
.scroll-doc .doc-body {
  font-size: 15px;
  line-height: 1.85;
  font-style: italic;
  color: #2a1d0d;
}
.scroll-doc .doc-body p {
  margin-bottom: 12px;
}
.scroll-doc .hidden-ink {
  color: rgba(40, 30, 15, 0.05);
  font-style: normal;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s ease;
}

.magnifier {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid #4a3018;
  background: rgba(255, 245, 200, 0.08);
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  box-shadow:
    inset 0 0 30px rgba(233, 182, 87, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  backdrop-filter: contrast(1.5) brightness(1.4) hue-rotate(-15deg);
  mix-blend-mode: lighten;
}
.magnify-zone:hover .magnifier {
  opacity: 1;
}
.magnify-zone:hover .scroll-doc .hidden-ink {
  color: var(--crimson);
}

.password-box {
  position: relative;
  margin-top: 56px;
  padding: 44px 36px;
  background: linear-gradient(
    135deg,
    rgba(40, 28, 15, 0.95),
    rgba(20, 14, 8, 0.95)
  );
  border: 1px solid rgba(233, 182, 87, 0.3);
  text-align: center;
  z-index: 5;
}
.password-box .corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--crimson);
}
.password-box .riddle-label {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--crimson);
  margin-bottom: 14px;
}
.password-box .riddle {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: 26px;
  color: var(--gold-3);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.password-box .riddle-sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(237, 228, 207, 0.45);
  margin-bottom: 28px;
}
.password-box .pw-input {
  background: rgba(8, 5, 3, 0.85);
  border: 1px solid rgba(233, 182, 87, 0.4);
  color: var(--gold-3);
  font-family: "Cinzel", serif;
  font-size: 18px;
  letter-spacing: 0.4em;
  text-align: center;
  padding: 14px 24px;
  width: 280px;
  outline: none;
  cursor: none;
  transition: all 0.3s ease;
}
.password-box .pw-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(233, 182, 87, 0.25);
}
.password-box .pw-submit {
  margin-left: 12px;
  padding: 14px 24px;
  background: rgba(233, 182, 87, 0.12);
  border: 1px solid rgba(233, 182, 87, 0.5);
  color: var(--gold-3);
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s ease;
}
.password-box .pw-submit:hover {
  background: rgba(233, 182, 87, 0.25);
}
.password-box .pw-hint {
  margin-top: 18px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(237, 228, 207, 0.4);
}
.password-box .pw-hint .wrong {
  color: var(--sindoor);
}

/* unlocked room */
.hidden-room {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 40% at 50% 50%,
      rgba(40, 30, 15, 0.4),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(8, 6, 4, 0.95));
  backdrop-filter: blur(20px);
  z-index: 9800;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
}
.hidden-room.open {
  display: flex;
}
.hidden-room-card {
  max-width: 720px;
  padding: 70px 60px;
  background: linear-gradient(
    135deg,
    rgba(40, 28, 15, 0.65),
    rgba(20, 12, 5, 0.85)
  );
  border: 1px solid rgba(233, 182, 87, 0.4);
  position: relative;
  text-align: center;
  backdrop-filter: blur(20px);
}
.hidden-room-card .corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--gold);
}
.hidden-room-card .label {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hidden-room-card .monologue {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.6;
  color: var(--paper);
  margin-bottom: 30px;
}
.hidden-room-card .monologue em {
  color: var(--gold-3);
  font-style: italic;
  text-shadow: 0 0 20px rgba(233, 182, 87, 0.5);
}
.hidden-room-card .foggy-glass {
  position: relative;
  margin: 30px auto;
  max-width: 380px;
  aspect-ratio: 16/9;
  background: linear-gradient(
    180deg,
    rgba(180, 200, 230, 0.08),
    rgba(140, 160, 200, 0.18)
  );
  border: 1px solid rgba(180, 200, 230, 0.25);
  backdrop-filter: blur(6px);
  overflow: hidden;
}
.foggy-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.025' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.4;
  mix-blend-mode: screen;
}
.foggy-glass .name-on-fog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Caveat", cursive;
  font-size: 48px;
  color: rgba(237, 228, 207, 0.92);
  letter-spacing: 0.04em;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  opacity: 0;
}
.foggy-glass .name-on-fog::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 60%;
  height: 1px;
  background: rgba(237, 228, 207, 0.4);
  transform: translateX(-50%);
}
.hidden-room-close {
  margin-top: 12px;
  padding: 12px 28px;
  background: rgba(233, 182, 87, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold-3);
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  cursor: none;
}

/* =====================================================
   PATHER PANCHALI — train scene
===================================================== */
.panchali-section {
  position: relative;
  min-height: 110vh;
  background: linear-gradient(
    180deg,
    #ccb78a 0%,
    #b89c6b 30%,
    #8e7848 60%,
    #5a4a28 100%
  );
  overflow: hidden;
}
.panchali-sky {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70%;
  background:
    radial-gradient(
      ellipse 70% 50% at 70% 30%,
      rgba(255, 235, 180, 0.7),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(220, 200, 160, 0.95) 0%,
      rgba(200, 180, 140, 0.6) 50%,
      transparent 90%
    );
}
.panchali-sun {
  position: absolute;
  top: 22%;
  right: 22%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #fff5dc 0%,
    #f6d68a 60%,
    rgba(246, 214, 138, 0.3) 80%,
    transparent
  );
  box-shadow: 0 0 120px rgba(255, 220, 150, 0.7);
  filter: blur(1.5px);
}
.kash-field {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  pointer-events: none;
  z-index: 4;
}
.kash {
  position: absolute;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(200, 180, 140, 0.7) 50%,
    rgba(110, 77, 24, 0.6) 100%
  );
  transform-origin: bottom center;
  border-radius: 2px;
}
.kash::before {
  /* fluffy top */
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  width: 14px;
  height: 22px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.95),
    rgba(240, 235, 220, 0.4) 70%,
    transparent 90%
  );
  border-radius: 50% 50% 40% 40%;
  transform: translateX(-50%);
  filter: blur(0.6px);
}

.distant-train {
  position: absolute;
  bottom: 26%;
  left: -250px;
  width: 280px;
  height: 60px;
  z-index: 6;
  pointer-events: none;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.4));
}

.panchali-text {
  position: relative;
  z-index: 10;
  padding: 140px 8vw 80px;
  max-width: 700px;
}
.panchali-text .section-label {
  color: var(--rust);
}
.panchali-text .section-title {
  color: #2a1d0d;
}
.panchali-text .section-sub {
  color: rgba(50, 38, 18, 0.7);
}
.panchali-text .quote {
  font-family: "Caveat", cursive;
  font-size: 32px;
  color: #4a3018;
  margin-top: 30px;
  transform: rotate(-1deg);
  max-width: 520px;
  line-height: 1.45;
}

/* Apu-Durga silhouettes */
.apu-durga {
  position: absolute;
  bottom: 30%;
  right: 14%;
  width: 240px;
  z-index: 7;
  pointer-events: none;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

/* =====================================================
   GRAM BANGLA / Motherhood
===================================================== */
.gram-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 60% 50% at 30% 80%,
      rgba(194, 144, 47, 0.18),
      transparent 65%
    ),
    radial-gradient(
      ellipse 60% 50% at 70% 20%,
      rgba(40, 60, 40, 0.22),
      transparent 60%
    ),
    linear-gradient(180deg, #0c1010 0%, #110d08 60%, #150f06 100%);
}
.gram-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 80px;
}
.gram-art {
  position: relative;
  aspect-ratio: 4/5;
}
.gram-art svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}
.gram-text {
  position: relative;
}
.gram-text .quote-bn {
  font-family: "Noto Serif Bengali", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.6;
  color: var(--gold-3);
  margin-bottom: 20px;
  font-style: italic;
}
.gram-text .quote-en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(237, 228, 207, 0.6);
  line-height: 1.7;
  margin-bottom: 30px;
}
.gram-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}
.gram-feature {
  padding: 14px 22px;
  background: rgba(40, 28, 15, 0.55);
  border: 1px solid rgba(233, 182, 87, 0.2);
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: rgba(246, 214, 138, 0.85);
  text-transform: uppercase;
}
.gram-feature .bn {
  display: block;
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--gold-3);
  text-transform: none;
  margin-bottom: 3px;
}

.fireflies-village {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

/* =====================================================
   PUJA EXPANSION — Goddess eyes reveal + kaash
===================================================== */
.goddess-eyes {
  position: relative;
  margin-top: 80px;
  padding: 70px 50px;
  background:
    radial-gradient(ellipse at center, rgba(40, 28, 15, 0.5), transparent 70%),
    linear-gradient(180deg, rgba(8, 5, 3, 0.7), rgba(20, 14, 8, 0.5));
  border-top: 1px solid rgba(233, 182, 87, 0.15);
  border-bottom: 1px solid rgba(233, 182, 87, 0.15);
  overflow: hidden;
}
.eyes-stage {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 2.2/1;
}
.eyes-stage svg,
.durga-eyes-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.eyes-caption {
  text-align: center;
  margin-top: 24px;
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--gold-3);
}
.eyes-caption .en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: rgba(237, 228, 207, 0.5);
  margin-top: 8px;
  font-weight: 300;
}

/* Incense smoke */
.incense {
  position: absolute;
  bottom: 0;
  width: 14px;
  height: 0;
  background: radial-gradient(
    ellipse at center bottom,
    rgba(220, 210, 185, 0.5),
    transparent 70%
  );
  filter: blur(8px);
  border-radius: 50%;
  pointer-events: none;
}

/* =====================================================
   FINALE — Dawn over Kolkata
===================================================== */
.finale-section {
  position: relative;
  min-height: 110vh;
  background:
    radial-gradient(
      ellipse 80% 50% at 50% 100%,
      rgba(233, 182, 87, 0.18),
      transparent 70%
    ),
    radial-gradient(
      ellipse 60% 40% at 30% 30%,
      rgba(246, 214, 138, 0.12),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      #1a1410 0%,
      #2a1d10 25%,
      #3a2a18 50%,
      #4a3520 75%,
      #6a4d28 100%
    );
  overflow: hidden;
}
.finale-mountains {
  position: absolute;
  bottom: 30%;
  left: 0;
  right: 0;
  height: 30%;
  z-index: 2;
  opacity: 0.55;
}
.finale-mountains svg {
  width: 100%;
  height: 100%;
}
.finale-sun {
  position: absolute;
  top: 15%;
  right: 10%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #fff5dc,
    #f6d68a 60%,
    rgba(246, 214, 138, 0.4) 80%,
    transparent
  );
  box-shadow:
    0 0 200px rgba(255, 220, 150, 0.7),
    0 0 400px rgba(255, 180, 120, 0.4);
  z-index: 3;
}
.finale-content {
  position: relative;
  z-index: 10;
  padding: 200px 8vw 120px;
  text-align: center;
}
.finale-line {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.4;
  color: var(--paper);
  margin-bottom: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
}
.finale-line.em {
  color: var(--gold-3);
  text-shadow: 0 0 30px rgba(233, 182, 87, 0.3);
}
.finale-attr {
  font-family: "Caveat", cursive;
  font-size: clamp(40px, 4vw, 60px);
  color: var(--gold-3);
  opacity: 0;
  margin-top: 30px;
  text-shadow:
    0 0 30px rgba(233, 182, 87, 0.5),
    0 0 60px rgba(233, 182, 87, 0.25);
  letter-spacing: 0.04em;
}
.finale-attr .dash {
  color: rgba(237, 228, 207, 0.55);
  margin-right: 12px;
}

/* paper boat */
.paper-boat {
  position: absolute;
  width: 36px;
  height: 24px;
  pointer-events: none;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
  z-index: 5;
  opacity: 0;
}
.hero-letter-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
}
.hero-letter-layer .floating-letter {
  position: absolute;
  font-family: "Caveat", cursive;
  color: rgba(245, 233, 208, 0.92);
  font-size: clamp(16px, 1.4vw, 24px);
  opacity: 0.7;
  letter-spacing: 0.02em;
  text-shadow: 0 0 16px rgba(233, 182, 87, 0.25);
  animation: floatLetter 16s ease-in-out infinite;
}
.hero-letter-layer .floating-letter:nth-child(1) {
  left: 14%;
  top: 28%;
  animation-delay: 0s;
}
.hero-letter-layer .floating-letter:nth-child(2) {
  left: 70%;
  top: 20%;
  animation-delay: 3s;
}
.hero-letter-layer .floating-letter:nth-child(3) {
  left: 40%;
  top: 46%;
  animation-delay: 5s;
}
@keyframes floatLetter {
  0%,
  100% {
    transform: translate(0, 0) rotate(-1deg);
    opacity: 0.7;
  }
  30% {
    transform: translate(-12px, -10px) rotate(-1deg);
    opacity: 0.9;
  }
  60% {
    transform: translate(14px, 16px) rotate(1deg);
    opacity: 0.8;
  }
}
.fog-handwriting {
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translate(-50%, -50%);
  font-family: "Caveat", cursive;
  font-size: clamp(24px, 2.4vw, 38px);
  color: rgba(237, 228, 207, 0.24);
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 0 20px rgba(237, 228, 207, 0.18);
  filter: blur(0.4px);
  z-index: 12;
}
.ticket-collector {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.ticket-card {
  cursor: none;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(18, 16, 12, 0.82);
  border: 1px solid rgba(233, 182, 87, 0.18);
  color: rgba(237, 228, 207, 0.9);
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  min-width: 120px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.ticket-card:hover,
.ticket-card.active {
  transform: translateY(-3px);
  background: rgba(233, 182, 87, 0.08);
  box-shadow: 0 0 22px rgba(233, 182, 87, 0.18);
}
.tea-smoke {
  position: absolute;
  width: 120px;
  height: 160px;
  left: calc(12% + 75px);
  bottom: calc(22% + 20px);
  pointer-events: none;
  z-index: 6;
  overflow: hidden;
}
.tea-smoke::before,
.tea-smoke::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(233, 228, 207, 0.14),
    transparent 55%
  );
  filter: blur(18px);
  opacity: 0.4;
  animation: smokeRise 7s ease-in infinite;
}
.tea-smoke::after {
  width: 100px;
  height: 100px;
  top: 48px;
  animation-delay: 2.5s;
}
@keyframes smokeRise {
  0% {
    transform: translateX(-50%) translateY(0) scale(0.7);
    opacity: 0.25;
  }
  50% {
    transform: translateX(-50%) translateY(-28px) scale(0.92);
    opacity: 0.42;
  }
  100% {
    transform: translateX(-50%) translateY(-62px) scale(1.05);
    opacity: 0;
  }
}
.durga-sculpting {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: rgba(10, 8, 8, 0.72);
  border: 1px solid rgba(233, 182, 87, 0.16);
  padding: 18px 20px;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}
.durga-sculpting .durga-title {
  flex: 1;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-3);
}
.durga-sculpting svg {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.35));
}
.durga-part {
  opacity: 0;
}
.durga-part.base {
  opacity: 0.85;
}
.durga-part.face,
.durga-part.crown {
  opacity: 0;
}

/* =====================================================
   TIME-OF-DAY OVERLAY (gradient)
===================================================== */
.tod-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: soft-light;
  opacity: 0;
  transition:
    opacity 1.5s ease,
    background 2s ease;
}

/* =====================================================
   PUJO SCROLL DHAAK BEAT INDICATOR
===================================================== */
.scroll-dhaak-indicator {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 9000;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.scroll-dhaak-indicator.on {
  opacity: 0.7;
}
.scroll-dhaak-indicator span {
  display: block;
  width: 3px;
  height: 16px;
  background: var(--gold-3);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--gold);
}

/* =====================================================
   AUDIO LOADER STATUS PANEL (subtle)
===================================================== */
.audio-state {
  position: fixed;
  top: 28px;
  right: 100px;
  z-index: 9500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-bord);
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: rgba(246, 214, 138, 0.7);
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.audio-state.show {
  opacity: 1;
}
.audio-state .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 1.4s ease-in-out infinite;
}
.audio-state .track-name {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: 13px;
  color: var(--paper);
  letter-spacing: 0.02em;
  text-transform: none;
}

/* =====================================================
   CINEMA ROOM (replaces simple hidden_room when password unlocks)
===================================================== */
.cinema-room {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9900;
  display: none;
  overflow: hidden;
  opacity: 0;
}
.cinema-room.open {
  display: block;
}

.cinema-frame {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 50% 50%,
      transparent 35%,
      rgba(0, 0, 0, 0.85) 70%,
      #000 100%
    ),
    linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #050505 100%);
}
.cinema-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.85'/></svg>");
  opacity: 0.12;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: grainShift 0.18s steps(4) infinite;
}
@keyframes grainShift {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-2%, 1%);
  }
  50% {
    transform: translate(1%, -2%);
  }
  75% {
    transform: translate(-1%, -1%);
  }
  100% {
    transform: translate(2%, 1%);
  }
}
.cinema-flicker {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 250, 220, 0.04),
    transparent 70%
  );
  pointer-events: none;
  animation: flicker 4s ease-in-out infinite;
}
@keyframes flicker {
  0%,
  100% {
    opacity: 1;
  }
  3% {
    opacity: 0.85;
  }
  4% {
    opacity: 1;
  }
  7% {
    opacity: 0.7;
  }
  8% {
    opacity: 1;
  }
  60% {
    opacity: 0.9;
  }
  62% {
    opacity: 1;
  }
}
.cinema-scratches {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: screen;
}
.cinema-scratches::before,
.cinema-scratches::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.8);
}
.cinema-scratches::before {
  left: 18%;
  animation: scratchA 7s linear infinite;
}
.cinema-scratches::after {
  left: 73%;
  animation: scratchB 5s linear infinite;
}
@keyframes scratchA {
  0%,
  90%,
  100% {
    opacity: 0;
  }
  91%,
  95% {
    opacity: 0.9;
  }
}
@keyframes scratchB {
  0%,
  80%,
  100% {
    opacity: 0;
  }
  81%,
  86% {
    opacity: 0.7;
  }
}
.cinema-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 30%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.95) 100%
  );
  pointer-events: none;
}

/* film count-in (3-2-1) */
.film-countdown {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border: 4px solid rgba(237, 228, 207, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", serif;
  font-size: 96px;
  color: rgba(237, 228, 207, 0.85);
  pointer-events: none;
  opacity: 0;
}
.film-countdown::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-top: 4px solid rgba(237, 228, 207, 0.85);
  border-radius: 50%;
  transform-origin: center;
  animation: countdownSweep 1s linear infinite;
}
.film-countdown::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 50%;
  background: rgba(237, 228, 207, 0.85);
  transform-origin: top center;
  transform: translate(-50%, 0);
}
@keyframes countdownSweep {
  to {
    transform: rotate(360deg);
  }
}

/* main cinema content stage */
.cinema-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1100px;
  text-align: center;
  z-index: 10;
  filter: grayscale(1) contrast(1.05);
}

.cinema-couple {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 2/1;
  margin: 0 auto 40px;
  opacity: 0;
}
.cinema-couple svg {
  width: 100%;
  height: 100%;
}

.cinema-line {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.55;
  color: rgba(237, 228, 207, 0.92);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  margin-bottom: 26px;
  opacity: 0;
  letter-spacing: 0.01em;
}
.cinema-line .en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.55em;
  color: rgba(237, 228, 207, 0.55);
  margin-top: 8px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.cinema-sign {
  margin-top: 60px;
  font-family: "Caveat", cursive;
  font-size: clamp(26px, 2.6vw, 36px);
  color: rgba(237, 228, 207, 0.85);
  letter-spacing: 0.05em;
  opacity: 0;
}
.cinema-sign .dash {
  color: rgba(237, 228, 207, 0.45);
  margin-right: 14px;
}

.cinema-close {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 20;
  padding: 10px 22px;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(237, 228, 207, 0.4);
  color: rgba(237, 228, 207, 0.7);
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  cursor: none;
  opacity: 0;
}

/* rose petals */
.petals-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}
.petal {
  position: absolute;
  width: 14px;
  height: 16px;
  background: linear-gradient(
    135deg,
    rgba(220, 200, 180, 0.35),
    rgba(160, 140, 120, 0.5)
  );
  border-radius: 80% 20% 80% 20%;
  filter: blur(0.4px);
  opacity: 0;
}

/* cinema rain inside the room (lighter) */
.cinema-rain-canvas {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
}

/* film title slate before the scene begins */
.film-slate {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: "Cinzel", serif;
  color: rgba(237, 228, 207, 0.88);
  opacity: 0;
  z-index: 8;
}
.film-slate .top-rule {
  width: 280px;
  height: 1px;
  background: rgba(237, 228, 207, 0.6);
  margin: 0 auto 24px;
}
.film-slate .reel-no {
  font-size: 10px;
  letter-spacing: 0.6em;
  margin-bottom: 24px;
  color: rgba(237, 228, 207, 0.5);
}
.film-slate .title-bn {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: 56px;
  margin-bottom: 14px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.18);
}
.film-slate .title-en {
  font-size: 11px;
  letter-spacing: 0.5em;
  color: rgba(237, 228, 207, 0.6);
  margin-bottom: 26px;
}
.film-slate .credits {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(237, 228, 207, 0.5);
  line-height: 2.2;
  letter-spacing: 0.06em;
}
.film-slate .credits .nm {
  color: rgba(237, 228, 207, 0.85);
  font-style: normal;
  letter-spacing: 0.12em;
}
.film-slate .bot-rule {
  width: 280px;
  height: 1px;
  background: rgba(237, 228, 207, 0.6);
  margin: 26px auto 0;
}

/* =====================================================
   MAHALAYA — Mayer Chokh (enhances goddess eyes panel)
===================================================== */
.mahalaya-aura {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 30% at 50% 40%,
      rgba(140, 80, 40, 0.18),
      transparent 60%
    ),
    radial-gradient(
      ellipse 70% 50% at 50% 80%,
      rgba(60, 40, 80, 0.15),
      transparent 60%
    );
  pointer-events: none;
}
.mahalaya-aura::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.02' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.35;
  mix-blend-mode: screen;
}
.temple-bell-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 24px;
  background: rgba(40, 20, 10, 0.6);
  border: 1px solid rgba(233, 182, 87, 0.35);
  color: var(--gold-3);
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.4s ease;
}
.temple-bell-trigger:hover {
  background: rgba(40, 20, 10, 0.85);
  letter-spacing: 0.45em;
}
.temple-bell-trigger svg {
  width: 14px;
  height: 14px;
  fill: var(--gold-3);
}

/* =====================================================
   TRAM SCENE — dedicated section
===================================================== */
.tram-section {
  position: relative;
  min-height: 90vh;
  padding: 120px 0 0;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 60% 40% at 50% 30%,
      rgba(40, 30, 15, 0.4),
      transparent 60%
    ),
    linear-gradient(180deg, #050810 0%, #0a0d18 50%, #0a0810 100%);
}
.tram-section .section-head {
  padding: 0 8vw;
  position: relative;
  z-index: 10;
}
.tram-stage {
  position: relative;
  height: 60vh;
  margin-top: 50px;
  overflow: hidden;
}
.tram-rails {
  position: absolute;
  bottom: 18%;
  left: 0;
  right: 0;
  height: 30px;
  z-index: 3;
}
.tram-rails::before,
.tram-rails::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 182, 87, 0.5) 20%,
    rgba(233, 182, 87, 0.5) 80%,
    transparent
  );
}
.tram-rails::before {
  top: 4px;
}
.tram-rails::after {
  bottom: 4px;
}

.tram-wires {
  position: absolute;
  top: 18%;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 2;
}
.tram-wires::before,
.tram-wires::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(150, 160, 180, 0.25);
}
.tram-wires::before {
  top: 20px;
}
.tram-wires::after {
  top: 36px;
}

.moving-tram {
  position: absolute;
  bottom: 22%;
  left: -340px;
  width: 340px;
  z-index: 8;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.7));
}
.moving-tram svg {
  width: 100%;
}

.tram-window-fog {
  /* will reveal "Abhipsa" briefly inside tram window */
  position: absolute;
  font-family: "Caveat", cursive;
  font-size: 14px;
  color: rgba(237, 228, 207, 0.95);
  pointer-events: none;
  z-index: 20;
  opacity: 0;
  letter-spacing: 0.05em;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
  transform: rotate(-2deg);
}

.tram-glow {
  position: absolute;
  bottom: 24%;
  width: 380px;
  height: 60px;
  background: radial-gradient(
    ellipse at center,
    rgba(233, 182, 87, 0.45),
    transparent 70%
  );
  filter: blur(20px);
  z-index: 5;
  pointer-events: none;
}

/* =====================================================
   MAP REDESIGN — modern cinematic
===================================================== */
.map-section.redesigned {
  padding: 140px 8vw 120px;
  position: relative;
  background:
    radial-gradient(
      ellipse 70% 50% at 50% 40%,
      rgba(42, 90, 95, 0.18),
      transparent 65%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(8, 5, 3, 0.3) 60%,
      transparent 100%
    );
}
.cine-map {
  position: relative;
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}
.map-canvas-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background:
    radial-gradient(
      ellipse 70% 60% at 50% 50%,
      rgba(20, 40, 60, 0.5),
      transparent 70%
    ),
    linear-gradient(180deg, rgba(8, 12, 20, 0.7), rgba(4, 6, 10, 0.85));
  border: 1px solid var(--glass-bord);
  backdrop-filter: blur(6px);
  overflow: hidden;
}
.map-canvas-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(233, 182, 87, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 182, 87, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cine-map svg.map-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cine-hotspot {
  position: absolute;
  width: 14px;
  height: 14px;
  cursor: none;
  z-index: 8;
  transform: translate(-50%, -50%);
}
.cine-hotspot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-3);
  border-radius: 50%;
  box-shadow:
    0 0 14px var(--gold),
    0 0 28px var(--ember);
}
.cine-hotspot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: hotspotPing 2.2s ease-out infinite;
}
.cine-hotspot.active::before {
  background: var(--paper);
  box-shadow:
    0 0 24px var(--paper),
    0 0 60px var(--gold);
}

.map-route {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  stroke-dasharray: 4 4;
  opacity: 0;
  filter: drop-shadow(0 0 6px var(--gold));
}
.map-route.show {
  opacity: 0.8;
  animation: dashFlow 3s linear infinite;
}
@keyframes dashFlow {
  to {
    stroke-dashoffset: -100;
  }
}

/* memory card */
.memory-panel {
  position: relative;
  padding: 50px 44px;
  background:
    linear-gradient(135deg, rgba(40, 28, 15, 0.5), rgba(20, 14, 8, 0.55)),
    var(--glass-bg);
  border: 1px solid var(--glass-bord);
  backdrop-filter: blur(14px);
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
.memory-panel .corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--gold);
}

.memory-eyebrow {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.memory-title {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: 38px;
  line-height: 1.15;
  color: var(--paper);
  margin-bottom: 6px;
}
.memory-title .en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.45em;
  color: rgba(237, 228, 207, 0.55);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.memory-coords {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  color: rgba(237, 228, 207, 0.45);
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(233, 182, 87, 0.18);
}
.memory-body {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(237, 228, 207, 0.78);
  margin-bottom: 24px;
  flex: 1;
}
.memory-clip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(8, 5, 3, 0.55);
  border: 1px solid rgba(233, 182, 87, 0.2);
}
.memory-clip .play-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(233, 182, 87, 0.18);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
}
.memory-clip .play-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--gold-3);
}
.memory-clip .clip-meta {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(237, 228, 207, 0.65);
  flex: 1;
}
.memory-clip .clip-meta strong {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold-3);
  font-weight: 400;
  display: block;
  margin-bottom: 2px;
}

/* legend */
.map-legend {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.map-legend .pin {
  padding: 8px 16px;
  background: rgba(8, 5, 3, 0.6);
  border: 1px solid rgba(233, 182, 87, 0.2);
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 0.35em;
  color: rgba(237, 228, 207, 0.65);
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s ease;
}
.map-legend .pin:hover,
.map-legend .pin.active {
  border-color: var(--gold);
  background: rgba(233, 182, 87, 0.12);
  color: var(--gold-3);
}

/* ripple click on map */
.map-ripple {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold-3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 6;
  opacity: 0.8;
  transform: translate(-50%, -50%);
}

/* =====================================================
   CINEMATIC FOOTER FILM ENDING
===================================================== */
.film-ending-scene {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 70% 50% at 50% 70%,
      rgba(233, 182, 87, 0.18),
      transparent 70%
    ),
    linear-gradient(180deg, #0a0d14 0%, #15110a 60%, #1a1410 100%);
  padding: 120px 0 60px;
}
.fog-tram-stage {
  position: relative;
  width: 100%;
  height: 280px;
  margin-top: 40px;
  overflow: hidden;
}
.fog-tram {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  opacity: 0.85;
  filter: drop-shadow(0 0 30px rgba(233, 182, 87, 0.4)) blur(0.4px);
}
.fog-fade {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    transparent 30%,
    rgba(220, 210, 195, 0.18) 70%,
    rgba(220, 210, 195, 0.4) 100%
  );
  pointer-events: none;
}
.fog-veil {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence baseFrequency='0.012' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.45;
  mix-blend-mode: screen;
}

.spinning-record {
  position: absolute;
  bottom: 8%;
  right: 10%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at center,
    #0a0d14 0px,
    #0a0d14 2px,
    #15181f 2px,
    #15181f 4px
  );
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(233, 182, 87, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.spinning-record .center {
  width: 30%;
  height: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, #c2271d, #6a1612);
}
.spinning-record.spinning {
  animation: vinylSpin 8s linear infinite;
}

.lights-floating {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.lights-floating .l {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-3);
  border-radius: 50%;
  box-shadow:
    0 0 8px var(--gold),
    0 0 18px var(--ember);
  opacity: 0.6;
}

.film-end-line {
  position: relative;
  z-index: 10;
  text-align: center;
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: clamp(20px, 1.6vw, 24px);
  color: var(--paper);
  line-height: 1.5;
  max-width: 880px;
  margin: 60px auto 0;
  padding: 0 8vw;
  opacity: 0;
}
.film-end-line .en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.5em;
  color: rgba(237, 228, 207, 0.55);
  margin-top: 12px;
  font-weight: 300;
}
.film-end-attr {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: 50px;
  font-family: "Caveat", cursive;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--gold-3);
  opacity: 0;
  letter-spacing: 0.04em;
  text-shadow: 0 0 30px rgba(233, 182, 87, 0.4);
}
.film-end-attr .dash {
  color: rgba(237, 228, 207, 0.45);
  margin-right: 12px;
}

.the-end {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: 80px;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.8em;
  color: rgba(237, 228, 207, 0.4);
  opacity: 0;
}
.the-end::before,
.the-end::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background: rgba(237, 228, 207, 0.4);
  vertical-align: middle;
  margin: 0 22px;
}

/* =====================================================
   BHASKAR NOTES — small signed marginalia (scattered)
===================================================== */
.bhaskar-note {
  position: absolute;
  max-width: 240px;
  padding: 14px 18px;
  background: linear-gradient(
    135deg,
    rgba(40, 28, 15, 0.6),
    rgba(20, 14, 8, 0.55)
  );
  border: 1px solid rgba(233, 182, 87, 0.22);
  backdrop-filter: blur(6px);
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(246, 214, 138, 0.78);
  pointer-events: none;
  z-index: 12;
  opacity: 0.92;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.bhaskar-note .sig {
  display: block;
  margin-top: 8px;
  font-family: "Caveat", cursive;
  font-style: normal;
  font-size: 18px;
  color: var(--gold-3);
  text-align: right;
  letter-spacing: 0.05em;
}
.bhaskar-note.tape::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 60px;
  height: 18px;
  background: rgba(237, 228, 207, 0.18);
  border: 1px solid rgba(237, 228, 207, 0.1);
}

/* =====================================================
   MAYER CHOKH — close-up Bengali eyes (different from goddess)
===================================================== */
.chokh-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 60% 40% at 50% 30%,
      rgba(60, 30, 20, 0.28),
      transparent 65%
    ),
    radial-gradient(
      ellipse 60% 50% at 50% 80%,
      rgba(40, 20, 40, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, #060709 0%, #0a070a 50%, #060608 100%);
}
.chokh-stage {
  position: relative;
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: start;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.chokh-art {
  position: relative;
  aspect-ratio: 5/4;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}
.chokh-art svg,
.chokh-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.chokh-art .glass-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 30% 40% at 30% 30%,
    rgba(237, 228, 207, 0.06),
    transparent 70%
  );
}
.chokh-rain-on-glass {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: screen;
}
.chokh-poetry {
  position: relative;
  width: 100%;
  padding-top: 20px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.chokh-poetry .pq {
  font-family: "Noto Serif Bengali", serif;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.75;
  color: var(--paper);
  margin-bottom: 26px;
  padding-left: 22px;
  border-left: 1px solid var(--gold);
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  will-change: opacity, transform;
}
.chokh-poetry .pq.in {
  opacity: 1;
  transform: translateX(0);
}
.chokh-poetry .pq .en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(237, 228, 207, 0.5);
  margin-top: 6px;
  font-weight: 300;
}

/* =====================================================
   BORSHAR NIRJONOTA — Bengali atmospheric solitude
===================================================== */
.nirjonota-section {
  position: relative;
  min-height: 110vh;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 60% 40% at 70% 30%,
      rgba(60, 80, 120, 0.2),
      transparent 65%
    ),
    radial-gradient(
      ellipse 70% 50% at 30% 70%,
      rgba(180, 120, 60, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, #050810 0%, #0a0d18 50%, #0a0610 100%);
}
.nirjonota-stage {
  position: relative;
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.nirjonota-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--glass-bord);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  background: #06080d;
}
.nirjonota-frame .scene {
  width: 100%;
  height: 100%;
}
.nirjonota-frame::after {
  /* fogged glass */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    transparent 30%,
    rgba(180, 200, 230, 0.05) 70%,
    rgba(180, 200, 230, 0.18) 100%
  );
  pointer-events: none;
}
.nirjonota-frame .puddle {
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(233, 182, 87, 0.06) 40%,
    rgba(233, 182, 87, 0.12) 100%
  );
  pointer-events: none;
}

.nirjonota-floating {
  position: absolute;
  font-family: "Caveat", cursive;
  font-size: 20px;
  color: rgba(237, 228, 207, 0.75);
  pointer-events: none;
  text-shadow: 0 0 16px rgba(237, 228, 207, 0.2);
  opacity: 0;
  white-space: nowrap;
}

.nirjonota-side {
  position: relative;
}
.nirjonota-side .lead {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.5;
  color: var(--paper);
  margin-bottom: 24px;
}
.nirjonota-side .lead .em {
  color: var(--gold-3);
}
.nirjonota-side .body {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(237, 228, 207, 0.65);
  margin-bottom: 28px;
  max-width: 460px;
}
.nirjonota-fragments {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
  padding-left: 22px;
  border-left: 1px solid rgba(233, 182, 87, 0.2);
}
.nirjonota-fragments .frag {
  font-family: "Noto Serif Bengali", serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(246, 214, 138, 0.85);
}
.nirjonota-fragments .frag .en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  color: rgba(237, 228, 207, 0.45);
  margin-top: 3px;
  letter-spacing: 0.04em;
}

/* =====================================================
   MEMORIES & SKETCHES — pinned charcoal gallery
===================================================== */
.sketches-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 70% 50% at 50% 50%,
      rgba(80, 55, 30, 0.22),
      transparent 70%
    ),
    linear-gradient(180deg, #110b06 0%, #1a1208 50%, #110b06 100%);
}
.sketches-section::before {
  /* faint wood/paper texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.25'/></svg>");
  opacity: 0.18;
  pointer-events: none;
}
.sketch-wall {
  position: relative;
  margin-top: 60px;
  min-height: 720px;
}
.dust-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.dust-particles .dust {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(246, 214, 138, 0.5);
  border-radius: 50%;
  filter: blur(0.4px);
  opacity: 0.5;
}

.frame-card {
  position: absolute;
  background: linear-gradient(135deg, #d9ccae, #c2b189);
  padding: 14px;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.6),
    0 30px 60px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(0, 0, 0, 0.3);
  cursor: none;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    z-index 0s;
  z-index: 3;
}
.frame-card:hover {
  transform: scale(1.06) translateY(-8px) rotate(0deg) !important;
  z-index: 10;
}
.frame-card::before {
  /* paper pin */
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 30% 30%, #c2271d, #6a1612);
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}
.frame-inner {
  position: relative;
  background: #ede4cf;
  padding: 8px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.frame-inner svg,
.frame-inner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.frame-caption {
  margin-top: 10px;
  font-family: "Caveat", cursive;
  font-size: 18px;
  color: #1a1208;
  text-align: center;
  line-height: 1.2;
}
.frame-caption .en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 11px;
  color: #6a4d18;
  margin-top: 2px;
  letter-spacing: 0.04em;
}

/* polaroid variant */
.frame-polaroid {
  background: #f5ecd0;
  padding: 14px 14px 56px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.6));
}
.frame-polaroid .frame-caption {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0 12px;
}
.frame-polaroid::before {
  background: radial-gradient(circle at 30% 30%, #e9b657, #8a5a18);
}

/* envelope */
.frame-envelope {
  background: linear-gradient(135deg, #c2b189, #a08a5e);
  padding: 26px 20px;
  font-family: "Caveat", cursive;
  color: #1a1208;
  font-size: 18px;
  line-height: 1.4;
  width: 260px;
}
.frame-envelope::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(80, 55, 30, 0.15), transparent);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}
.frame-envelope .stamp {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 50px;
  background: linear-gradient(135deg, #c2271d, #6a1612);
  border: 2px solid #ede4cf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", serif;
  font-size: 8px;
  color: #ede4cf;
  letter-spacing: 1px;
  transform: rotate(8deg);
}
.frame-envelope .to {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: 22px;
  margin-bottom: 8px;
}
.frame-envelope .addr {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: #3a2618;
  line-height: 1.5;
}

/* candle */
.gallery-candle {
  position: absolute;
  bottom: 60px;
  right: 60px;
  width: 30px;
  height: 90px;
  z-index: 8;
}
.gallery-candle .wick {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 14px;
  background: #2a1810;
}
.gallery-candle .flame {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 22px;
  background: radial-gradient(
    ellipse at center bottom,
    #fff5dc 0%,
    #f6d68a 30%,
    #ff8a3d 60%,
    transparent 80%
  );
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  filter: blur(0.4px);
  animation: flameFlick 0.18s ease-in-out infinite;
  box-shadow:
    0 0 16px #ff8a3d,
    0 0 32px #e9b657,
    0 0 60px rgba(233, 182, 87, 0.4);
}
.gallery-candle .body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, #ede4cf 0%, #d9ccae 100%);
  border-radius: 4px;
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.3);
}
.gallery-candle .glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(233, 182, 87, 0.25),
    transparent 70%
  );
  pointer-events: none;
  animation: candleGlow 2.4s ease-in-out infinite;
}
@keyframes flameFlick {
  0%,
  100% {
    transform: translateX(-50%) scale(1, 1);
  }
  50% {
    transform: translateX(-50%) scale(0.96, 1.04);
  }
}
@keyframes candleGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.7;
  }
}

/* =====================================================
   LETTERS NEVER SENT — overlay inside cinema room
===================================================== */
.letters-stack {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 580px;
  display: none;
  z-index: 12;
}
.letters-stack.show {
  display: block;
}
.letter-paper {
  position: relative;
  padding: 50px 46px 60px;
  background: linear-gradient(
    180deg,
    rgba(237, 228, 207, 0.96),
    rgba(217, 204, 174, 0.93)
  );
  color: #1a1208;
  font-family: "Noto Serif Bengali", serif;
  font-size: 19px;
  line-height: 2;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.7),
    0 60px 120px rgba(0, 0, 0, 0.5);
  transform: rotate(-1deg);
  opacity: 0;
  filter: grayscale(0.1);
}
.letter-paper::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(40, 30, 15, 0.18);
  pointer-events: none;
}
.letter-paper::after {
  /* paper grain */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence baseFrequency='0.62' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.32'/></svg>");
  opacity: 0.3;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.letter-paper .date {
  font-family: "Cinzel", serif;
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.4em;
  color: rgba(40, 30, 15, 0.55);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(40, 30, 15, 0.3);
}
.letter-paper .salut {
  font-family: "Tiro Bangla", serif;
  font-style: italic;
  font-size: 24px;
  color: #1a1208;
  margin-bottom: 18px;
}
.letter-paper .line {
  font-family: "Noto Serif Bengali", serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.95;
  color: #2a1d0d;
  margin-bottom: 10px;
  opacity: 0;
}
.letter-paper .line.en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(40, 30, 15, 0.5);
  line-height: 1.6;
  margin-top: -4px;
  margin-bottom: 18px;
}
.letter-paper .sig-line {
  margin-top: 32px;
  font-family: "Caveat", cursive;
  font-style: normal;
  font-size: 30px;
  color: #4a2d10;
  text-align: right;
  letter-spacing: 0.04em;
  opacity: 0;
}
.letter-paper .sig-line .dash {
  color: rgba(40, 30, 15, 0.6);
  margin-right: 12px;
}

/* the candle next to the letter */
.letter-candle {
  position: absolute;
  bottom: -10px;
  left: -50px;
  transform: rotate(2deg);
}

/* =====================================================
   DANCE ENHANCEMENT — flower petals + ghungroo dots
===================================================== */
.dance-petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 4;
}
.dance-petals .dp {
  position: absolute;
  width: 12px;
  height: 14px;
  background: linear-gradient(
    135deg,
    rgba(255, 140, 80, 0.7),
    rgba(180, 60, 40, 0.85)
  );
  border-radius: 80% 20% 80% 20%;
  filter: blur(0.4px);
  box-shadow: 0 0 10px rgba(255, 120, 80, 0.3);
}
.ghungroo-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}
.ghungroo-particles .g {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold-3);
  border-radius: 50%;
  box-shadow:
    0 0 8px var(--gold),
    0 0 14px var(--ember);
  opacity: 0;
}

/* =====================================================
   JANALA OPARE CHAND
===================================================== */
.janala-section {
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(130, 170, 230, 0.1),
      transparent 28%
    ),
    radial-gradient(
      circle at 80% 15%,
      rgba(233, 182, 87, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #08101b 0%, #0b1320 35%, #11141d 100%);
}
.janala-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
  gap: 46px;
  align-items: center;
  margin-top: 56px;
}
.janala-stage {
  position: relative;
  min-height: 760px;
  border: 1px solid rgba(233, 182, 87, 0.12);
  background:
    radial-gradient(
      circle at 72% 16%,
      rgba(228, 238, 255, 0.18),
      transparent 16%
    ),
    linear-gradient(180deg, rgba(9, 16, 28, 0.94), rgba(14, 14, 20, 0.96));
  overflow: hidden;
  box-shadow:
    inset 0 0 140px rgba(0, 0, 0, 0.55),
    0 40px 90px rgba(0, 0, 0, 0.35);
}
.janala-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 16, 0.08), rgba(7, 10, 16, 0.4)),
    radial-gradient(
      circle at 50% 50%,
      transparent 35%,
      rgba(3, 5, 10, 0.65) 100%
    );
  pointer-events: none;
  z-index: 8;
}
.janala-sky {
  position: absolute;
  inset: 0 0 46% 0;
  background:
    radial-gradient(
      circle at 70% 24%,
      rgba(233, 240, 255, 0.14),
      transparent 22%
    ),
    linear-gradient(180deg, rgba(16, 26, 46, 0.92), rgba(15, 20, 32, 0.4));
}
.janala-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 18% 22%,
      rgba(255, 255, 255, 0.42) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 32% 18%,
      rgba(255, 255, 255, 0.32) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 58% 28%,
      rgba(255, 255, 255, 0.3) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 84% 20%,
      rgba(255, 255, 255, 0.4) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 72% 8%,
      rgba(255, 255, 255, 0.32) 0 1px,
      transparent 1px
    );
  opacity: 0.8;
}
.janala-cloud {
  position: absolute;
  top: 60px;
  width: 220px;
  height: 70px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(198, 214, 243, 0.12),
    rgba(24, 31, 44, 0.02)
  );
  filter: blur(10px);
  animation: janalaCloud 22s ease-in-out infinite;
}
.cloud-a {
  left: -4%;
  top: 52px;
}
.cloud-b {
  left: 36%;
  top: 94px;
  width: 260px;
  animation-delay: -8s;
}
.cloud-c {
  right: -6%;
  top: 40px;
  width: 240px;
  animation-delay: -15s;
}
@keyframes janalaCloud {
  0%,
  100% {
    transform: translateX(0) translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateX(28px) translateY(8px);
    opacity: 0.7;
  }
}
.janala-moon {
  position: absolute;
  right: 13%;
  top: 56px;
  width: 124px;
  height: 124px;
  border: 0;
  border-radius: 50%;
  cursor: none;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.95),
    rgba(225, 235, 255, 0.88) 42%,
    rgba(174, 198, 238, 0.82) 68%,
    rgba(110, 130, 168, 0.65) 100%
  );
  box-shadow:
    0 0 30px rgba(227, 237, 255, 0.34),
    0 0 100px rgba(158, 185, 232, 0.2);
  z-index: 4;
}
.janala-moon::after,
.footer-moon::after {
  content: "";
  position: absolute;
  inset: 16px 18px 26px 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  opacity: 0.3;
}
.janala-fireflies,
.footer-fireflies {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.janala-room {
  position: absolute;
  inset: 32% 0 0;
  background:
    linear-gradient(180deg, rgba(17, 20, 31, 0.2), rgba(12, 10, 14, 0.96) 18%),
    linear-gradient(
      90deg,
      rgba(34, 24, 20, 0.9),
      rgba(11, 12, 18, 0.92) 45%,
      rgba(22, 18, 12, 0.88) 100%
    );
}
.janala-shadow {
  position: absolute;
  inset: auto auto 18% 0;
  width: 58%;
  height: 34%;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(163, 187, 232, 0.16),
    transparent 60%
  );
  transform: skewX(-18deg);
  opacity: 0.5;
}
.janala-shadow-b {
  left: auto;
  right: 0;
  width: 34%;
  height: 28%;
  bottom: 14%;
  transform: skewX(18deg);
  background: radial-gradient(
    circle at 80% 50%,
    rgba(233, 182, 87, 0.12),
    transparent 62%
  );
}
.janala-curtain {
  position: absolute;
  top: 0;
  width: 25%;
  height: 58%;
  background:
    linear-gradient(180deg, rgba(188, 170, 145, 0.18), rgba(56, 38, 28, 0.9)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0 10px,
      rgba(0, 0, 0, 0.02) 10px 22px
    );
  filter: blur(0.3px);
  transform-origin: top;
  animation: curtainBreath 7s ease-in-out infinite;
}
.curtain-left {
  left: 4%;
  transform: skewY(6deg);
}
.curtain-right {
  right: 7%;
  width: 20%;
  transform: skewY(-4deg);
  animation-delay: -3s;
}
@keyframes curtainBreath {
  0%,
  100% {
    transform: translateX(0) skewY(4deg);
  }
  50% {
    transform: translateX(8px) skewY(7deg);
  }
}
.janala-lamp {
  position: absolute;
  right: 14%;
  bottom: 28%;
  width: 84px;
  height: 156px;
  border-radius: 44px 44px 14px 14px;
  background: linear-gradient(
    180deg,
    rgba(86, 62, 34, 0.82),
    rgba(34, 24, 18, 0.96)
  );
  box-shadow: 0 0 0 1px rgba(233, 182, 87, 0.1);
}
.lamp-glow {
  position: absolute;
  left: 50%;
  top: 16px;
  width: 120px;
  height: 120px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(236, 191, 98, 0.42),
    rgba(236, 191, 98, 0.08) 55%,
    transparent 72%
  );
}
.janala-vinyl-player {
  position: absolute;
  left: 12%;
  bottom: 26%;
  width: 160px;
  height: 102px;
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(50, 38, 28, 0.96),
    rgba(20, 13, 10, 0.96)
  );
  box-shadow: inset 0 0 0 1px rgba(233, 182, 87, 0.08);
}
.player-disc,
.vinyl-mini-disc {
  position: absolute;
  left: 18px;
  top: 14px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at center,
    #090d14 0 2px,
    #151b25 2px 4px
  );
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.55);
}
.player-disc::after,
.vinyl-mini-disc::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, #b34634, #611816);
}
.player-arm,
.vinyl-mini-arm {
  position: absolute;
  right: 18px;
  top: 22px;
  width: 50px;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(205, 189, 170, 0.92),
    rgba(108, 94, 82, 0.9)
  );
  transform: rotate(22deg);
  transform-origin: right center;
  border-radius: 999px;
}
.janala-table {
  position: absolute;
  left: 22%;
  right: 8%;
  bottom: 18%;
  height: 12px;
  background: linear-gradient(
    90deg,
    rgba(60, 38, 24, 0.92),
    rgba(24, 18, 14, 0.92)
  );
}
.janala-diary {
  position: absolute;
  right: 24%;
  bottom: 22%;
  width: 240px;
  padding: 20px 22px;
  color: rgba(237, 228, 207, 0.76);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  line-height: 1.5;
  background: linear-gradient(
    180deg,
    rgba(213, 194, 161, 0.12),
    rgba(102, 72, 48, 0.1)
  );
  border: 1px solid rgba(233, 182, 87, 0.1);
  transform: rotate(-3deg);
}
.diary-title,
.note-label,
.memory-kicker {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246, 214, 138, 0.68);
  margin-bottom: 12px;
}
.janala-tea {
  position: absolute;
  right: 12%;
  bottom: 20%;
  width: 66px;
  height: 44px;
  border-radius: 0 0 40px 40px;
  background: linear-gradient(
    180deg,
    rgba(232, 220, 201, 0.94),
    rgba(172, 146, 115, 0.92)
  );
}
.janala-tea::before {
  content: "";
  position: absolute;
  inset: -8px 8px auto 8px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(109, 70, 24, 0.92),
    rgba(61, 38, 12, 0.98)
  );
}
.janala-tea::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 6px;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(225, 212, 190, 0.82);
  border-left: 0;
  border-radius: 50%;
}
.tea-steam,
.footer-tea .steam {
  position: absolute;
  bottom: 30px;
  width: 18px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.28),
    transparent 72%
  );
  filter: blur(10px);
  animation: steamLift 4.5s ease-in-out infinite;
}
.tea-steam-a {
  left: 16px;
}
.tea-steam-b {
  left: 34px;
  animation-delay: -2s;
}
@keyframes steamLift {
  0% {
    transform: translateY(0) scaleY(0.6);
    opacity: 0;
  }
  40% {
    opacity: 0.55;
  }
  100% {
    transform: translateY(-34px) translateX(8px) scaleY(1.14);
    opacity: 0;
  }
}
.janala-window {
  position: absolute;
  left: 11%;
  top: 8%;
  width: 55%;
  height: 56%;
  border: 16px solid rgba(74, 50, 32, 0.95);
  border-radius: 6px;
  background: rgba(16, 24, 38, 0.5);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(233, 182, 87, 0.08);
}
.window-frame,
.window-pane,
.window-fog,
.window-raindrops {
  position: absolute;
  inset: 0;
}
.frame-bar {
  position: absolute;
  background: rgba(74, 50, 32, 0.95);
}
.frame-bar.v {
  width: 10px;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
}
.frame-bar.h {
  height: 10px;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.window-pane {
  background:
    radial-gradient(
      circle at 70% 24%,
      rgba(225, 233, 255, 0.15),
      transparent 20%
    ),
    linear-gradient(180deg, rgba(14, 23, 39, 0.86), rgba(11, 15, 24, 0.94));
  overflow: hidden;
}
.window-writing {
  position: absolute;
  right: 11%;
  bottom: 18%;
  font-family: "Caveat", cursive;
  font-size: 38px;
  color: rgba(246, 214, 138, 0.22);
  transform: rotate(-5deg);
  letter-spacing: 0.04em;
}
.window-poetry {
  position: absolute;
  max-width: 42%;
  font-family: "Tiro Bangla", serif;
  font-size: clamp(16px, 1vw, 22px);
  line-height: 1.7;
  color: rgba(236, 241, 255, 0.7);
  opacity: 0.12;
  transition: opacity 0.6s ease;
}
.poem-a {
  left: 5%;
  top: 8%;
  text-align: left;
}
.poem-b {
  right: 5%;
  top: 12%;
  text-align: right;
}
.poem-c {
  left: 5%;
  bottom: 10%;
  text-align: left;
}
.poem-d {
  right: 5%;
  bottom: 12%;
  text-align: right;
}
.janala-stage[data-cleared="1"] .window-poetry,
.janala-stage[data-cleared="2"] .window-poetry {
  opacity: 0.42;
}
.janala-stage[data-cleared="3"] .window-poetry {
  opacity: 0.72;
}
.window-raindrops .drop {
  position: absolute;
  top: -14%;
  width: 2px;
  height: 52px;
  background: linear-gradient(
    180deg,
    rgba(214, 228, 255, 0.45),
    rgba(214, 228, 255, 0)
  );
  border-radius: 999px;
  animation: windowDrop var(--d, 8s) linear infinite;
  opacity: 0.55;
}
@keyframes windowDrop {
  from {
    transform: translateY(-20%);
  }
  to {
    transform: translateY(135%);
  }
}
.window-fog {
  background: radial-gradient(
    circle at var(--wipe-x, 50%) var(--wipe-y, 50%),
    rgba(255, 255, 255, 0.02) 0 10%,
    rgba(186, 195, 207, 0.36) 18%,
    rgba(214, 220, 230, 0.56) 46%,
    rgba(180, 188, 198, 0.72) 100%
  );
  backdrop-filter: blur(7px);
  mix-blend-mode: screen;
}
.window-fog .clear-mark {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0) 72%
  );
  mix-blend-mode: destination-out;
  pointer-events: none;
}
.wipe-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(237, 228, 207, 0.42);
}
.janala-copy-card {
  padding: 34px 32px;
  border: 1px solid rgba(233, 182, 87, 0.12);
  background: linear-gradient(
    180deg,
    rgba(15, 21, 32, 0.8),
    rgba(20, 15, 14, 0.66)
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.janala-quote {
  font-family: "Tiro Bangla", serif;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.65;
  color: rgba(243, 237, 224, 0.94);
}
.janala-copy-text,
.janala-note p {
  margin-top: 18px;
  color: rgba(237, 228, 207, 0.72);
  line-height: 1.75;
}
.janala-moods,
.memory-controls,
.coffee-tables,
.puja-path,
.clue-grid,
.vinyl-shelf {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.janala-mood,
.memory-button,
.record-choice,
.adda-table,
.walk-step,
.lantern-toggle,
.clue-chip {
  border: 1px solid rgba(233, 182, 87, 0.18);
  background: rgba(233, 182, 87, 0.08);
  color: rgba(246, 214, 138, 0.88);
  padding: 10px 14px;
  font: inherit;
  cursor: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}
.janala-mood.active,
.record-choice.active,
.adda-table.active,
.walk-step.active,
.clue-chip.active {
  background: rgba(233, 182, 87, 0.18);
  border-color: rgba(246, 214, 138, 0.4);
  color: var(--paper);
}
.janala-fragments {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  color: rgba(246, 214, 138, 0.58);
  font-family: "Caveat", cursive;
  font-size: 12px;
}

/* =====================================================
   PLAYABLE NOSTALGIA
===================================================== */
.nostalgia-section {
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(233, 182, 87, 0.06),
      transparent 26%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(116, 143, 198, 0.08),
      transparent 26%
    ),
    linear-gradient(180deg, #0b1018 0%, #0d1119 100%);
}
.nostalgia-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.memory-experience {
  position: relative;
  min-height: 360px;
  padding: 24px;
  border: 1px solid rgba(233, 182, 87, 0.12);
  background:
    linear-gradient(180deg, rgba(17, 22, 32, 0.88), rgba(16, 12, 13, 0.92)),
    radial-gradient(
      circle at top right,
      rgba(233, 182, 87, 0.08),
      transparent 24%
    );
  overflow: hidden;
}
.memory-head h3 {
  font-family: "Tiro Bangla", serif;
  font-size: clamp(28px, 2.2vw, 38px);
  font-weight: 400;
}
.memory-scene {
  position: relative;
  min-height: 180px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(6, 10, 16, 0.44);
  overflow: hidden;
}
.memory-response,
.typewriter-line,
.vinyl-hidden-note {
  margin-top: 16px;
  line-height: 1.7;
  color: rgba(237, 228, 207, 0.72);
}
.tram-mini-rain,
.coffee-window-rain {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    110deg,
    rgba(201, 219, 255, 0.16) 0 2px,
    transparent 2px 14px
  );
  opacity: 0.22;
}
.mela-wheel-scene {
  background:
    radial-gradient(
      circle at 50% 16%,
      rgba(233, 182, 87, 0.18),
      transparent 24%
    ),
    linear-gradient(180deg, rgba(14, 19, 29, 0.78), rgba(25, 15, 12, 0.88));
}
.tram-mini-carriage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  height: 100%;
  align-items: end;
}
.mela-wheel {
  align-items: center;
}
.mela-wheel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 144px;
  height: 144px;
  border-radius: 50%;
  border: 2px solid rgba(233, 182, 87, 0.38);
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 24px rgba(233, 182, 87, 0.12),
    inset 0 0 24px rgba(233, 182, 87, 0.06);
}
.tram-mini-seat {
  height: 110px;
  border-radius: 18px 18px 6px 6px;
  background: linear-gradient(
    180deg,
    rgba(114, 32, 28, 0.94),
    rgba(48, 15, 16, 0.94)
  );
  border: 1px solid rgba(233, 182, 87, 0.08);
  cursor: none;
}
.mela-wheel .tram-mini-seat {
  position: relative;
  height: 72px;
  align-self: center;
  border-radius: 18px;
  z-index: 1;
}
.mela-wheel .tram-mini-seat:nth-child(1) {
  margin-top: 6px;
}
.mela-wheel .tram-mini-seat:nth-child(2) {
  margin-top: 70px;
}
.mela-wheel .tram-mini-seat:nth-child(3) {
  margin-top: 6px;
}
.tram-mini-seat::after {
  content: attr(data-poem);
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  transform: translateY(120%);
  opacity: 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: rgba(237, 228, 207, 0.72);
  transition: 0.35s ease;
}
.tram-mini-seat:hover::after {
  transform: translateY(0);
  opacity: 1;
}
.tram-mini-fog {
  position: absolute;
  right: 18px;
  top: 24px;
  font-family: "Caveat", cursive;
  font-size: 34px;
  color: rgba(245, 246, 255, 0.26);
  opacity: 0.45;
}
.vinyl-mini {
  --vinyl-accent: rgba(116, 153, 223, 0.28);
  background:
    radial-gradient(circle at 75% 20%, var(--vinyl-accent), transparent 24%),
    rgba(8, 10, 14, 0.52);
}
.mela-jilipi {
  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(255, 191, 94, 0.18),
      transparent 22%
    ),
    linear-gradient(180deg, rgba(44, 21, 9, 0.92), rgba(18, 10, 8, 0.9));
}
.vinyl-mini-player {
  position: relative;
  margin-top: 18px;
  width: 180px;
  height: 120px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(62, 44, 30, 0.96),
    rgba(22, 15, 11, 0.96)
  );
}
.jilipi-pan {
  border-radius: 999px;
  width: 196px;
  height: 196px;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(43, 18, 8, 0.95),
      rgba(12, 7, 6, 0.98)
    ),
    linear-gradient(180deg, rgba(80, 50, 20, 0.3), rgba(20, 12, 8, 0.9));
  box-shadow:
    inset 0 0 0 8px rgba(153, 87, 26, 0.5),
    0 24px 40px rgba(0, 0, 0, 0.32);
}
.vinyl-mini-disc {
  animation: vinylSpin 6s linear infinite;
}
.jilipi-pan .vinyl-mini-disc {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at center,
    rgba(247, 151, 44, 0.95) 0 12px,
    rgba(182, 83, 16, 0.95) 12px 18px
  );
  box-shadow: inset 0 0 20px rgba(60, 24, 8, 0.42);
}
.jilipi-pan .vinyl-mini-arm {
  right: 14px;
  top: 50%;
  width: 80px;
  transform: rotate(-18deg);
  opacity: 0.7;
}
.vinyl-hidden-note {
  max-width: 280px;
}
.coffee-mini {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.mela-papor {
  background:
    linear-gradient(180deg, rgba(76, 28, 14, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(26, 14, 12, 0.76), rgba(16, 10, 9, 0.86));
}
.mela-papor::before {
  content: "";
  position: absolute;
  inset: 16px 18px auto;
  height: 58px;
  background: repeating-linear-gradient(
    90deg,
    rgba(194, 39, 29, 0.75) 0 24px,
    rgba(245, 224, 174, 0.9) 24px 48px
  );
  clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
  opacity: 0.7;
}
.typewriter-line {
  font-family: "Caveat", cursive;
  font-size: 28px;
  color: rgba(246, 214, 138, 0.8);
}
.puja-mini {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 140, 80, 0.14),
      transparent 36%
    ),
    linear-gradient(180deg, rgba(37, 10, 12, 0.75), rgba(10, 8, 12, 0.64));
}
.mela-lane {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 170, 88, 0.18),
      transparent 36%
    ),
    linear-gradient(180deg, rgba(35, 15, 18, 0.8), rgba(12, 10, 12, 0.72));
}
.puja-lanterns {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  display: flex;
  justify-content: space-between;
}
.puja-lanterns span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(233, 182, 87, 0.4);
  box-shadow: 0 0 20px rgba(233, 182, 87, 0.25);
}
.gram-mini {
  background:
    radial-gradient(
      circle at 80% 16%,
      rgba(225, 234, 255, 0.18),
      transparent 18%
    ),
    linear-gradient(180deg, rgba(8, 20, 28, 0.82), rgba(15, 19, 15, 0.74));
}
.mela-ghat {
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(250, 225, 162, 0.18),
      transparent 18%
    ),
    linear-gradient(180deg, rgba(5, 26, 38, 0.86), rgba(16, 22, 18, 0.8));
}
.gram-mini-moon {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.96),
    rgba(209, 218, 240, 0.86)
  );
  box-shadow: 0 0 24px rgba(209, 218, 240, 0.22);
}
.gram-mini-pond {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 28px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(12, 40, 52, 0.72),
    rgba(6, 16, 22, 0.92)
  );
}
.gram-mini-pond::after {
  content: "";
  position: absolute;
  left: var(--ripple-x, 50%);
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(246, 214, 138, 0.45);
  transform: translate(-50%, -50%) scale(var(--ripple-scale, 0));
  opacity: var(--ripple-opacity, 0);
}
.lantern-toggle {
  position: absolute;
  left: 18px;
  top: 18px;
}
.detective-mini {
  background:
    linear-gradient(180deg, rgba(17, 18, 24, 0.88), rgba(11, 9, 11, 0.94)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02) 0 2px,
      transparent 2px 4px
    );
}
.mela-clue-scene {
  background:
    radial-gradient(
      circle at 15% 12%,
      rgba(233, 182, 87, 0.1),
      transparent 22%
    ),
    linear-gradient(180deg, rgba(24, 18, 18, 0.92), rgba(9, 9, 11, 0.96));
}
.password-line {
  margin-top: 18px;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(246, 214, 138, 0.72);
}
.trinoyon-section {
  margin-top: 44px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(233, 182, 87, 0.12);
}

/* =====================================================
   LAST MONSOON FOOTER
===================================================== */
.last-monsoon-footer {
  min-height: 118vh;
  padding: 120px 0 70px;
  background:
    radial-gradient(
      circle at 50% 8%,
      rgba(170, 196, 240, 0.12),
      transparent 18%
    ),
    linear-gradient(180deg, #06080d 0%, #0b1018 26%, #0f1115 60%, #090908 100%);
}
.footer-black-bars span {
  position: absolute;
  left: 0;
  right: 0;
  height: 42px;
  background: rgba(0, 0, 0, 0.64);
  z-index: 20;
}
.footer-black-bars span:first-child {
  top: 0;
}
.footer-black-bars span:last-child {
  bottom: 0;
}
.footer-audio-haze,
.footer-fog-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.footer-audio-haze {
  background:
    radial-gradient(
      circle at 22% 66%,
      rgba(233, 182, 87, 0.12),
      transparent 24%
    ),
    radial-gradient(
      circle at 70% 18%,
      rgba(195, 211, 241, 0.1),
      transparent 20%
    );
  filter: blur(24px);
}
.footer-fog-veil {
  background:
    radial-gradient(
      circle at var(--footer-fog-x, 50%) var(--footer-fog-y, 50%),
      rgba(255, 255, 255, 0.05),
      transparent 14%
    ),
    linear-gradient(
      180deg,
      rgba(206, 214, 224, 0.04),
      rgba(206, 214, 224, 0.14),
      rgba(80, 86, 98, 0.08)
    );
  mix-blend-mode: screen;
}
.last-monsoon-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  min-height: 700px;
  padding: 60px 8vw 20px;
}
.footer-moon-column {
  position: sticky;
  top: 100px;
}
.footer-moon {
  position: relative;
  width: 138px;
  height: 138px;
  border: 0;
  border-radius: 50%;
  cursor: none;
  background: radial-gradient(
    circle at 32% 32%,
    rgba(255, 255, 255, 0.96),
    rgba(224, 232, 249, 0.88) 44%,
    rgba(175, 195, 229, 0.74) 70%,
    rgba(91, 112, 146, 0.62) 100%
  );
  box-shadow:
    0 0 34px rgba(220, 230, 255, 0.28),
    0 0 120px rgba(170, 196, 240, 0.16);
}
.footer-moon-copy {
  margin-top: 16px;
  max-width: 180px;
  color: rgba(237, 228, 207, 0.48);
  line-height: 1.7;
}
.footer-street-scene {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(233, 182, 87, 0.08);
  background:
    radial-gradient(
      circle at 80% 12%,
      rgba(220, 230, 255, 0.1),
      transparent 20%
    ),
    linear-gradient(180deg, rgba(9, 14, 23, 0.94), rgba(10, 10, 12, 0.96));
}
.footer-street-scene::before {
  content: "";
  position: absolute;
  inset: 52% 0 0;
  background:
    linear-gradient(180deg, rgba(14, 16, 20, 0.12), rgba(9, 8, 8, 0.92)),
    radial-gradient(circle at 60% 40%, rgba(233, 182, 87, 0.1), transparent 20%);
}
.footer-streetlight {
  position: absolute;
  bottom: 38%;
  width: 4px;
  height: 210px;
  background: rgba(14, 15, 18, 0.92);
}
.streetlight-a {
  left: 14%;
}
.streetlight-b {
  right: 18%;
  height: 190px;
}
.footer-streetlight span {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(246, 214, 138, 0.92);
  box-shadow:
    0 0 18px rgba(246, 214, 138, 0.42),
    0 0 60px rgba(233, 182, 87, 0.18);
}
.footer-window-curtain {
  position: absolute;
  top: 14%;
  right: 14%;
  width: 96px;
  height: 220px;
  background:
    linear-gradient(180deg, rgba(202, 191, 174, 0.16), rgba(76, 54, 42, 0.84)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0 10px,
      rgba(0, 0, 0, 0.02) 10px 20px
    );
  animation: curtainBreath 8s ease-in-out infinite;
}
.curtain-second {
  right: 22%;
  width: 70px;
  opacity: 0.82;
  animation-delay: -3s;
}
.footer-kaash {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 12%;
  display: flex;
  justify-content: space-between;
}
.footer-kaash span {
  width: 3px;
  height: 160px;
  background: linear-gradient(
    180deg,
    rgba(72, 88, 64, 0.2),
    rgba(52, 68, 44, 0.84)
  );
  position: relative;
  transform-origin: bottom;
  animation: kaashSway 6.5s ease-in-out infinite;
}
.footer-kaash span::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -22px;
  width: 24px;
  height: 52px;
  border-radius: 50% 50% 40% 40%;
  background: linear-gradient(
    180deg,
    rgba(238, 232, 214, 0.78),
    rgba(174, 178, 170, 0.18)
  );
  filter: blur(0.4px);
}
.footer-kaash span:nth-child(2) {
  animation-delay: -1.5s;
}
.footer-kaash span:nth-child(3) {
  animation-delay: -3s;
}
.footer-kaash span:nth-child(4) {
  animation-delay: -4.2s;
}
@keyframes kaashSway {
  0%,
  100% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
}
.footer-tea {
  position: absolute;
  left: 18%;
  bottom: 19%;
  width: 82px;
  height: 48px;
  border-radius: 0 0 42px 42px;
  background: linear-gradient(
    180deg,
    rgba(224, 214, 194, 0.94),
    rgba(140, 114, 88, 0.9)
  );
}
.footer-tea::before {
  content: "";
  position: absolute;
  inset: -8px 10px auto 10px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(101, 68, 26, 0.94),
    rgba(56, 34, 10, 0.98)
  );
}
.footer-tea::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 8px;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(224, 214, 194, 0.82);
  border-left: 0;
  border-radius: 50%;
}
.fog-tram-stage {
  position: absolute;
  left: 16%;
  right: 12%;
  bottom: 16%;
  height: 280px;
}
.fog-tram {
  width: 240px;
  bottom: 14%;
}
.footer-record {
  bottom: 15%;
  right: 10%;
  cursor: none;
  border: 0;
}
.footer-puddle {
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 10%;
  height: 74px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 70% 40%,
      rgba(224, 232, 255, 0.14),
      transparent 18%
    ),
    linear-gradient(180deg, rgba(20, 38, 58, 0.44), rgba(6, 8, 12, 0.84));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.footer-ripples .footer-ripple {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(233, 182, 87, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.footer-hidden-fragments {
  position: absolute;
  inset: 0;
}
.hidden-fragment {
  position: absolute;
  font-family: "Caveat", cursive;
  font-size: 24px;
  color: rgba(246, 214, 138, 0.62);
  opacity: 0;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  transform: translateY(10px);
}
.footer-hidden-fragments:hover .hidden-fragment,
.hidden-fragment:hover {
  opacity: 0.8;
  transform: translateY(0);
}
.footer-poetry {
  position: relative;
  z-index: 4;
  padding: 20px 8vw 48px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.footer-bridge {
  margin: 18px auto 26px;
  max-width: 760px;
  color: rgba(237, 228, 207, 0.66);
  line-height: 1.8;
}
.tarpor-trigger {
  margin-top: 18px;
  border: 1px solid rgba(233, 182, 87, 0.2);
  background: rgba(233, 182, 87, 0.08);
  color: var(--gold-3);
  padding: 12px 18px;
  font: inherit;
  cursor: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}
.tarpor-trigger:hover {
  background: rgba(233, 182, 87, 0.14);
  border-color: rgba(246, 214, 138, 0.34);
  transform: translateY(-1px);
}
.tarpor-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition:
    max-height 0.5s ease,
    opacity 0.5s ease,
    transform 0.5s ease,
    margin-top 0.5s ease;
}
.tarpor-panel.open {
  max-height: 240px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 20px;
}
.tarpor-panel p {
  color: rgba(237, 228, 207, 0.82);
  line-height: 1.9;
}
.tarpor-panel .friend-ask {
  font-family: "Tiro Bangla", serif;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--paper);
}
.film-end-line {
  max-width: 980px;
}
.film-end-line.dissolve {
  filter: blur(0.8px);
  opacity: 0.5 !important;
}
.film-end-attr {
  font-family: "Caveat", cursive;
}
.the-end {
  margin-top: 36px;
  letter-spacing: 0.24em;
  text-transform: none;
}
.footer-credit-line {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 8vw 56px;
  color: rgba(237, 228, 207, 0.34);
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .poetry-grid,
  .noir-case,
  .pandal-stage,
  .food-grid,
  .diary-stage,
  .hemanta-stage,
  .detective-desk,
  .gram-grid,
  .cine-map,
  .chokh-stage,
  .nirjonota-stage,
  .janala-grid,
  .nostalgia-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .poetry-visual {
    height: 360px;
  }
  .kolkata-mosaic {
    grid-template-columns: 1fr;
  }
  .kolkata-mosaic > * {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: auto;
  }
  .suspense-cards {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 100px 6vw;
  }
  .top-nav {
    display: none;
  }
  html,
  body {
    cursor: auto;
  }
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
  .password-box .pw-input {
    width: 100%;
    margin-bottom: 14px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .password-box .pw-submit {
    margin-left: 0;
    width: 100%;
  }
  .moon {
    width: 110px;
    height: 110px;
  }
  .panchali-sun {
    width: 90px;
    height: 90px;
  }
  .audio-state {
    display: none;
  }
  .cinema-stage {
    width: 94%;
    padding: 20px;
  }
  .cinema-couple {
    max-width: 420px;
    aspect-ratio: 3/2;
  }
  .map-canvas-wrap {
    aspect-ratio: 1/1;
  }
  .sketch-wall {
    min-height: 1200px;
  }
  .frame-card {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: rotate(0) !important;
    margin: 0 auto 30px;
    display: block;
    max-width: 300px;
  }
  .gallery-candle {
    display: none;
  }
  .letter-paper {
    padding: 36px 28px;
  }
  .janala-stage {
    min-height: 880px;
  }
  .janala-window {
    width: 76%;
    height: 48%;
  }
  .janala-diary {
    right: 12%;
    width: 220px;
  }
  .diary-stage {
    margin-top: 56px;
    gap: 24px;
  }
  .diary-book {
    width: min(100%, 560px);
    margin: 0 auto;
    aspect-ratio: 1.02/1.18;
  }
  .diary-page {
    padding: 24px 20px 40px;
  }
  .diary-quote {
    font-size: 16px;
    line-height: 1.72;
  }
  .diary-note {
    font-size: 18px;
    margin-top: 10px;
  }
  .diary-controls {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
    flex-wrap: wrap;
  }
  .pandal-art,
  .tea-cup-stage,
  .eyes-stage {
    max-width: 520px;
    margin: 0 auto;
  }
  .tea-cup-stage {
    height: 360px;
  }
  .memory-experience {
    min-height: 320px;
  }
  .memory-head h3 {
    font-size: clamp(24px, 6vw, 34px);
  }
  .typewriter-line {
    font-size: 22px;
  }
  .last-monsoon-stage {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }
  .footer-moon-column {
    position: relative;
    top: auto;
  }
  .footer-street-scene {
    min-height: 820px;
  }
  .footer-credit-line {
    font-size: 8px;
    letter-spacing: 0.18em;
  }
}

@media (max-width: 640px) {
  .diary-stage {
    gap: 18px;
  }
  .diary-book {
    aspect-ratio: 0.92/1.3;
  }
  .diary-spread::before {
    width: 10px;
  }
  .diary-page {
    padding: 16px 12px 30px;
    gap: 8px;
  }
  .diary-page.left {
    padding-right: 8px;
  }
  .diary-page.right {
    padding-left: 8px;
  }
  .diary-quote {
    font-size: 12px;
    line-height: 1.58;
  }
  .diary-note {
    font-size: 14px;
    line-height: 1.25;
    transform: none;
  }
  .diary-num {
    font-size: 10px;
    bottom: 8px;
  }
  .diary-btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px;
    letter-spacing: 0.1em;
    font-size: 9px;
  }
  .diary-controls {
    gap: 10px;
  }
  .memory-experience {
    padding: 18px;
    min-height: auto;
  }
  .memory-scene {
    min-height: 168px;
    padding: 14px;
  }
  .tram-mini-seat {
    height: 62px;
  }
  .mela-wheel::before {
    width: 112px;
    height: 112px;
  }
  .jilipi-pan {
    width: 160px;
    height: 160px;
    margin-left: auto;
    margin-right: auto;
  }
  .memory-button,
  .record-choice,
  .adda-table,
  .walk-step,
  .lantern-toggle,
  .clue-chip {
    font-size: 10px;
    letter-spacing: 0.08em;
    padding: 10px 12px;
  }
  .typewriter-line {
    font-size: 20px;
  }
  .tea-cup-stage {
    height: 280px;
  }
  .tea-cup-image {
    width: 92%;
  }
  .eyes-caption {
    font-size: clamp(20px, 6vw, 28px);
  }
}

/* ============ REVEAL STATES ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
