:root {
  --ink: #111522;
  --navy: #10263a;
  --teal: #2b938c;
  --aqua: #9adbd3;
  --rose: #d9859b;
  --pearl: #fff8f2;
  --gold: #d8b36a;
  --violet: #706cae;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: #08121a;
  font-family: "Noto Serif TC", serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.curtain-stage,
.film-stage {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #020305;
}

.curtain-stage.is-opening {
  pointer-events: none;
}

.curtain-stage::after {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: -5%;
  z-index: 1;
  height: min(58vh, 620px);
  pointer-events: none;
  background: url("assets/images/bg_progressbar.webp") center bottom / cover no-repeat;
  opacity: .72;
  filter:
    saturate(1.14)
    drop-shadow(0 0 22px rgba(44, 178, 255, .28));
  -webkit-mask: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .24) 20%, #000 48%, #000 100%);
  mask: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .24) 20%, #000 48%, #000 100%);
  animation: landingWaveDrift 9s ease-in-out infinite alternate;
  transition: opacity .9s ease, filter .9s ease;
}

.curtain-stage.is-opening::after {
  opacity: 0;
  filter: saturate(1.14) blur(5px);
}

.curtain {
  position: absolute;
  top: 0;
  z-index: 0;
  width: 51%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05), transparent 12%, rgba(0,0,0,.45) 26%, transparent 42%, rgba(255,255,255,.04) 55%, transparent 72%),
    linear-gradient(180deg, #070707 0%, #000 44%, #0b0b0c 100%);
  box-shadow: inset 0 0 80px rgba(0,0,0,.95);
  transition: transform 1.45s cubic-bezier(.77,0,.18,1), filter 1.45s ease;
}

.curtain-left {
  left: 0;
  border-right: 1px solid rgba(216, 179, 106, .24);
}

.curtain-right {
  right: 0;
  border-left: 1px solid rgba(216, 179, 106, .24);
}

.is-opening .curtain-left {
  transform: translateX(-96%);
  filter: blur(2px);
}

.is-opening .curtain-right {
  transform: translateX(96%);
  filter: blur(2px);
}

.center-light {
  position: absolute;
  z-index: 2;
  width: min(52vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,179,106,.2), transparent 64%);
  filter: blur(10px);
}

.enter-button {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 8px;
  min-width: min(78vw, 360px);
  padding: 20px 34px 22px;
  color: var(--pearl);
  background: rgba(2, 3, 5, .74);
  border: 1px solid rgba(216, 179, 106, .62);
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 24px 70px rgba(0,0,0,.65);
  cursor: pointer;
  letter-spacing: 0;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.enter-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 232, 180, .92);
  background: rgba(13, 15, 20, .9);
}

.button-kicker {
  color: rgba(255, 248, 242, .72);
  font: 600 12px/1 "Cormorant Garamond", serif;
  text-transform: uppercase;
}

.button-title {
  font: 700 clamp(24px, 6vw, 34px)/1.05 "Cormorant Garamond", serif;
}

.film-stage {
  z-index: 15;
  opacity: 0;
  pointer-events: none;
  transition: opacity .75s ease;
}

.film-stage.is-visible {
  opacity: 1;
}

.aquarium-film {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.film-caption {
  position: absolute;
  bottom: clamp(28px, 8vh, 72px);
  left: clamp(20px, 6vw, 78px);
  color: var(--pearl);
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}

.film-caption span,
.eyebrow,
.section-heading p,
.ticket-band p,
.intro-band p {
  display: block;
  margin: 0 0 8px;
  color: var(--gold);
  font: 700 13px/1 "Cormorant Garamond", serif;
  text-transform: uppercase;
}

.film-caption strong {
  font-size: clamp(20px, 4vw, 34px);
}

.home-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7fbf9 0%, #eaf7f4 48%, #fff8f2 100%);
}

.route-page {
  min-height: 100vh;
}

.sub-page,
.character-detail {
  padding: 118px clamp(20px, 6vw, 74px) clamp(50px, 8vw, 90px);
  background:
    radial-gradient(circle at 8% 18%, rgba(154, 219, 211, .34), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(216, 133, 155, .24), transparent 22%),
    linear-gradient(180deg, #f8fbfa 0%, #eaf7f4 54%, #fff8f2 100%);
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--pearl);
  background: linear-gradient(180deg, rgba(8,18,26,.76), rgba(8,18,26,0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 26px;
}

.brand img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(103, 231, 255, .28));
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand strong {
  font: inherit;
}

.brand small {
  color: var(--aqua);
  font-size: 12px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(.55);
  transition: opacity .24s ease, transform .24s ease;
}

.nav-links a:hover::after {
  opacity: .75;
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 118px clamp(22px, 7vw, 88px) 9vh;
  color: var(--pearl);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 14, 30, .12) 0%, rgba(2, 18, 35, .18) 48%, rgba(2, 12, 26, .74) 100%),
    url("assets/images/bg_building_1.webp") center center / cover no-repeat;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media::before {
  z-index: 4;
  background:
    radial-gradient(circle at 78% 8%, rgba(255, 255, 242, .98) 0 2%, rgba(255, 229, 156, .72) 6%, rgba(255, 205, 111, .3) 15%, transparent 34%),
    linear-gradient(118deg, transparent 36%, rgba(255, 229, 158, .08) 42%, rgba(255, 248, 213, .52) 49%, rgba(255, 218, 143, .18) 58%, transparent 69%);
  mix-blend-mode: screen;
  filter: blur(1px);
  opacity: .94;
  animation: sunlightBloom 9s ease-in-out infinite alternate;
}

.hero-media::after {
  z-index: 4;
  background:
    radial-gradient(circle at 78% 8%, rgba(255,255,248,.98) 0 8px, rgba(255,226,147,.58) 9px 31px, transparent 68px),
    radial-gradient(circle at 67% 28%, rgba(255,240,191,.42) 0 12px, transparent 38px),
    radial-gradient(circle at 57% 44%, rgba(119,220,255,.3) 0 16px, transparent 48px),
    radial-gradient(circle at 47% 59%, rgba(255,218,145,.24) 0 11px, transparent 35px),
    radial-gradient(circle at 38% 73%, rgba(88,198,255,.18) 0 8px, transparent 28px);
  mix-blend-mode: screen;
  filter: blur(.4px);
  opacity: .88;
  animation: lensFlareDrift 12s ease-in-out infinite alternate;
}

.water {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    repeating-radial-gradient(circle at 78% 48%, transparent 0 58px, rgba(75, 212, 255, .1) 59px 60px, transparent 61px 94px),
    linear-gradient(90deg, transparent 0 49.9%, rgba(79, 219, 255, .13) 50%, transparent 50.1%),
    linear-gradient(180deg, transparent 0 49.9%, rgba(79, 219, 255, .1) 50%, transparent 50.1%);
  opacity: .56;
  animation: heroScan 10s ease-in-out infinite alternate;
}

.ray {
  position: absolute;
  z-index: 2;
  top: -18%;
  width: 14vw;
  height: 130%;
  background: linear-gradient(90deg, transparent, rgba(75, 218, 255, .11), transparent);
  filter: blur(3px);
  transform: rotate(12deg);
  animation: shimmer 8s ease-in-out infinite;
}

.ray-one { left: 18%; }
.ray-two { right: 12%; animation-delay: -3s; }

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

.hero-bubbles span {
  position: absolute;
  width: var(--size);
  height: var(--size);
  left: var(--left);
  bottom: -8%;
  border: 1px solid rgba(117, 225, 255, .48);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.62), transparent 18%);
  box-shadow:
    inset 0 0 10px rgba(82, 191, 255, .14),
    0 0 14px rgba(67, 187, 255, .16);
  opacity: 0;
  animation: heroBubbleRise var(--speed) linear infinite;
  animation-delay: var(--delay);
}

.hero-bubbles span:nth-child(1) { --size: 9px; --left: 8%; --speed: 12s; --delay: -2s; }
.hero-bubbles span:nth-child(2) { --size: 17px; --left: 19%; --speed: 16s; --delay: -9s; }
.hero-bubbles span:nth-child(3) { --size: 7px; --left: 37%; --speed: 11s; --delay: -5s; }
.hero-bubbles span:nth-child(4) { --size: 13px; --left: 52%; --speed: 15s; --delay: -12s; }
.hero-bubbles span:nth-child(5) { --size: 20px; --left: 67%; --speed: 18s; --delay: -4s; }
.hero-bubbles span:nth-child(6) { --size: 8px; --left: 78%; --speed: 13s; --delay: -8s; }
.hero-bubbles span:nth-child(7) { --size: 14px; --left: 88%; --speed: 17s; --delay: -14s; }
.hero-bubbles span:nth-child(8) { --size: 6px; --left: 95%; --speed: 10s; --delay: -3s; }

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 760px;
  text-shadow: 0 4px 24px rgba(0,0,0,.32);
}

.hero h1 {
  margin: 0;
  font: 700 clamp(52px, 10vw, 118px)/.9 "Cormorant Garamond", serif;
}

.hero-copy p:not(.eyebrow) {
  max-width: 600px;
  margin: 22px 0 28px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

.hero-actions,
.ticket-band,
.intro-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.primary-link,
.ghost-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 900;
}

.primary-link {
  color: #13222d;
  background: var(--pearl);
  border: 1px solid rgba(255,255,255,.55);
}

.ghost-link {
  color: var(--pearl);
  border: 1px solid rgba(255,255,255,.48);
}

.feature-band {
  position: relative;
  isolation: isolate;
  /* overflow: hidden; */
  padding: 0 0 clamp(64px, 7vw, 104px);
  color: #e9f8ff;
/*   background:
    linear-gradient(180deg, rgba(0, 9, 31, .24) 0%, rgba(0, 12, 37, .72) 44%, rgba(0, 8, 28, .96) 100%),
    url("assets/images/bg_activity.webp") center top / contain no-repeat; */
  background: url("assets/images/bg_activity1.webp") center var(--activity-bg-y, 0px) / contain no-repeat ;
  min-height: 128vh;
  z-index: 2;
  will-change: background-position;
  border-top: 1px solid rgba(86, 202, 255, .2);
  border-bottom: 1px solid rgba(86, 202, 255, .22);
}

/* .feature-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(clamp(-74px, -5.5vw, -46px) - 2px);
  z-index: 1;
  height: clamp(170px, 20vw, 300px);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 9, 31, 0) 0%, rgba(0, 10, 34, .18) 28%, rgba(0, 8, 30, .78) 76%, rgba(0, 8, 30, 0) 100%),
    url("assets/images/bg_activity1.webp") center bottom / 100% auto no-repeat;
  filter: saturate(1.05) brightness(.9);
  mask-image: linear-gradient(180deg, transparent 0, #000 24%, #000 72%, transparent 100%);
} */

.feature-band::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: -6%;
  right: -6%;
  top: clamp(320px, 45vw, 520px);
  height: 150px;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(130, 238, 255, .8) 0 3px, transparent 5px),
    repeating-radial-gradient(ellipse at 50% -10%, transparent 0 28px, rgba(63, 201, 255, .22) 29px 30px, transparent 31px 54px);
  border-top: 1px solid rgba(99, 225, 255, .55);
  filter: drop-shadow(0 0 14px rgba(51, 204, 255, .6));
  opacity: .8;
  transform: rotate(-1.8deg);
  transform-origin: center;
  mask-image: linear-gradient(180deg, transparent 0, #000 28%, #000 72%, transparent 100%);
}

.activity-hero,
.timeline-heading,
.timeline-frame {
  position: relative;
  z-index: 1;
}

.activity-hero {
  display: grid;
  align-items: center;
  min-height: clamp(420px, 57vw, 660px);
  padding: clamp(96px, 11vw, 150px) clamp(24px, 6vw, 84px) clamp(72px, 10vw, 132px);
}

.activity-hero-copy {
  max-width: 560px;
  text-shadow: 0 0 28px rgba(15, 111, 180, .38);
}

.activity-hero-copy p {
  margin: 0 0 20px;
  color: #b8efff;
  font: 700 clamp(17px, 2vw, 25px)/1 "Noto Serif TC", serif;
  letter-spacing: .34em;
}

.activity-hero-copy h2 {
  margin: 0;
  color: #e8fbff;
  font: 700 clamp(48px, 7.5vw, 84px)/1.05 "Noto Serif TC", serif;
  letter-spacing: .08em;
}

.activity-hero-copy span {
  display: block;
  margin: 22px 0 34px;
  color: #77daf6;
  font-size: clamp(18px, 2.3vw, 28px);
  letter-spacing: .16em;
}

.activity-link {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 28px;
  color: #eafaff;
  border: 1px solid rgba(93, 216, 255, .82);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15, 77, 121, .58), rgba(3, 34, 76, .74));
  box-shadow:
    inset 0 0 20px rgba(52, 202, 255, .14),
    0 0 24px rgba(40, 197, 255, .3);
  font-weight: 900;
}

.activity-link::after {
  content: "";
  width: 32px;
  height: 12px;
  margin-left: 16px;
  background:
    radial-gradient(circle at 16% 50%, #73e7ff 0 2px, transparent 3px),
    linear-gradient(180deg, transparent 0 4px, #74e6ff 5px 6px, transparent 7px),
    linear-gradient(180deg, transparent 0 1px, rgba(116, 230, 255, .7) 2px 3px, transparent 4px);
  background-size: 8px 12px, 100% 12px, 100% 6px;
}

.activity-wave {
  position: relative;
  z-index: 1;
  height: 74px;
  margin-top: -78px;
  pointer-events: none;
}

.activity-wave span {
  position: absolute;
  left: -4vw;
  right: -4vw;
  top: 12px;
  height: 72px;
  background:
    radial-gradient(circle at 50% 45%, rgba(160, 246, 255, .95) 0 3px, transparent 5px),
    repeating-radial-gradient(ellipse at 50% 140%, transparent 0 42px, rgba(86, 214, 255, .22) 43px 44px, transparent 45px 78px);
  border-top: 1px solid rgba(102, 228, 255, .6);
  filter: drop-shadow(0 0 16px rgba(55, 208, 255, .72));
  transform: rotate(-2deg);
  mask-image: linear-gradient(90deg, transparent, #000 12% 88%, transparent);
}

.timeline-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1380px;
  margin: clamp(34px, 5vw, 68px) auto 30px;
  padding: 0 clamp(20px, 5vw, 74px);
  text-align: center;
}

.timeline-heading p {
  margin: 0 0 12px;
  color: #c9f4ff;
  font: 600 12px/1 "Cormorant Garamond", serif;
  letter-spacing: .32em;
  text-transform: uppercase;
  text-shadow:
    0 1px 2px rgba(0, 10, 36, .86),
    0 0 18px rgba(84, 214, 255, .36);
}

.timeline-heading h2 {
  margin: 0;
  color: #eefcff;
  font: 600 clamp(24px, 3vw, 34px)/1.1 "Noto Serif TC", serif;
  letter-spacing: .12em;
  background: linear-gradient(180deg, #ffffff 0%, #d9f8ff 54%, #8bdcf2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 2px 6px rgba(0, 12, 42, .86),
    0 0 22px rgba(74, 202, 255, .22);
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .timeline-heading h2 {
    color: #eefcff;
    -webkit-text-fill-color: currentColor;
  }
}

.timeline-heading time {
  flex: none;
  position: absolute;
  right: clamp(20px, 5vw, 74px);
  top: 50%;
  transform: translateY(-50%);
  padding: 9px 16px;
  color: #eafdff;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(4, 24, 67, .9), rgba(0, 33, 76, .82)) padding-box,
    linear-gradient(135deg, rgba(174, 240, 255, .88), rgba(24, 92, 153, .7) 48%, rgba(1, 21, 62, .95)) border-box;
  font: 600 12px/1 "Cormorant Garamond", serif;
  letter-spacing: .12em;
  text-shadow:
    0 1px 2px rgba(0, 9, 32, .86),
    0 0 10px rgba(83, 211, 255, .28);
  box-shadow:
    inset 0 0 18px rgba(76, 204, 255, .1),
    0 0 18px rgba(37, 171, 228, .2);
}

.timeline-frame {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 16px;
  max-width: 1480px;
  margin: 0 auto;
  margin-top: 17vh;
  padding: 0 clamp(16px, 4vw, 56px);
}

.timeline-frame::after {
  content: "";
  position: absolute;
  left: clamp(16px, 4vw, 56px);
  right: clamp(16px, 4vw, 56px);
  bottom: clamp(-86px, -6vw, -54px);
  z-index: -1;
  height: clamp(110px, 12vw, 170px);
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 44%, rgba(208, 255, 255, .86) 0 4px, transparent 7px),
    repeating-radial-gradient(ellipse at 50% 130%, transparent 0 44px, rgba(84, 217, 255, .26) 45px 46px, transparent 47px 82px),
    linear-gradient(180deg, rgba(0, 12, 43, 0), rgba(0, 18, 52, .66) 58%, rgba(0, 12, 43, 0));
  border-top: 1px solid rgba(137, 239, 255, .76);
  filter: drop-shadow(0 0 18px rgba(83, 215, 255, .68));
  transform: rotate(-1.2deg);
  mask-image: linear-gradient(90deg, transparent, #000 8% 92%, transparent);
}

.timeline-nav {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(89, 219, 255, .74);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(20, 85, 128, .48), rgba(2, 26, 66, .76));
  box-shadow:
    inset 0 0 16px rgba(62, 207, 255, .18),
    0 0 18px rgba(51, 202, 255, .28);
  cursor: pointer;
}

.timeline-nav::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  margin: auto;
  border-top: 2px solid #c9f6ff;
  border-left: 2px solid #c9f6ff;
}

.timeline-nav-prev::before {
  transform: translateX(2px) rotate(-45deg);
}

.timeline-nav-next::before {
  transform: translateX(-2px) rotate(135deg);
}

.timeline-scroll {
  width: 100%;
  min-width: 0;
  max-width: none;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 2px 16px;
  cursor: grab;
  scroll-padding: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(72, 200, 255, .55) rgba(4, 32, 65, .6);
  scrollbar-width: thin;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}

.timeline-scroll * {
  user-select: none;
}

.timeline-scroll:active {
  cursor: grabbing;
}

.timeline-scroll.is-dragging {
  scroll-snap-type: none;
  user-select: none;
}

.timeline-track {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: clamp(14px, 2vw, 26px);
  width: max-content;
  min-width: 100%;
  padding: 0 clamp(18px, 4vw, 46px) 4px;
}

.timeline-track::before {
  content: "";
  position: absolute;
  top: 51px;
  left: calc(clamp(18px, 4vw, 46px) + 150px);
  right: calc(clamp(18px, 4vw, 46px) + 150px);
  height: 2px;
  background: linear-gradient(90deg, #29c5ff, #e4fbff 50%, #62bfff);
  box-shadow: 0 0 8px #2ccaff, 0 0 18px rgba(44, 202, 255, .7);
}

.feature {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 clamp(286px, 29vw, 360px);
  min-width: 286px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.ocean-record {
  position: relative;
  top: 12vh;
  z-index: 0;
  display: grid;
  place-items: center;
  min-height: clamp(390px, 42vw, 560px);
  margin: clamp(-74px, -5.5vw, -46px) 0 calc(clamp(64px, 7vw, 104px) * -1);
  overflow: hidden;
  color: #eefdff;
  transform: translate3d(0, var(--record-parallax-y, 0px), 0);
  will-change: transform;
  /* background:
    radial-gradient(circle at 50% 4%, rgba(124, 232, 255, .52), transparent 18%),
    linear-gradient(180deg, rgba(0, 12, 43, .04), rgba(0, 11, 38, .82) 36%, rgba(0, 8, 31, .96)); */
  border-top: 1px solid rgba(103, 221, 255, .34);
}

.ocean-record::before,
.ocean-record::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.ocean-record::before {
  left: -8%;
  right: -8%;
  top: -38px;
  height: 118px;
  background:
    radial-gradient(circle at 50% 52%, rgba(214, 255, 255, .92) 0 4px, transparent 7px),
    repeating-radial-gradient(ellipse at 50% 140%, transparent 0 44px, rgba(86, 218, 255, .24) 45px 46px, transparent 47px 82px);
  border-top: 1px solid rgba(137, 239, 255, .78);
  filter: drop-shadow(0 0 18px rgba(83, 215, 255, .72));
  transform: rotate(-1.5deg);
  mask-image: linear-gradient(90deg, transparent, #000 10% 90%, transparent);
}

/* .ocean-record::after {
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(103, 221, 255, .28), transparent 24%),
    linear-gradient(180deg, rgba(2, 34, 72, .2), rgba(0, 7, 26, .74));
} */

.ocean-record-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--record-video-parallax-y, 0px), 0) scale(1.08);
  will-change: transform;
}

.ocean-record-overlay {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  width: min(760px, calc(100% - 40px));
  padding: clamp(54px, 7vw, 88px) 20px clamp(40px, 6vw, 70px);
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 8, 26, .84);
}

.ocean-record-kicker {
  margin: 0 0 12px;
  color: #8de9ff;
  font: 600 12px/1 "Cormorant Garamond", serif;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.ocean-record h2 {
  margin: 0;
  color: #f3feff;
  font: 700 clamp(26px, 4vw, 42px)/1.15 "Noto Serif TC", serif;
  letter-spacing: .12em;
}

.ocean-record span {
  margin-top: 12px;
  color: rgba(211, 246, 255, .78);
  letter-spacing: .12em;
}

.ocean-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: min(620px, 92vw);
  margin: 28px auto 20px;
}

.ocean-waveform i {
  width: 3px;
  height: var(--wave-height, 28px);
  border-radius: 999px;
  background: linear-gradient(180deg, #7af4ff, #11b8ff 48%, #6f7cff);
  box-shadow: 0 0 10px rgba(33, 209, 255, .65);
  animation: oceanPulse 1.4s ease-in-out infinite alternate;
}

.ocean-waveform i:nth-child(3n) { --wave-height: 44px; animation-delay: -.28s; }
.ocean-waveform i:nth-child(4n) { --wave-height: 18px; animation-delay: -.48s; }
.ocean-waveform i:nth-child(5n) { --wave-height: 34px; animation-delay: -.16s; }

.ocean-play {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 18px;
  border: 1px solid rgba(117, 232, 255, .8);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(42, 201, 255, .36), rgba(0, 33, 85, .72) 68%),
    linear-gradient(180deg, rgba(14, 84, 133, .7), rgba(1, 22, 64, .9));
  box-shadow:
    inset 0 0 20px rgba(72, 214, 255, .24),
    0 0 26px rgba(47, 200, 255, .38);
  cursor: pointer;
}

.ocean-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #d9fbff;
  filter: drop-shadow(0 0 8px rgba(113, 235, 255, .84));
}

.ocean-record.is-playing .ocean-play::before {
  width: 17px;
  height: 21px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(90deg, #d9fbff 0 35%, transparent 36% 64%, #d9fbff 65%);
}

.ocean-record strong {
  color: #d5f8ff;
  font: 700 15px/1 "Cormorant Garamond", serif;
  letter-spacing: .24em;
}

.ocean-record-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 26px;
  padding: 0 34px;
  color: #eafdff;
  border: 1px solid rgba(102, 223, 255, .76);
  border-radius: 999px;
  background: rgba(0, 33, 76, .52);
  box-shadow:
    inset 0 0 18px rgba(76, 204, 255, .12),
    0 0 20px rgba(42, 195, 255, .18);
  font-weight: 900;
}

@keyframes oceanPulse {
  from { transform: scaleY(.58); opacity: .62; }
  to { transform: scaleY(1.08); opacity: 1; }
}

.timeline-time {
  height: 34px;
  text-align: center;
  color: #f1fbff;
  font: 700 20px/1 "Cormorant Garamond", serif;
  letter-spacing: .08em;
}

.timeline-node {
  position: relative;
  z-index: 2;
  width: 25px;
  height: 25px;
  margin: 5px auto 22px;
  border: 3px solid #e9fbff;
  border-radius: 50%;
  background: #4bcaff;
  box-shadow:
    0 0 0 5px rgba(45, 191, 255, .26),
    0 0 18px #39c8ff;
}

.timeline-node::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 50%;
  width: 1px;
  height: 22px;
  background: #64d9ff;
  box-shadow: 0 0 8px #44cbff;
}

.feature-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(10, 74, 116, .82), rgba(2, 28, 73, .92) 42%, rgba(0, 18, 56, .95)),
    radial-gradient(circle at 50% 0, rgba(88, 215, 255, .18), transparent 44%);
  border: 1px solid rgba(72, 207, 255, .68);
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(186, 245, 255, .08),
    inset 0 -44px 60px rgba(0, 10, 42, .36),
    0 16px 34px rgba(0, 8, 28, .46),
    0 0 24px rgba(39, 180, 255, .16);
}

.feature-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  border: 1px solid rgba(127, 221, 255, .26);
  border-radius: 4px;
  filter: saturate(.92) contrast(1.05) brightness(.92);
}

.feature-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 14px 10px;
}

.feature-copy .feature-number {
  margin: 0 0 8px;
  color: #8be8ff;
  font: 600 11px/1 "Cormorant Garamond", serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.feature h3,
.section-heading h2,
.ticket-band h2,
.intro-band h2 {
  margin: 14px 0 12px;
  font-size: clamp(25px, 3.2vw, 42px);
}

.feature h3 {
  margin: 0 0 10px;
  color: #f1f8ff;
  font-size: clamp(23px, 2.2vw, 30px);
  letter-spacing: .06em;
}

.feature-copy > p:not(.feature-number) {
  margin: 0;
  color: rgba(218, 241, 255, .78);
  line-height: 1.8;
}

.gallery-grid p,
.ticket-band span,
.intro-band span {
  margin: 0;
  color: rgba(17,21,34,.7);
  line-height: 1.8;
}

.feature-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(82, 195, 245, .3);
}

.feature-meta span {
  color: #a7dff5;
  font: 600 12px/1 "Cormorant Garamond", serif;
  letter-spacing: .14em;
}

.feature-meta strong {
  min-width: 102px;
  padding: 9px 16px;
  color: #c5f2ff;
  border: 1px solid rgba(83, 207, 255, .64);
  border-radius: 999px;
  font-size: 12px;
  text-align: center;
  box-shadow: inset 0 0 14px rgba(39, 180, 255, .08);
}

@media (max-width: 720px) {
  .feature-band {
    background-position: center top;
  }

  .activity-hero {
    min-height: 520px;
    padding: 112px 22px 96px;
  }

  .activity-hero-copy p {
    font-size: 15px;
    letter-spacing: .24em;
  }

  .activity-hero-copy h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .activity-hero-copy span {
    font-size: 17px;
    letter-spacing: .1em;
  }

  .activity-wave {
    margin-top: -64px;
  }

  .timeline-heading {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 30px;
    text-align: left;
  }

  .timeline-heading time {
    position: static;
    transform: none;
    padding: 9px 14px;
  }

  .timeline-frame {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding-inline: 0;
  }

  .timeline-nav {
    display: none;
  }

  .timeline-track {
    gap: 16px;
    min-width: 0;
    padding-inline: 22px;
  }

  .timeline-track::before {
    left: 164px;
    right: 164px;
  }

  .feature {
    flex-basis: min(82vw, 330px);
  }

  .ocean-record {
    min-height: 430px;
    margin-top: -34px;
  }

  .ocean-record-overlay {
    width: min(100% - 28px, 560px);
    padding-top: 60px;
  }

  .ocean-waveform {
    gap: 3px;
    width: min(100%, 420px);
  }

  .ocean-waveform i {
    width: 2px;
  }

  .ocean-play {
    width: 54px;
    height: 54px;
    margin: 0 10px;
  }
}

.gallery-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(54px, 8vw, 96px) clamp(20px, 6vw, 74px);
}

.gallery-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(247, 251, 249, .9), transparent 18% 82%, rgba(247, 251, 249, .9)),
    linear-gradient(180deg, rgba(247, 251, 249, .76), transparent 30% 72%, rgba(238, 248, 245, .8));
}

.gallery-whale {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -2;
  width: 120%;
  height: 145%;
  object-fit: cover;
  object-position: center;
  opacity: .09;
  pointer-events: none;
  mix-blend-mode: multiply;
  filter: saturate(.65) contrast(1.08) brightness(1.08);
  transform: translate(-50%, -50%) scale(1.08);
}

.gallery-section > :not(.gallery-whale) {
  position: relative;
  z-index: 1;
}

.video-parallax-band {
  position: relative;
  height: clamp(140px, 18vw, 210px);
  overflow: hidden;
  isolation: isolate;
  margin: clamp(18px, 3vw, 34px) clamp(14px, 3.6vw, 56px);
  border: 1px solid rgba(115, 220, 255, .34);
  border-radius: 6px;
  background: #031525;
  box-shadow:
    0 18px 50px rgba(0, 8, 20, .38),
    inset 0 0 0 6px rgba(2, 19, 38, .72),
    inset 0 0 42px rgba(47, 166, 232, .14),
    0 0 18px rgba(70, 194, 255, .1);
}

.video-parallax-band::before,
.video-parallax-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.video-parallax-band::before {
  background:
    radial-gradient(circle at 9% 72%, rgba(170, 239, 255, .5) 0 2px, transparent 3px),
    radial-gradient(circle at 18% 34%, rgba(138, 224, 255, .34) 0 3px, transparent 4px),
    radial-gradient(circle at 72% 76%, rgba(160, 234, 255, .4) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 28%, rgba(133, 220, 255, .34) 0 4px, transparent 5px),
    linear-gradient(180deg, rgba(2, 15, 29, .66), rgba(2, 30, 52, .04) 42%, rgba(2, 13, 26, .66)),
    linear-gradient(90deg, rgba(2, 13, 27, .5), transparent 24% 76%, rgba(2, 13, 27, .5));
  background-size: auto, auto, auto, auto, auto, auto;
  animation: aquariumBubbles 8s ease-in-out infinite alternate;
}

.video-parallax-band::after {
  inset: 6px;
  border: 1px solid rgba(157, 232, 255, .18);
  border-radius: 2px;
  background:
    linear-gradient(112deg, transparent 12%, rgba(226, 250, 255, .1) 20%, transparent 30%),
    repeating-radial-gradient(ellipse at 50% -35%, transparent 0 30px, rgba(104, 218, 255, .07) 31px 32px, transparent 33px 56px);
  box-shadow:
    inset 0 22px 30px rgba(1, 10, 22, .42),
    inset 0 -22px 30px rgba(1, 10, 22, .46),
    inset 18px 0 24px rgba(1, 10, 22, .24),
    inset -18px 0 24px rgba(1, 10, 22, .24);
}

.video-parallax-band video {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 165%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, calc(-50% + var(--parallax-y, 0px)), 0) scale(1.03);
  will-change: transform;
}

.video-parallax-band-bottom video {
  object-position: center 62%;
}

@keyframes aquariumBubbles {
  0% { background-position: 0 10px, 0 4px, 0 12px, 0 6px, 0 0, 0 0; }
  100% { background-position: 8px -18px, -5px -22px, 6px -14px, -8px -24px, 0 0, 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .feature-band,
  .ocean-record,
  .ocean-record-video {
    transform: none;
    will-change: auto;
  }

  .video-parallax-band video {
    transform: translate3d(0, -50%, 0) scale(1.03);
  }

  .gallery-whale {
    display: none;
  }
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid article {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(16,38,58,.12);
  border-radius: 8px;
  overflow: hidden;
}

.gallery-grid h3,
.gallery-grid p {
  padding: 0 20px;
}

.gallery-grid h3 {
  margin: 20px 0 8px;
  font-size: 22px;
}

.gallery-grid p {
  padding-bottom: 24px;
}

.tank {
  height: 220px;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 42px rgba(0, 18, 38, .24);
  animation: tankGlow 7s ease-in-out infinite alternate;
}

.tank-a { background-image: url("assets/images/bg_sapphiretunnel.webp"); }
.tank-b { background-image: url("assets/images/bg_jellyfishgarden.webp"); }
.tank-c { background-image: url("assets/images/bg_seahorsewindow.webp"); }

.intro-band {
  justify-content: space-between;
  margin: 0 clamp(20px, 6vw, 74px);
  padding: clamp(28px, 5vw, 48px);
  color: var(--ink);
  border-radius: 8px;
}
.ticket-band {
  justify-content: space-between;
  margin: 0 clamp(20px, 6vw, 74px);
  padding: clamp(28px, 5vw, 48px);
  color: var(--pearl);
  background: linear-gradient(120deg, var(--navy), #28636d 58%, #8b6375);
  border-radius: 8px;
}
.ticket-band .primary-link {
  background: #fff8f2;
}

.page-hero {
  position: relative;
  color: var(--pearl);
  overflow: hidden;
  background: linear-gradient(120deg, #10263a, #246f74 58%, #8f6679);
}

.compact-hero {
  min-height: 330px;
  display: grid;
  align-content: end;
  margin: 0 0 30px;
  padding: clamp(34px, 6vw, 64px);
}

.compact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255,255,255,.28), transparent 13%),
    linear-gradient(112deg, transparent 0 38%, rgba(255,255,255,.14) 39% 41%, transparent 42%);
  animation: drift 12s ease-in-out infinite alternate;
}

.compact-hero > * {
  position: relative;
}

.compact-hero h1,
.character-detail h1 {
  margin: 0;
  font: 700 clamp(46px, 8vw, 92px)/.92 "Cormorant Garamond", serif;
}

.compact-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.character-card {
  min-height: 360px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 24px;
  color: var(--pearl);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(16, 38, 58, .12);
  box-shadow: 0 24px 70px rgba(16, 38, 58, .14);
  transition: transform .28s ease, box-shadow .28s ease;
}

.character-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 90px rgba(16, 38, 58, .22);
}

.character-card::before,
.character-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.character-card::before {
  background:
    radial-gradient(circle at 54% 22%, rgba(255,255,255,.34), transparent 18%),
    linear-gradient(150deg, rgba(16,38,58,.26), rgba(16,38,58,.74));
}

.character-card::after {
  top: 18%;
  left: 50%;
  width: 44%;
  height: 54%;
  border-radius: 50% 50% 42% 42%;
  background: rgba(255, 248, 242, .22);
  transform: translateX(-50%);
  filter: blur(1px);
}

.card-rei { background: linear-gradient(145deg, #1e5462, #91cfd4 46%, #d8b36a); }
.card-nagi { background: linear-gradient(145deg, #0e3958, #2b938c 52%, #706cae); }
.card-haruto { background: linear-gradient(145deg, #244d45, #9adbd3 50%, #fff8f2); color: #10263a; }
.card-sora { background: linear-gradient(145deg, #22666b, #d9859b 54%, #f7d77d); }
.card-kei { background: linear-gradient(145deg, #111522, #3c416b 52%, #d8b36a); }
.card-mikage { background: linear-gradient(145deg, #10263a, #246f74 45%, #8f6679); }

.portrait-mark {
  position: absolute;
  top: 26px;
  right: 28px;
  font: 700 92px/.8 "Cormorant Garamond", serif;
  opacity: .24;
}

.character-card p,
.character-card h2,
.character-card small {
  margin: 0;
}

.character-card p {
  color: var(--gold);
  font: 700 13px/1 "Cormorant Garamond", serif;
  text-transform: uppercase;
}

.character-card h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.character-card small {
  font-size: 15px;
  line-height: 1.5;
}

.character-detail {
  color: var(--pearl);
  background: linear-gradient(135deg, #10263a, #1d716c 58%, #8f6679);
}

.detail-rei { background: linear-gradient(135deg, #163a4a, #7dbdc8 58%, #d8b36a); }
.detail-nagi { background: linear-gradient(135deg, #091c2f, #246f74 58%, #706cae); }
.detail-haruto { background: linear-gradient(135deg, #143b36, #9adbd3 58%, #fff8f2); color: #10263a; }
.detail-sora { background: linear-gradient(135deg, #155a66, #d9859b 58%, #f7d77d); }
.detail-kei { background: linear-gradient(135deg, #0c101a, #34385f 58%, #9d7f52); }
.detail-mikage { background: linear-gradient(135deg, #10263a, #28636d 52%, #8b6375); }

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 24px;
  padding: 0 16px;
  color: inherit;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 4px;
  font-weight: 900;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 38vw) minmax(320px, 680px);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  min-height: calc(100vh - 240px);
}

.detail-portrait {
  min-height: 520px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  background:
    radial-gradient(circle at 50% 26%, rgba(255,255,255,.48), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.05));
  box-shadow: inset 0 0 80px rgba(255,255,255,.08), 0 26px 80px rgba(0,0,0,.16);
}

.detail-portrait span {
  font: 700 clamp(160px, 20vw, 260px)/1 "Cormorant Garamond", serif;
  opacity: .86;
}

.detail-copy h2 {
  margin: 22px 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.45;
}

.detail-copy p:not(.eyebrow) {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.9;
}

.detail-copy dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px 18px;
  margin: 30px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,.28);
}

.detail-copy dt {
  font-weight: 900;
}

.detail-copy dd {
  margin: 0;
}

.map-board {
  position: relative;
  min-height: 520px;
  margin-bottom: 22px;
  border: 1px solid rgba(16,38,58,.14);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16,38,58,.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16,38,58,.08) 1px, transparent 1px),
    radial-gradient(circle at 20% 22%, rgba(154,219,211,.45), transparent 20%),
    radial-gradient(circle at 78% 72%, rgba(216,133,155,.25), transparent 22%),
    #f9fcfb;
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
}

.map-board::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--rose));
  border-radius: 999px;
}

.map-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(112px, 14vw, 170px);
  min-height: 76px;
  padding: 12px;
  color: #10263a;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(16,38,58,.16);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(16,38,58,.12);
  font-weight: 900;
  text-align: center;
}

.entrance { left: 6%; top: 42%; }
.jelly-map { left: 22%; top: 20%; }
.tunnel-map { left: 38%; top: 42%; }
.coral-map { right: 24%; top: 18%; }
.pearl-map { right: 10%; top: 46%; }
.tea-map { left: 48%; bottom: 10%; }
.shop-map { right: 8%; bottom: 12%; }

.map-notes,
.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.map-notes article,
.access-grid article,
.access-panel {
  padding: 24px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(16,38,58,.12);
  border-radius: 8px;
}

.map-notes h2,
.access-grid h2,
.access-panel h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.map-notes p,
.access-grid p,
.access-panel p {
  margin: 0;
  color: rgba(17,21,34,.7);
  line-height: 1.8;
}

.access-grid article span {
  display: block;
  margin-bottom: 10px;
  color: var(--rose);
  font: 700 14px/1 "Cormorant Garamond", serif;
  text-transform: uppercase;
}

.access-panel {
  margin-top: 20px;
  background: linear-gradient(120deg, rgba(16,38,58,.92), rgba(36,111,116,.88));
  color: var(--pearl);
}

.access-panel p {
  color: rgba(255,248,242,.78);
}

.music-page {
  min-height: 100vh;
  padding: 96px clamp(18px, 5vw, 56px) 40px;
  color: var(--pearl);
  background:
    radial-gradient(circle at 50% 22%, rgba(69, 186, 231, .22), transparent 24%),
    radial-gradient(circle at 16% 82%, rgba(61, 139, 216, .18), transparent 18%),
    linear-gradient(180deg, #071a35 0%, #041129 64%, #031023 100%);
  overflow: hidden;
}

.music-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.5) 1px, transparent 1px),
    radial-gradient(circle, rgba(111,186,255,.32) 1px, transparent 1px);
  background-size: 42px 42px, 67px 67px;
  opacity: .18;
}

.music-shell {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.music-heading {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.music-heading h1 {
  margin: 0;
  font: 700 clamp(42px, 7vw, 78px)/1 "Cormorant Garamond", serif;
}

.music-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(255,248,242,.72);
  line-height: 1.8;
}

.deep-player {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(300px, 360px);
  gap: 24px;
  align-items: stretch;
}

.visualizer-panel,
.playlist-panel {
  border: 1px solid rgba(92, 201, 255, .24);
  border-radius: 8px;
  background: rgba(3, 15, 36, .58);
  box-shadow: inset 0 0 70px rgba(54, 169, 255, .08), 0 28px 90px rgba(0,0,0,.3);
  backdrop-filter: blur(14px);
}

.visualizer-panel {
  position: relative;
  min-height: 720px;
  padding: clamp(18px, 4vw, 38px);
  overflow: hidden;
}

.visualizer-panel::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 58px;
  height: 66px;
  background:
    radial-gradient(circle at 50% 44%, rgba(81,197,255,.8), transparent 6%),
    linear-gradient(90deg, transparent, rgba(76,190,255,.55), transparent);
  clip-path: polygon(0 76%, 8% 56%, 16% 72%, 25% 45%, 34% 70%, 43% 52%, 50% 76%, 59% 44%, 70% 68%, 82% 48%, 100% 74%, 100% 100%, 0 100%);
  opacity: .72;
}

.time-readout {
  position: absolute;
  top: 42%;
  left: clamp(18px, 4vw, 42px);
  right: clamp(18px, 4vw, 42px);
  display: flex;
  justify-content: space-between;
  color: rgba(255,248,242,.58);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
}

.orbital-meter {
  position: relative;
  width: min(68vw, 520px);
  aspect-ratio: 1;
  margin: 28px auto 26px;
  display: grid;
  place-items: center;
}

.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(93, 196, 255, .32);
  box-shadow: 0 0 24px rgba(67, 184, 255, .16), inset 0 0 32px rgba(67, 184, 255, .08);
}

.ring-one {
  inset: 7%;
  border-top-color: rgba(126, 92, 255, .76);
  animation: spin 10s linear infinite;
}

.ring-two {
  inset: 16%;
  border-right-color: rgba(72, 210, 255, .82);
  animation: spin 16s linear reverse infinite;
}

.ring-three {
  inset: 27%;
  border-bottom-color: rgba(255,255,255,.52);
  animation: pulseRing 2.4s ease-in-out infinite;
}

.wave-line {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 50%;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transform: translateY(-50%);
}

.wave-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #60d3ff, #fff8f2, #60d3ff, transparent);
  box-shadow: 0 0 18px rgba(96,211,255,.8);
}

.wave-line span {
  position: relative;
  z-index: 1;
  width: 2px;
  height: 16px;
  background: #8bdfff;
  box-shadow: 0 0 12px rgba(139,223,255,.9);
  animation: equalize 1.2s ease-in-out infinite;
  animation-delay: calc(var(--i, 1) * -80ms);
}

.wave-line span:nth-child(1) { --i: 1; }
.wave-line span:nth-child(2) { --i: 2; }
.wave-line span:nth-child(3) { --i: 7; }
.wave-line span:nth-child(4) { --i: 3; }
.wave-line span:nth-child(5) { --i: 9; }
.wave-line span:nth-child(6) { --i: 4; }
.wave-line span:nth-child(7) { --i: 10; }
.wave-line span:nth-child(8) { --i: 5; }
.wave-line span:nth-child(9) { --i: 11; }
.wave-line span:nth-child(10) { --i: 6; }
.wave-line span:nth-child(11) { --i: 12; }
.wave-line span:nth-child(12) { --i: 8; }
.wave-line span:nth-child(13) { --i: 3; }
.wave-line span:nth-child(14) { --i: 9; }
.wave-line span:nth-child(15) { --i: 5; }
.wave-line span:nth-child(16) { --i: 11; }
.wave-line span:nth-child(17) { --i: 4; }
.wave-line span:nth-child(18) { --i: 10; }
.wave-line span:nth-child(19) { --i: 2; }
.wave-line span:nth-child(20) { --i: 7; }
.wave-line span:nth-child(21) { --i: 1; }
.wave-line span:nth-child(22) { --i: 6; }
.wave-line span:nth-child(23) { --i: 8; }
.wave-line span:nth-child(24) { --i: 12; }

.deep-player:not(.is-playing) .wave-line span,
.deep-player:not(.is-playing) .ring {
  animation-play-state: paused;
}

.creature-stage {
  position: relative;
  width: 190px;
  aspect-ratio: 1;
  filter: drop-shadow(0 0 22px rgba(98, 211, 255, .7));
  animation: creatureFloat 4s ease-in-out infinite;
}

.sea-creature {
  position: absolute;
  inset: 0;
  display: none;
}

.creature-stage[data-creature="octopus"] .creature-octopus,
.creature-stage[data-creature="wrasse"] .creature-wrasse,
.creature-stage[data-creature="dolphin"] .creature-dolphin,
.creature-stage[data-creature="blindfish"] .creature-blindfish,
.creature-stage[data-creature="sardines"] .creature-sardines {
  display: block;
}

.creature-octopus::before {
  content: "";
  position: absolute;
  left: 32%;
  top: 18%;
  width: 36%;
  height: 42%;
  border-radius: 48% 48% 42% 42%;
  background: radial-gradient(circle at 34% 24%, #fff, #64d7ff 34%, #286fd4 78%);
}

.creature-octopus i {
  position: absolute;
  top: 55%;
  width: 15px;
  height: 76px;
  border-radius: 999px;
  border-left: 2px solid #86e7ff;
}

.creature-octopus i:nth-child(1) { left: 36%; transform: rotate(14deg); }
.creature-octopus i:nth-child(2) { left: 44%; transform: rotate(5deg); }
.creature-octopus i:nth-child(3) { left: 51%; transform: rotate(-5deg); }
.creature-octopus i:nth-child(4) { left: 58%; transform: rotate(-14deg); }
.creature-octopus i:nth-child(5) { left: 48%; height: 92px; }

.creature-wrasse::before,
.creature-blindfish::before {
  content: "";
  position: absolute;
  left: 18%;
  top: 42%;
  width: 62%;
  height: 24%;
  border-radius: 60% 42% 42% 60%;
  background: linear-gradient(90deg, #55d9ff, #e8cf6d 44%, #ff7fb1);
}

.creature-wrasse::after,
.creature-blindfish::after {
  content: "";
  position: absolute;
  right: 7%;
  top: 44%;
  border-left: 42px solid #ff7fb1;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

.creature-wrasse i {
  position: absolute;
  left: 46%;
  top: 34%;
  width: 42px;
  height: 34px;
  border-radius: 50% 50% 0 0;
  background: rgba(255,255,255,.34);
}

.creature-dolphin::before {
  content: "";
  position: absolute;
  left: 18%;
  top: 34%;
  width: 70%;
  height: 30%;
  border-radius: 58% 70% 46% 52%;
  background: linear-gradient(160deg, #bff5ff, #4eaee9 58%, #235aa8);
  transform: rotate(-12deg);
}

.creature-dolphin::after {
  content: "";
  position: absolute;
  left: 42%;
  top: 24%;
  border-bottom: 42px solid #6bc8ef;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  transform: rotate(-14deg);
}

.creature-dolphin i {
  position: absolute;
  right: 7%;
  top: 39%;
  border-left: 42px solid #4eaee9;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  transform: rotate(-12deg);
}

.creature-blindfish {
  opacity: .86;
  filter: saturate(.65) brightness(1.25);
}

.creature-blindfish::before {
  background: linear-gradient(90deg, #d8f7ff, #fff8f2 50%, #aacbd6);
}

.creature-blindfish::after {
  border-left-color: #aacbd6;
}

.creature-blindfish i {
  position: absolute;
  left: 27%;
  top: 49%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(5, 17, 41, .28);
}

.creature-sardines i {
  position: absolute;
  width: 64px;
  height: 18px;
  border-radius: 60% 45% 45% 60%;
  background: linear-gradient(90deg, #eefcff, #62d3ff 70%, #2d78dc);
}

.creature-sardines i::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 3px;
  border-left: 18px solid #62d3ff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.creature-sardines i:nth-child(1) { left: 18%; top: 32%; }
.creature-sardines i:nth-child(2) { left: 44%; top: 42%; transform: scale(.82); }
.creature-sardines i:nth-child(3) { left: 20%; top: 54%; transform: scale(.72); }
.creature-sardines i:nth-child(4) { left: 54%; top: 58%; transform: scale(.62); }
.creature-sardines i:nth-child(5) { left: 38%; top: 25%; transform: scale(.56); }

.track-meta {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.track-meta h2 {
  margin: 0;
  font: 700 clamp(28px, 4vw, 42px)/1 "Cormorant Garamond", serif;
}

.track-meta p {
  margin: 6px 0 12px;
  color: rgba(255,248,242,.58);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.track-meta span {
  color: rgba(255,248,242,.76);
  line-height: 1.7;
}

.player-controls {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 68px);
  margin: 30px 0 28px;
}

.round-control,
.play-control {
  display: grid;
  place-items: center;
  color: #bfefff;
  background: rgba(4, 21, 48, .76);
  border: 1px solid rgba(100, 214, 255, .38);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 26px rgba(75, 201, 255, .18), inset 0 0 28px rgba(75, 201, 255, .08);
}

.round-control {
  width: 76px;
  height: 76px;
  font-size: 44px;
}

.play-control {
  width: 104px;
  height: 104px;
  font-size: 36px;
  border-color: rgba(121, 225, 255, .68);
}

.play-control span {
  transform: translateX(2px);
}

.deep-player.is-playing .play-control span {
  transform: none;
}

.progress-bar {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 40px;
  z-index: 2;
  display: block;
}

.progress-bar input {
  width: 100%;
  accent-color: #60d3ff;
}

.progress-bar span {
  position: absolute;
  left: 0;
  top: 50%;
  width: var(--progress, 0%);
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, #327dff, #67e7ff);
  box-shadow: 0 0 18px rgba(103, 231, 255, .8);
}

.playlist-panel {
  padding: 24px;
}

.playlist-heading p {
  margin: 0 0 8px;
  color: var(--gold);
  font: 700 13px/1 "Cormorant Garamond", serif;
  text-transform: uppercase;
}

.playlist-heading h2 {
  margin: 0 0 18px;
  font-size: 26px;
}

.playlist {
  display: grid;
  gap: 12px;
}

.playlist button {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 14px;
  color: var(--pearl);
  text-align: left;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  cursor: pointer;
}

.playlist button.is-active {
  border-color: rgba(96,211,255,.78);
  background: rgba(65, 183, 255, .14);
}

.playlist-index {
  color: #60d3ff;
  font: 700 22px/1 "Cormorant Garamond", serif;
}

.playlist-title {
  display: grid;
  gap: 4px;
}

.playlist-title strong {
  font-size: 17px;
}

.playlist-title small,
.playlist-creature {
  color: rgba(255,248,242,.58);
  font-size: 12px;
}

.playlist-creature {
  white-space: nowrap;
}

.music-site {
  min-height: 100vh;
  background: #031023;
}

.music-site .top-nav {
  color: rgba(255, 248, 242, .86);
  background: linear-gradient(180deg, rgba(3, 10, 28, .72), rgba(3, 10, 28, 0));
}

.music-site .nav-links {
  font-size: 13px;
}

.music-site .nav-links a[aria-current="page"] {
  color: #8ce7ff;
}

.music-page {
  min-height: 100vh;
  padding: 70px clamp(12px, 3vw, 36px) 28px;
  background:
    radial-gradient(circle at 50% 20%, rgba(52, 160, 255, .2), transparent 22%),
    radial-gradient(circle at 50% 52%, rgba(12, 80, 168, .34), transparent 40%),
    radial-gradient(circle at 12% 88%, rgba(26, 135, 233, .22), transparent 20%),
    radial-gradient(circle at 88% 86%, rgba(85, 43, 177, .2), transparent 20%),
    linear-gradient(180deg, #08224a 0%, #041739 48%, #031023 100%);
}

.music-page::before {
  background-image:
    radial-gradient(circle, rgba(155, 221, 255, .68) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,.38) 1px, transparent 1px);
  background-size: 38px 38px, 81px 81px;
  opacity: .2;
}

.music-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(89, 196, 255, .32), transparent 1px, transparent calc(100% - 1px), rgba(89, 196, 255, .32)),
    radial-gradient(circle at 50% 50%, transparent 0 45%, rgba(0,0,0,.24) 76%, rgba(0,0,0,.42) 100%);
}

.music-shell {
  max-width: 640px;
  min-height: calc(100vh - 98px);
}

.music-heading {
  position: absolute;
  top: 4px;
  left: 18px;
  z-index: 4;
  max-width: 360px;
  margin: 0;
  text-align: left;
  opacity: .72;
}

.music-heading .eyebrow {
  margin-bottom: 4px;
  color: #79e7ff;
}

.music-heading h1 {
  font-size: 22px;
}

.music-heading p:not(.eyebrow) {
  display: none;
}

.deep-player {
  display: block;
  position: relative;
  min-height: calc(100vh - 104px);
}

.visualizer-panel {
  width: min(100%, 580px);
  min-height: min(820px, calc(100vh - 74px));
  margin: 0 auto;
  padding: 18px 18px 74px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(6, 30, 68, .28), rgba(3, 14, 35, .2)),
    radial-gradient(circle at 50% 24%, rgba(92, 212, 255, .18), transparent 24%);
  box-shadow: none;
  backdrop-filter: none;
}

.visualizer-panel::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 70px;
  height: 86px;
  background:
    radial-gradient(circle at 50% 60%, rgba(98, 211, 255, .82), transparent 4%),
    radial-gradient(circle at 18% 54%, rgba(98, 211, 255, .3), transparent 2%),
    radial-gradient(circle at 78% 46%, rgba(98, 211, 255, .32), transparent 2%),
    linear-gradient(90deg, transparent, rgba(50, 135, 255, .38), rgba(103, 231, 255, .68), rgba(50, 135, 255, .38), transparent);
  clip-path: polygon(0 74%, 7% 58%, 15% 72%, 23% 48%, 31% 69%, 39% 52%, 47% 76%, 54% 44%, 63% 68%, 73% 50%, 84% 72%, 100% 56%, 100% 100%, 0 100%);
  opacity: .88;
  filter: drop-shadow(0 0 18px rgba(76,190,255,.62));
}

.visualizer-panel::after {
  left: 8%;
  right: 8%;
  bottom: 95px;
  height: 20px;
  opacity: .55;
  background:
    radial-gradient(circle at 16% 50%, rgba(103,231,255,.7), transparent 3%),
    radial-gradient(circle at 34% 50%, rgba(103,231,255,.8), transparent 2%),
    radial-gradient(circle at 68% 50%, rgba(103,231,255,.68), transparent 3%),
    linear-gradient(90deg, transparent, rgba(103,231,255,.45), transparent);
  clip-path: none;
}

.orbital-meter {
  width: min(82vw, 450px);
  margin: 24px auto 8px;
}

.orbital-meter::before,
.orbital-meter::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orbital-meter::before {
  inset: -7%;
  background:
    repeating-conic-gradient(from 12deg, rgba(77, 191, 255, .18) 0deg 1.4deg, transparent 1.4deg 4deg);
  mask: radial-gradient(circle, transparent 0 68%, #000 69% 71%, transparent 72%);
}

.orbital-meter::after {
  inset: 4%;
  border: 1px solid rgba(102, 208, 255, .16);
  box-shadow: inset 0 0 48px rgba(72, 163, 255, .1);
}

.ring {
  border-color: rgba(69, 188, 255, .2);
  box-shadow: 0 0 20px rgba(67, 184, 255, .12), inset 0 0 32px rgba(67, 184, 255, .06);
}

.ring-one {
  inset: 5%;
  border-width: 2px;
  border-top-color: rgba(138, 99, 255, .88);
  border-left-color: rgba(65, 204, 255, .78);
  box-shadow: 0 0 32px rgba(73, 202, 255, .22);
}

.ring-two {
  inset: 13%;
  border-top-color: rgba(58, 120, 255, .45);
  border-right-color: rgba(95, 223, 255, .9);
}

.ring-three {
  inset: 24%;
  border-color: rgba(114, 204, 255, .26);
  border-bottom-color: rgba(255,255,255,.72);
}

.wave-line {
  left: 1%;
  right: 1%;
  height: 98px;
  gap: 4px;
}

.wave-line::before {
  height: 3px;
  background: linear-gradient(90deg, transparent, #2f8cff 8%, #8ce7ff 28%, #fff 50%, #8ce7ff 72%, #2f8cff 92%, transparent);
  box-shadow: 0 0 22px rgba(96,211,255,.95);
}

.wave-line span {
  width: 2px;
  background: linear-gradient(180deg, transparent, #9bedff, transparent);
  box-shadow: 0 0 14px rgba(139,223,255,1);
}

.creature-stage {
  width: 188px;
  filter: drop-shadow(0 0 18px rgba(98, 211, 255, .8)) drop-shadow(0 0 38px rgba(63, 134, 255, .42));
}

.creature-octopus::before {
  left: 26%;
  top: 14%;
  width: 48%;
  height: 44%;
  border-radius: 52% 52% 38% 38%;
  background:
    radial-gradient(circle at 34% 20%, rgba(255,255,255,.95), transparent 9%),
    radial-gradient(circle at 50% 42%, #bff6ff, #53d5ff 36%, #2a76e7 72%, rgba(42,118,231,.38) 100%);
  box-shadow: inset 0 -10px 24px rgba(255,255,255,.2), 0 0 30px rgba(81,213,255,.8);
}

.creature-octopus i {
  top: 54%;
  height: 96px;
  border-left-color: rgba(142, 235, 255, .72);
  filter: drop-shadow(0 0 8px rgba(98, 211, 255, .78));
}

.creature-octopus i:nth-child(1) { left: 30%; transform: rotate(18deg); }
.creature-octopus i:nth-child(2) { left: 39%; transform: rotate(7deg); }
.creature-octopus i:nth-child(3) { left: 49%; transform: rotate(-2deg); height: 114px; }
.creature-octopus i:nth-child(4) { left: 58%; transform: rotate(-10deg); }
.creature-octopus i:nth-child(5) { left: 67%; transform: rotate(-20deg); height: 104px; }

.time-readout {
  top: 38%;
  left: max(18px, calc(50% - 276px));
  right: max(18px, calc(50% - 276px));
  z-index: 2;
  color: rgba(219, 239, 255, .6);
  font-size: 21px;
}

.track-meta {
  margin-top: 2px;
}

.track-meta h2 {
  font-size: clamp(30px, 5vw, 42px);
  color: rgba(255, 248, 242, .92);
  text-shadow: 0 0 16px rgba(117, 215, 255, .2);
}

.track-meta p {
  margin: 8px 0 14px;
  color: rgba(209, 226, 255, .64);
}

.track-meta span {
  color: rgba(225, 235, 255, .72);
}

.player-controls {
  gap: clamp(32px, 8vw, 82px);
  margin: 26px 0 20px;
}

.round-control,
.play-control {
  position: relative;
  color: #bff3ff;
  background: rgba(5, 25, 57, .58);
  border-color: rgba(77, 209, 255, .42);
  box-shadow:
    0 0 0 1px rgba(77, 209, 255, .18),
    0 0 24px rgba(75, 201, 255, .25),
    inset 0 0 28px rgba(75, 201, 255, .1);
}

.round-control::before,
.play-control::before {
  content: "";
  position: absolute;
  inset: -11px;
  border-radius: 50%;
  border: 1px dotted rgba(118, 218, 255, .35);
}

.round-control {
  width: 74px;
  height: 74px;
  font-size: 46px;
}

.play-control {
  width: 98px;
  height: 98px;
  font-size: 36px;
  border-color: rgba(119, 229, 255, .78);
}

.progress-bar {
  left: 8%;
  right: 8%;
  bottom: 54px;
}

.progress-bar input {
  appearance: none;
  height: 26px;
  background: transparent;
}

.progress-bar input::-webkit-slider-runnable-track {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(84, 178, 255, .8), rgba(103, 231, 255, .92), rgba(84, 178, 255, .8), transparent);
  box-shadow: 0 0 16px rgba(103, 231, 255, .65);
}

.progress-bar input::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  margin-top: -9px;
  border-radius: 50%;
  background: #88eaff;
  border: 2px solid rgba(255,255,255,.7);
  box-shadow: 0 0 18px rgba(103, 231, 255, 1);
}

.progress-bar span {
  top: 11px;
  height: 3px;
}

.music-dock-icons {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 14px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(199, 227, 255, .76);
  font-size: 30px;
}

.playlist-panel {
  position: relative;
  z-index: 3;
  width: min(100%, 580px);
  max-height: none;
  overflow: visible;
  margin: 18px auto 0;
  padding: 18px;
  border-color: rgba(92, 201, 255, .22);
  background: rgba(3, 15, 36, .76);
  box-shadow: 0 24px 80px rgba(0,0,0,.36), inset 0 0 50px rgba(54, 169, 255, .08);
}

.playlist-heading h2 {
  font-size: 22px;
}

.playlist {
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.playlist button {
  grid-template-columns: 34px 1fr;
  padding: 11px;
  background: rgba(9, 36, 78, .58);
  border-color: rgba(116, 211, 255, .14);
}

.playlist-creature {
  grid-column: 2;
}

@keyframes drift {
  from { transform: translate3d(-1%, -1%, 0) scale(1.02); }
  to { transform: translate3d(1%, 1%, 0) scale(1.06); }
}

@keyframes shimmer {
  0%, 100% { opacity: .1; transform: translateX(-20px) rotate(12deg); }
  50% { opacity: .3; transform: translateX(28px) rotate(12deg); }
}

@keyframes sunlightBloom {
  0% { opacity: .52; transform: translate3d(-1%, -1%, 0) scale(1); }
  100% { opacity: .82; transform: translate3d(1.5%, 1%, 0) scale(1.04); }
}

@keyframes lensFlareDrift {
  0% { opacity: .42; transform: translate3d(0, -5px, 0) scale(.98); }
  100% { opacity: .72; transform: translate3d(-18px, 16px, 0) scale(1.04); }
}

@keyframes heroScan {
  0% { background-position: 78% 48%, 0 0, 0 0; transform: scale(1); }
  100% { background-position: 75% 45%, 12px 0, 0 12px; transform: scale(1.025); }
}

@keyframes heroBubbleRise {
  0% { transform: translate3d(0, 0, 0) scale(.72); opacity: 0; }
  12% { opacity: .58; }
  68% { opacity: .34; }
  100% { transform: translate3d(24px, -112vh, 0) scale(1.08); opacity: 0; }
}

@keyframes landingWaveDrift {
  0% { transform: translate3d(-1.5%, 3px, 0) scale(1.015); }
  100% { transform: translate3d(1.5%, -7px, 0) scale(1.04); }
}

@keyframes heroEqualize {
  0%, 100% { transform: scaleY(.28); opacity: .38; }
  42% { transform: scaleY(1); opacity: .92; }
  72% { transform: scaleY(.52); opacity: .62; }
}

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -34px; }
}

@keyframes swim {
  from { translate: 0 0; }
  to { translate: calc(100vw + 260px) 0; }
}

@keyframes tankGlow {
  from { background-position: 48% 48%; background-size: 100% auto; }
  to { background-position: 52% 52%; background-size: 108% auto; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulseRing {
  0%, 100% { transform: scale(.98); opacity: .5; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes equalize {
  0%, 100% { height: 10px; opacity: .48; }
  35% { height: 46px; opacity: 1; }
  70% { height: 22px; opacity: .72; }
}

@keyframes creatureFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.03); }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 90vh;
  }

  .deep-player,
  .feature-band,
  .gallery-grid,
  .character-grid,
  .map-notes,
  .access-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .sub-page,
  .character-detail {
    padding-top: 96px;
  }

  .compact-hero {
    min-height: 280px;
  }

  .music-page {
    padding-top: 88px;
  }

  .visualizer-panel {
    min-height: 660px;
  }

  .orbital-meter {
    width: min(86vw, 430px);
  }

  .time-readout {
    top: 38%;
  }

  .round-control {
    width: 62px;
    height: 62px;
  }

  .play-control {
    width: 86px;
    height: 86px;
  }

  .character-card {
    min-height: 280px;
  }

  .detail-portrait {
    min-height: 320px;
  }

  .map-board {
    min-height: 760px;
  }

  .map-board::before {
    left: 50%;
    right: auto;
    top: 8%;
    bottom: 8%;
    width: 4px;
    height: auto;
  }

  .map-node {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
  }

  .entrance { top: 5%; }
  .jelly-map { top: 18%; }
  .tunnel-map { top: 31%; }
  .coral-map { top: 44%; }
  .pearl-map { top: 57%; }
  .tea-map { top: 70%; bottom: auto; }
  .shop-map { top: 83%; bottom: auto; }

  .feature {
    min-height: auto;
  }

  .ticket-band {
    align-items: flex-start;
  }
}

/* Web1 homepage redesign */
.top-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 16px clamp(18px, 4.6vw, 72px);
  border-bottom: 1px solid rgba(89, 211, 255, .12);
  background:
    linear-gradient(180deg, rgba(0, 10, 27, .82), rgba(0, 11, 30, .28) 74%, transparent);
}

.brand {
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(58, 213, 255, .55));
}

.brand-copy strong {
  color: #fff;
  font: 700 22px/1 "Cormorant Garamond", serif;
  letter-spacing: .04em;
}

.brand-copy small {
  color: rgba(184, 239, 255, .82);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 34px);
}

.nav-date {
  margin-left: auto;
  color: rgba(228, 247, 255, .78);
  font: 700 12px/1 "Cormorant Garamond", serif;
  letter-spacing: .24em;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  color: rgba(236, 250, 255, .82);
  font-size: 15px;
  letter-spacing: .1em;
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(35, 185, 255, .2);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #f7fdff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #37d8ff 18% 82%, transparent);
  box-shadow: 0 0 12px rgba(55, 216, 255, .72);
  transition: width .25s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 76px;
}

.nav-links a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  background: #42dcff;
  box-shadow: 0 0 16px rgba(66, 220, 255, .9);
  transition: transform .25s ease;
}

.nav-links a:hover::before,
.nav-links a.is-active::before {
  transform: translateX(-50%) scale(1);
}

.nav-links .nav-ticket {
  padding: 11px 20px;
  border: 1px solid rgba(106, 223, 255, .46);
  border-radius: 999px;
  background: rgba(3, 28, 66, .36);
  box-shadow: inset 0 0 22px rgba(80, 214, 255, .08), 0 0 18px rgba(23, 157, 225, .16);
}

.route-page[data-route="home"] > :not(.web1-home) {
  display: none !important;
}

.web1-home {
  min-height: 100vh;
  color: #eefbff;
  background:
    radial-gradient(circle at 26% 14%, rgba(70, 211, 255, .2), transparent 28rem),
    radial-gradient(circle at 84% 46%, rgba(32, 131, 220, .18), transparent 30rem),
    linear-gradient(180deg, #000615 0%, #00102c 44%, #000817 100%);
  overflow: hidden;
}

.web1-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 240px);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: 124px clamp(22px, 5.8vw, 86px) 92px;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(0, 7, 22, .92) 0%, rgba(0, 13, 36, .7) 35%, rgba(0, 13, 38, .22) 64%, rgba(0, 9, 27, .72) 100%),
    linear-gradient(180deg, rgba(0, 8, 24, .1), rgba(0, 8, 24, .42) 72%, #000b22 100%),
    url("assets/images/bg_activity2.webp") center center / cover no-repeat;
}

.web1-hero::before,
.web1-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.web1-hero::before {
  inset: 0;
  background:
    radial-gradient(circle at 76% 22%, rgba(154, 239, 255, .35), transparent 9rem),
    linear-gradient(112deg, transparent 42%, rgba(126, 235, 255, .16) 48%, rgba(255, 255, 255, .2) 51%, transparent 62%),
    repeating-linear-gradient(100deg, transparent 0 86px, rgba(77, 215, 255, .055) 88px 90px, transparent 92px 168px);
  mix-blend-mode: screen;
  opacity: .6;
}

.web1-hero::after {
  inset: auto 0 0;
  height: 34vh;
  background:
    radial-gradient(ellipse at 48% 0%, rgba(82, 223, 255, .34), transparent 32%),
    linear-gradient(180deg, transparent, rgba(0, 7, 22, .92));
}

.web1-hero-glass {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 8% 74%, rgba(60, 214, 255, .65) 0 2px, transparent 3px),
    radial-gradient(circle at 33% 56%, rgba(60, 214, 255, .45) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 62%, rgba(60, 214, 255, .5) 0 2px, transparent 3px),
    linear-gradient(100deg, transparent 0 62%, rgba(72, 207, 255, .12) 63%, transparent 67%);
  background-size: 280px 220px, 210px 240px, 320px 260px, 100% 100%;
  animation: web1Drift 16s ease-in-out infinite alternate;
  opacity: .58;
}

.web1-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.web1-kicker,
.web1-section-head p,
.web1-event-card > p,
.web1-ticket-card > p,
.web1-impact > div:first-child p {
  margin: 0 0 14px;
  color: #8cecff;
  font: 700 13px/1 "Cormorant Garamond", "Noto Serif TC", serif;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.web1-hero h1 {
  margin: 0;
  color: #f8fdff;
  font: 900 clamp(48px, 7vw, 104px)/1.05 "Noto Serif TC", serif;
  letter-spacing: .05em;
  text-shadow:
    0 10px 32px rgba(0, 4, 18, .86),
    0 0 32px rgba(79, 216, 255, .3);
}

.web1-hero-copy > p:not(.web1-kicker) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(225, 248, 255, .84);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 2;
  letter-spacing: .08em;
}

.web1-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.web1-primary,
.web1-secondary,
.web1-event-card a,
.web1-impact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  color: #f5fdff;
  border: 1px solid rgba(112, 229, 255, .62);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(34, 171, 229, .3), rgba(3, 42, 85, .5));
  box-shadow:
    inset 0 0 22px rgba(98, 226, 255, .18),
    0 0 24px rgba(55, 194, 255, .24);
  letter-spacing: .12em;
}

.web1-secondary {
  color: rgba(229, 249, 255, .84);
  background: rgba(2, 24, 58, .34);
}

.web1-side-rail {
  position: relative;
  z-index: 2;
  justify-self: end;
  display: grid;
  gap: 12px;
  width: min(90px, 100%);
  font-size: 0.8rem;
  text-align: center;
}

.web1-side-rail a {
  display: grid;
  gap: 5px;
  place-items: center;
  padding: 16px 18px;
  color: rgba(237, 250, 255, .86);
  border: 1px solid rgba(94, 216, 255, .28);
  border-radius: 8px;
  background: rgba(2, 19, 49, .42);
  box-shadow: inset 0 0 18px rgba(85, 215, 255, .08);
  backdrop-filter: blur(10px);
}
.web1-side-rail a:hover, .web1-side-rail a:focus,.web1-side-rail a:active{
border-color: rgba(163,233,255,0.8);
  background: rgba(32, 75, 149, .42);
  backdrop-filter: blur(13px);
}

.web1-side-rail span {
  color: #60ddff;
  font: 700 12px/1 "Cormorant Garamond", serif;
  letter-spacing: .24em;
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
}
.web1-side-rail span image{
  width: 40px;
  height: 40px;
}

.web1-hero-tags {
  position: absolute;
  inset: auto clamp(24px, 5vw, 78px) 34px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(124, 222, 255, .54);
  font: 700 12px/1 "Cormorant Garamond", serif;
  letter-spacing: .28em;
}

.web1-zones,
.web1-events,
.web1-impact,
.web1-footer {
  position: relative;
  z-index: 3;
  padding-inline: clamp(18px, 5vw, 76px);
}

.web1-zones {
  padding-block: clamp(58px, 8vw, 112px);
  background:
    radial-gradient(circle at 18% 16%, rgba(75, 216, 255, .16), transparent 24rem),
    linear-gradient(180deg, #000b22, #00142f 48%, #00091e);
}

.web1-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto 30px;
}

.web1-section-head h2,
.web1-event-card h2,
.web1-ticket-card h2,
.web1-impact h2 {
  margin: 0;
  color: #f7fdff;
  font: 900 clamp(30px, 4vw, 56px)/1.15 "Noto Serif TC", serif;
  letter-spacing: .08em;
  text-shadow: 0 0 24px rgba(65, 208, 255, .22);
}

.web1-section-head a {
  color: #93ebff;
  letter-spacing: .16em;
}

.web1-zone-shell {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
}

.web1-zone-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, calc((100% - clamp(16px, 2vw, 24px) * 2) / 3));
  grid-template-columns: none;
  gap: clamp(16px, 2vw, 24px);
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.web1-zone-grid::-webkit-scrollbar {
  display: none;
}

.web1-zone-card,
.web1-event-card,
.web1-lounge-card,
.web1-ticket-card,
.web1-impact {
  border: 1px solid rgba(89, 213, 255, .28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(9, 53, 100, .58), rgba(0, 15, 43, .76));
  box-shadow:
    inset 0 0 30px rgba(86, 215, 255, .08),
    0 24px 58px rgba(0, 5, 20, .32);
  backdrop-filter: blur(8px);
}

.web1-zone-card {
  min-height: 440px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

.web1-zone-card img {
  width: 100%;
  aspect-ratio: 1.16;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(1.1) contrast(1.03);
}

.web1-zone-card span {
  margin-top: 18px;
  color: #76e6ff;
  font: 700 12px/1 "Cormorant Garamond", serif;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.web1-zone-card h3 {
  margin: 10px 0 0;
  color: #f5fbff;
  font: 800 26px/1.25 "Noto Serif TC", serif;
  letter-spacing: .08em;
}

.web1-zone-card p {
  flex: 1;
  margin: 14px 0 20px;
  color: rgba(220, 246, 255, .75);
  line-height: 1.8;
}

.web1-zone-card a {
  align-self: flex-start;
  color: #94edff;
  letter-spacing: .14em;
}

.web1-arrow {
  width: 44px;
  height: 44px;
  color: #dffaff;
  border: 1px solid rgba(102, 222, 255, .48);
  border-radius: 50%;
  background: rgba(4, 30, 70, .6);
  box-shadow: 0 0 20px rgba(53, 198, 255, .22);
  font-size: 26px;
  cursor: pointer;
}

.web1-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}

.web1-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(95, 224, 255, .46);
  cursor: pointer;
  transition: width .24s ease, background .24s ease, box-shadow .24s ease;
}

.web1-dots button.is-active {
  width: 28px;
  background: #5ddfff;
  box-shadow: 0 0 14px rgba(93, 223, 255, .7);
}

.web1-events {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, .92fr) minmax(280px, .78fr);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: stretch;
  padding-block: clamp(56px, 7vw, 96px);
  background:
    linear-gradient(180deg, rgba(0, 9, 28, .94), rgba(0, 16, 43, .82)),
    url("assets/images/bg_activity2.webp") center var(--activity-bg-y, 0px) / cover no-repeat;
}

.web1-event-card,
.web1-ticket-card {
  padding: clamp(22px, 3vw, 34px);
}

.web1-event-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.web1-event-list li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 6px 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(113, 224, 255, .13);
}

.web1-event-list time {
  grid-row: span 2;
  color: #7ae7ff;
  font: 700 20px/1 "Cormorant Garamond", serif;
}

.web1-event-list span {
  color: #f5fbff;
  font-size: 20px;
  letter-spacing: .08em;
}

.web1-event-list strong {
  color: rgba(215, 243, 255, .62);
  font-size: 13px;
  letter-spacing: .12em;
}

.web1-lounge-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(220px, 1fr) auto;
}

.web1-lounge-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.web1-lounge-card div {
  padding: 24px;
}

.web1-lounge-card span {
  color: #81e8ff;
  font: 700 12px/1 "Cormorant Garamond", serif;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.web1-lounge-card h2 {
  margin: 10px 0;
  color: #f8fdff;
  font: 800 28px/1.25 "Noto Serif TC", serif;
}

.web1-lounge-card p,
.web1-ticket-card span,
.web1-impact span {
  color: rgba(222, 246, 255, .76);
  line-height: 1.85;
}

.web1-ticket-card {
  display: flex;
  flex-direction: column;
}

.web1-ticket-card dl {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.web1-ticket-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(111, 222, 255, .13);
}

.web1-ticket-card dt {
  color: #7ee7ff;
}

.web1-ticket-card dd {
  margin: 0;
  color: rgba(239, 252, 255, .8);
  text-align: right;
}

.web1-ticket-card .web1-primary {
  margin-top: auto;
}

.web1-impact {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, .9fr) minmax(120px, 220px);
  align-items: center;
  gap: clamp(22px, 4vw, 52px);
  margin: clamp(20px, 4vw, 54px) clamp(18px, 5vw, 76px) clamp(62px, 8vw, 116px);
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 86% 50%, rgba(73, 219, 255, .18), transparent 22rem),
    linear-gradient(105deg, rgba(4, 39, 83, .72), rgba(0, 13, 39, .86));
}

.web1-impact > div:first-child span {
  display: block;
  max-width: 590px;
  margin: 18px 0 28px;
}

.web1-impact-stats {
  display: grid;
  grid-template-columns:1fr 2fr 1fr;
  gap: 14px;
}

.web1-impact-stats article {
  min-height: 122px;
  padding: 20px 16px;
  border: 1px solid rgba(98, 219, 255, .22);
  border-radius: 8px;
  background: rgba(0, 18, 50, .42);
}
.web1-impact-stats article:nth-of-type(2){
  min-width: 100px;
}

.web1-impact-stats strong {
  display: block;
  color: #fff;
  font: 700 clamp(28px, 3vw, 42px)/1 "Cormorant Garamond", serif;
  text-shadow: 0 0 18px rgba(65, 216, 255, .36);
}

.web1-impact-stats span {
  display: block;
  margin-top: 10px;
  color: rgba(218, 246, 255, .72);
  letter-spacing: .1em;
}

.web1-impact img {
  width: min(190px, 100%);
  justify-self: center;
  opacity: .9;
  filter: drop-shadow(0 0 34px rgba(72, 216, 255, .56));
  animation: web1Float 4.8s ease-in-out infinite;
}

.web1-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 26px;
  border-top: 1px solid rgba(94, 216, 255, .16);
  background: rgba(0, 8, 24, .82);
}

.web1-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.web1-footer a,
.web1-footer p {
  color: rgba(226, 248, 255, .7);
}

.web1-footer p {
  margin: 0;
  text-align: right;
}

@keyframes web1Drift {
  from { transform: translate3d(-14px, 0, 0); }
  to { transform: translate3d(18px, -14px, 0); }
}

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

@media (max-width: 1080px) {
  .top-nav {
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 12px;
  }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .nav-date {
    order: 3;
    width: 100%;
    text-align: right;
  }

  .nav-links a {
    font-size: 13px;
  }

  .web1-hero {
    grid-template-columns: 1fr;
  }

  .web1-side-rail {
    justify-self: start;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .web1-zone-grid {
    overflow-x: auto;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 34%);
    grid-template-columns: none;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .web1-zone-card {
    scroll-snap-align: start;
  }

  .web1-events,
  .web1-impact {
    grid-template-columns: 1fr;
  }

  .web1-impact img {
    max-width: 140px;
  }
}

@media (max-width: 720px) {
  .top-nav {
    min-height: auto;
    padding: 12px 16px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 19px;
  }

  .brand-copy small {
    display: none;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .nav-date {
    display: none;
  }

  .nav-links a {
    font-size: 12px;
  }

  .nav-links .nav-ticket {
    padding: 8px 14px;
  }

  .web1-hero {
    min-height: 100svh;
    padding: 120px 18px 46px;
    background-position: 62% center;
  }

  .web1-hero h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .web1-hero-copy > p:not(.web1-kicker) {
    line-height: 1.8;
    letter-spacing: .04em;
  }

  .web1-side-rail {
    grid-template-columns: 1fr;
  }

  .web1-hero-tags {
    display: none;
  }

  .web1-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .web1-zone-shell {
    grid-template-columns: 1fr;
  }

  .web1-arrow {
    display: none;
  }

  .web1-zone-grid {
    grid-auto-columns: minmax(252px, 82%);
  }

  .web1-zone-card {
    min-height: 410px;
  }

  .web1-events {
    padding-block: 42px;
  }

  .web1-event-list li {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .web1-lounge-card {
    grid-template-rows: 210px auto;
  }

  .web1-ticket-card dl div {
    flex-direction: column;
    gap: 4px;
  }

  .web1-ticket-card dd {
    text-align: left;
  }

  .web1-impact {
    margin-inline: 16px;
  }

  .web1-impact-stats {
    grid-template-columns: 1fr;
  }

  .web1-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .web1-footer p {
    text-align: left;
  }
}

.mini-player {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 30;
  display: grid;
  grid-template-columns: 52px minmax(130px, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(380px, calc(100vw - 32px));
  padding: 10px 12px;
  color: #effdff;
  border: 1px solid rgba(103, 226, 255, .36);
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 20%, rgba(89, 218, 255, .24), transparent 34%),
    linear-gradient(135deg, rgba(3, 32, 74, .9), rgba(0, 10, 35, .92));
  box-shadow:
    0 18px 46px rgba(0, 5, 24, .46),
    inset 0 0 24px rgba(86, 218, 255, .1);
  backdrop-filter: blur(14px);
}

.mini-player[hidden] {
  display: none;
}

.mini-player-thumb {
  width: 52px;
  aspect-ratio: 1;
  border: 1px solid rgba(103, 226, 255, .38);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(83, 213, 255, .22), rgba(0, 21, 64, .82)),
    var(--mini-thumb, none) center / 72% auto no-repeat;
  box-shadow: inset 0 0 18px rgba(92, 222, 255, .12), 0 0 18px rgba(53, 206, 255, .18);
}

.mini-player-copy {
  min-width: 0;
}

.mini-player-copy span {
  display: block;
  margin-bottom: 4px;
  color: #83e6ff;
  font: 700 11px/1 "Noto Serif TC", serif;
  letter-spacing: .12em;
}

.mini-player-copy strong {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-player-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-player-controls button {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(105, 226, 255, .42);
  border-radius: 50%;
  background: rgba(2, 29, 72, .76);
  box-shadow: inset 0 0 12px rgba(84, 218, 255, .1);
  cursor: pointer;
}

.mini-player-controls button::before,
.mini-player-controls button::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
}

[data-mini-prev]::before,
[data-mini-next]::before {
  width: 10px;
  height: 10px;
  border-left: 2px solid #d9fbff;
  border-bottom: 2px solid #d9fbff;
}

[data-mini-prev]::before {
  transform: translateX(2px) rotate(45deg);
}

[data-mini-next]::before {
  transform: translateX(-2px) rotate(-135deg);
}

[data-mini-play]::before {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #d9fbff;
  transform: translateX(2px);
}

.mini-player.is-playing [data-mini-play]::before,
.mini-player.is-playing [data-mini-play]::after {
  width: 4px;
  height: 16px;
  border: 0;
  background: #d9fbff;
}

.mini-player.is-playing [data-mini-play]::before {
  transform: translateX(-4px);
}

.mini-player.is-playing [data-mini-play]::after {
  transform: translateX(5px);
}

[data-mini-close]::before,
[data-mini-close]::after {
  width: 14px;
  height: 2px;
  background: #d9fbff;
  border-radius: 999px;
}

[data-mini-close]::before {
  transform: rotate(45deg);
}

[data-mini-close]::after {
  transform: rotate(-45deg);
}

.music-frame-page {
  min-height: 100vh;
  padding: 0;
  background: #000c23;
}

.music-frame {
  display: block;
  width: 100%;
  height: 100vh;
  border: 0;
  background: #000c23;
}

@media (max-width: 560px) {
  .mini-player {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 9px;
    width: calc(100vw - 24px);
    padding: 9px;
    border-radius: 10px;
  }

  .mini-player-thumb {
    width: 42px;
  }

  .mini-player-copy span {
    font-size: 10px;
  }

  .mini-player-copy strong {
    font-size: 14px;
  }

  .mini-player-controls {
    gap: 5px;
  }

  .mini-player-controls button {
    width: 31px;
    height: 31px;
  }

  .music-frame {
    height: 100svh;
  }
}

/* Immersive homepage redesign */
.home-page {
  --cursor-x: 50%;
  --cursor-y: 30%;
  min-height: 100vh;
  color: #ecfbff;
}

.home-page .route-page[data-route="home"] {
  min-height: 0;
  background:
    linear-gradient(180deg, rgba(0, 8, 28, 0) 0 52vh, rgba(0, 9, 30, .86) 95vh, rgba(0, 8, 26, .98) 100%);
}

.top-nav {
  background:
    linear-gradient(180deg, rgba(0, 10, 28, .82), rgba(0, 10, 28, .22) 72%, transparent);
  backdrop-filter: blur(6px);
  border-color: #3c637666;
  
}

.nav-links a::after {
  height: 2px;
  background: linear-gradient(90deg, transparent, #57dfff, transparent);
  box-shadow: 0 0 12px rgba(82, 218, 255, .58);
}

.hero {
  min-height: 100vh;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: clamp(26px, 5vw, 72px);
  padding: 128px clamp(22px, 7vw, 88px) 12vh;
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(105, 227, 255, .18), transparent 18rem),
    linear-gradient(90deg, rgba(0, 10, 33, .78), rgba(0, 13, 40, .32) 48%, rgba(0, 10, 31, .5)),
    url("assets/images/bg_building_1_night.webp") center center / cover no-repeat;
}

.hero-media {
  background:
    linear-gradient(180deg, rgba(0, 10, 32, .08), rgba(0, 9, 30, .62) 78%, rgba(0, 8, 27, .95)),
    radial-gradient(circle at 70% 28%, rgba(78, 210, 255, .2), transparent 30%);
}

.hero-media::before {
  background:
    linear-gradient(108deg, transparent 26%, rgba(124, 228, 255, .11) 38%, rgba(230, 255, 255, .22) 45%, transparent 62%),
    repeating-radial-gradient(ellipse at 68% 40%, transparent 0 42px, rgba(76, 204, 255, .09) 43px 44px, transparent 45px 74px);
  mix-blend-mode: screen;
  opacity: .86;
}

.hero-media::after {
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(199, 252, 255, .72) 0 2px, rgba(76, 210, 255, .34) 3px 34px, transparent 92px),
    radial-gradient(circle at 72% 24%, rgba(105, 224, 255, .22), transparent 18%),
    linear-gradient(180deg, transparent, rgba(0, 8, 27, .58));
  opacity: .78;
}

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

.hero h1 {
  max-width: 760px;
  color: #f3feff;
  text-shadow:
    0 5px 22px rgba(0, 10, 32, .72),
    0 0 34px rgba(72, 205, 255, .22);
}

.hero-copy p:not(.eyebrow) {
  color: rgba(223, 247, 255, .82);
}

.hero-orbit {
  position: relative;
  z-index: 5;
  align-self: end;
  padding: 24px;
  color: #def9ff;
  border: 1px solid rgba(111, 226, 255, .38);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(8, 48, 89, .42), rgba(0, 16, 48, .68));
  box-shadow:
    inset 0 0 24px rgba(89, 217, 255, .08),
    0 20px 50px rgba(0, 6, 26, .36);
  backdrop-filter: blur(8px);
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px dashed rgba(111, 226, 255, .28);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.hero-orbit span,
.hero-orbit p {
  color: rgba(220, 248, 255, .76);
}

.hero-orbit span {
  display: block;
  font: 600 12px/1 "Cormorant Garamond", serif;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero-orbit strong {
  display: block;
  margin: 8px 0;
  color: #ffffff;
  font: 700 78px/.85 "Cormorant Garamond", serif;
  text-shadow: 0 0 26px rgba(75, 218, 255, .34);
}

.hero-orbit p {
  margin: 0;
  line-height: 1.8;
}

.intro-band,
.ticket-band {
  margin: 0 clamp(20px, 6vw, 74px);
  color: #ecfbff;
  border: 1px solid rgba(105, 220, 255, .32);
  border-radius: 10px;
  background:
    radial-gradient(circle at 18% 20%, rgba(82, 217, 255, .2), transparent 30%),
    linear-gradient(118deg, rgba(4, 34, 78, .68), rgba(0, 15, 45, .78));
  box-shadow: 0 26px 60px rgba(0, 7, 26, .28), inset 0 0 32px rgba(85, 214, 255, .08);
  backdrop-filter: blur(8px);
}

.intro-band {
  transform: translateY(-42px);
  justify-content: space-between;
}

.intro-band span,
.ticket-band span {
  color: rgba(224, 248, 255, .76);
}

.feature-band {
  margin-top: -2px;
  min-height: auto;
  padding-top: clamp(56px, 7vw, 92px);
}

.feature-band::before {
  display: none;
}

.feature-band::after {
  top: clamp(82px, 10vw, 150px);
  opacity: .42;
}

.timeline-frame {
  margin-top: clamp(34px, 6vw, 82px);
}

.ocean-record {
  top: 0;
  margin-top: clamp(34px, 6vw, 84px);
  background:
    linear-gradient(180deg, rgba(0, 12, 38, .18), rgba(0, 8, 30, .9)),
    url("assets/images/bg_video.webp") center / cover no-repeat;
  border-top-color: rgba(119, 230, 255, .42);
}

.gallery-section {
  color: #ecfbff;
  background:
    radial-gradient(circle at var(--cursor-x) 10%, rgba(90, 215, 255, .12), transparent 22rem),
    linear-gradient(180deg, #00091f, #021a37);
}

.gallery-section::after {
  background:
    linear-gradient(90deg, rgba(0, 8, 28, .8), transparent 18% 82%, rgba(0, 8, 28, .8)),
    linear-gradient(180deg, rgba(0, 8, 28, .28), rgba(0, 8, 28, .88));
}

.section-heading p,
.gallery-section .section-heading h2 {
  color: #e9fbff;
}

.gallery-grid article {
  color: #ecfbff;
  border-color: rgba(105, 220, 255, .24);
  background: rgba(3, 24, 57, .76);
  box-shadow: 0 22px 42px rgba(0, 7, 26, .3);
}

.gallery-grid p {
  color: rgba(224, 248, 255, .74);
}

.ticket-band {
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 0;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: end;
    min-height: 100vh;
    padding: 104px 20px 48px;
  }

  .hero-orbit {
    align-self: auto;
    max-width: 340px;
    padding: 18px;
  }

  .hero-orbit::before {
    inset: -8px;
  }

  .hero-orbit strong {
    font-size: 58px;
  }

  .intro-band {
    transform: none;
    margin: 0 16px;
    padding: 22px;
  }

  .feature-band {
    padding-top: 42px;
    background-attachment: scroll;
  }

  .timeline-heading {
    padding-inline: 20px;
  }

  .timeline-frame {
    margin-top: 34px;
  }

  .ocean-record {
    margin-top: 34px;
  }

  .gallery-section {
    padding-inline: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .ticket-band {
    margin-inline: 0;
    padding: 28px 20px;
    border-radius: 0;
  }
}

/* Final Web1 ordering guard */
.home-page .route-page[data-route="home"] > :not(.web1-home) {
  display: none !important;
}

.home-page .web1-home .web1-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 240px);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: 124px clamp(22px, 5.8vw, 86px) 92px;
  isolation: isolate;
  overflow: hidden;
}

.home-page .web1-home .web1-hero h1 {
  max-width: 760px;
  color: #f8fdff;
  font: 900 clamp(32px, 5vw, 90px)/1.05 "Noto Serif TC", serif;
  letter-spacing: .05em;
  text-shadow:
    0 10px 32px rgba(0, 4, 18, .86),
    0 0 32px rgba(79, 216, 255, .3);
}

.home-page .web1-home .web1-hero-bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}



.home-page .web1-home .web1-hero-bubbles span {
  position: absolute;
  bottom: -8vh;
  left: var(--bubble-left, 50%);
  width: var(--bubble-size, 12px);
  height: var(--bubble-size, 12px);
  border: 1px solid rgba(95, 222, 255, .56);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, .72) 0 9%, transparent 11%),
    radial-gradient(circle at 50% 60%, rgba(70, 204, 255, .18), transparent 62%);
  box-shadow:
    inset 0 0 10px rgba(88, 221, 255, .22),
    0 0 13px rgba(63, 204, 255, .2);
  opacity: 0;
  animation: web1BubbleRise var(--bubble-speed, 10s) ease-in infinite;
  animation-delay: var(--bubble-delay, 0s);
}

.home-page .web1-home .web1-hero-bubbles span:nth-child(1) { --bubble-left: 8%; --bubble-size: 12px; --bubble-speed: 11s; --bubble-delay: -2s; --bubble-drift: 26px; }
.home-page .web1-home .web1-hero-bubbles span:nth-child(2) { --bubble-left: 14%; --bubble-size: 7px; --bubble-speed: 8s; --bubble-delay: -6s; --bubble-drift: -18px; }
.home-page .web1-home .web1-hero-bubbles span:nth-child(3) { --bubble-left: 23%; --bubble-size: 15px; --bubble-speed: 13s; --bubble-delay: -4s; --bubble-drift: 34px; }
.home-page .web1-home .web1-hero-bubbles span:nth-child(4) { --bubble-left: 42%; --bubble-size: 8px; --bubble-speed: 9s; --bubble-delay: -7s; --bubble-drift: -26px; }
.home-page .web1-home .web1-hero-bubbles span:nth-child(5) { --bubble-left: 58%; --bubble-size: 11px; --bubble-speed: 12s; --bubble-delay: -3s; --bubble-drift: 20px; }
.home-page .web1-home .web1-hero-bubbles span:nth-child(6) { --bubble-left: 68%; --bubble-size: 18px; --bubble-speed: 15s; --bubble-delay: -8s; --bubble-drift: -30px; }
.home-page .web1-home .web1-hero-bubbles span:nth-child(7) { --bubble-left: 76%; --bubble-size: 9px; --bubble-speed: 10s; --bubble-delay: -1s; --bubble-drift: 16px; }
.home-page .web1-home .web1-hero-bubbles span:nth-child(8) { --bubble-left: 86%; --bubble-size: 13px; --bubble-speed: 12s; --bubble-delay: -5s; --bubble-drift: -22px; }
.home-page .web1-home .web1-hero-bubbles span:nth-child(9) { --bubble-left: 93%; --bubble-size: 7px; --bubble-speed: 8.5s; --bubble-delay: -2.5s; --bubble-drift: 18px; }
.home-page .web1-home .web1-hero-bubbles span:nth-child(10) { --bubble-left: 51%; --bubble-size: 20px; --bubble-speed: 17s; --bubble-delay: -10s; --bubble-drift: -36px; }

.home-page .web1-home .web1-hero-copy,
.home-page .web1-home .web1-side-rail,
.home-page .web1-home .web1-hero-tags {
  z-index: 3;
}

@keyframes web1Refraction {
  0% {
    opacity: .55;
    transform: translate3d(-4%, 1.5%, 0) skewX(-5deg) scale(1.03);
    filter: hue-rotate(0deg) blur(.2px);
  }
  48% {
    opacity: .9;
    filter: hue-rotate(8deg) blur(.6px);
  }
  100% {
    opacity: .66;
    transform: translate3d(4%, -2%, 0) skewX(-2deg) scale(1.08);
    filter: hue-rotate(-6deg) blur(.3px);
  }
}

@keyframes web1CausticSweep {
  from {
    transform: translate3d(-10%, 4%, 0) rotate(0deg);
  }
  to {
    transform: translate3d(9%, -5%, 0) rotate(7deg);
  }
}

@keyframes web1BubbleRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(.72);
  }
  12% {
    opacity: .72;
  }
  78% {
    opacity: .48;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--bubble-drift, 22px), -106vh, 0) scale(1.15);
  }
}

/* Immersive building map */
.map-page {
  min-height: 100vh;
  padding: 0;
  color: #eefbff;
  background: #000918;
}

.immersive-map {
  --map-zoom-x: 50%;
  --map-zoom-y: 50%;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(92px, 9vw, 128px) clamp(18px, 4vw, 54px) clamp(18px, 3vw, 44px);
  background:
    radial-gradient(circle at 50% 42%, rgba(43, 170, 255, .18), transparent 34rem),
    radial-gradient(circle at 86% 76%, rgba(31, 126, 220, .18), transparent 26rem),
    linear-gradient(180deg, #000716, #001029 54%, #000816);
  isolation: isolate;
}

.immersive-map::before,
.immersive-map::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.immersive-map::before {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 8, 24, .9), transparent 22% 78%, rgba(0, 8, 24, .86)),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 68px, rgba(69, 201, 255, .055) 69px 70px, transparent 72px 132px);
}

.immersive-map::after {
  inset: auto 0 0;
  height: 34vh;
  background:
    radial-gradient(ellipse at 18% 100%, rgba(37, 147, 225, .26), transparent 28%),
    radial-gradient(ellipse at 86% 100%, rgba(48, 176, 240, .18), transparent 30%),
    linear-gradient(180deg, transparent, rgba(0, 5, 16, .84));
}

.map-copy {
  position: absolute;
  z-index: 5;
  top: clamp(112px, 11vw, 166px);
  left: clamp(22px, 4vw, 62px);
  max-width: 330px;
}

.map-copy h1 {
  margin: 0;
  color: #fff;
  font: 900 clamp(38px, 4.2vw, 64px)/1.22 "Noto Serif TC", serif;
  letter-spacing: .1em;
  text-shadow: 0 0 28px rgba(71, 210, 255, .22);
}

.map-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(221, 246, 255, .78);
  line-height: 1.9;
  letter-spacing: .06em;
}

.map-reset {
  margin-top: 26px;
  min-height: 44px;
  padding: 0 22px;
  color: #f4fdff;
  border: 1px solid rgba(103, 225, 255, .56);
  border-radius: 999px;
  background: rgba(4, 32, 73, .46);
  box-shadow: inset 0 0 18px rgba(92, 222, 255, .12), 0 0 18px rgba(58, 205, 255, .18);
  cursor: pointer;
}

.building-stage {
  position: absolute;
  z-index: 2;
  inset: 92px clamp(280px, 23vw, 390px) 96px clamp(250px, 24vw, 390px);
  display: grid;
  place-items: center;
  transition: inset .48s ease, transform .48s ease;
}

.building-stage img {
  width: min(100%, 1160px);
  height: min(100%, 720px);
  object-fit: contain;
  filter:
    drop-shadow(0 0 28px rgba(47, 188, 255, .28))
    drop-shadow(0 28px 50px rgba(0, 3, 12, .72));
  transform-origin: var(--map-zoom-x) var(--map-zoom-y);
  transition: transform .55s cubic-bezier(.2, .75, .2, 1), filter .55s ease;
}

.immersive-map[data-map-view="floor"] .building-stage {
  inset: 76px clamp(310px, 25vw, 440px) 70px clamp(120px, 12vw, 190px);
}

.immersive-map[data-map-view="floor"] .building-stage img {
  transform: scale(1.45);
  filter:
    drop-shadow(0 0 36px rgba(54, 205, 255, .42))
    drop-shadow(0 30px 64px rgba(0, 4, 18, .8));
}

.map-scanline {
  position: absolute;
  inset: 2% 12%;
  border-left: 1px solid rgba(81, 221, 255, .22);
  border-right: 1px solid rgba(81, 221, 255, .12);
  background: linear-gradient(180deg, transparent, rgba(57, 212, 255, .18), transparent);
  filter: blur(.2px);
  opacity: .6;
  animation: mapScan 4.8s ease-in-out infinite;
  pointer-events: none;
}

.building-hotspots,
.floor-hotspots {
  position: absolute;
  inset: 0;
}

.building-hotspots button,
.floor-hotspots button {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  color: #effdff;
  border: 1px solid rgba(105, 229, 255, .7);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(71, 214, 255, .72), rgba(15, 93, 171, .34) 44%, rgba(0, 16, 52, .64) 70%);
  box-shadow:
    0 0 0 8px rgba(61, 201, 255, .08),
    0 0 24px rgba(66, 216, 255, .54);
  cursor: pointer;
}

.building-hotspots button {
  display: grid;
  gap: 2px;
  min-width: 138px;
  min-height: 54px;
  padding: 8px 18px;
}

.building-hotspots strong {
  font: 700 24px/1 "Cormorant Garamond", serif;
}

.building-hotspots span {
  font-size: 12px;
  letter-spacing: .08em;
}

.immersive-map[data-map-view="floor"] .building-hotspots {
  opacity: 0;
  pointer-events: none;
}

.floor-hotspots {
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease .24s;
}

.immersive-map[data-map-view="floor"] .floor-hotspots {
  opacity: 1;
  pointer-events: auto;
}

.floor-hotspots button {
  width: 52px;
  height: 52px;
  padding: 0;
  font: 700 18px/1 "Cormorant Garamond", serif;
}

.floor-hotspots button::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  min-width: 110px;
  padding: 7px 10px;
  color: rgba(235, 251, 255, .82);
  border: 1px solid rgba(96, 221, 255, .22);
  border-radius: 999px;
  background: rgba(0, 12, 36, .72);
  transform: translateX(-50%);
  font: 700 12px/1 "Noto Serif TC", serif;
  letter-spacing: .08em;
  white-space: nowrap;
}

.floor-panel {
  position: absolute;
  z-index: 4;
  top: clamp(118px, 11vw, 164px);
  right: clamp(18px, 3vw, 54px);
  display: grid;
  gap: 14px;
  width: min(330px, 26vw);
}

.floor-panel button {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 4px 16px;
  align-items: center;
  min-height: 86px;
  padding: 16px 18px;
  color: rgba(232, 249, 255, .76);
  border: 1px solid rgba(99, 221, 255, .18);
  border-radius: 14px;
  background: rgba(1, 17, 48, .48);
  box-shadow: inset 0 0 20px rgba(80, 212, 255, .06);
  text-align: left;
  cursor: pointer;
  transition: border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

.floor-panel button.is-active {
  color: #fff;
  border-color: rgba(92, 219, 255, .68);
  background:
    radial-gradient(circle at 14% 50%, rgba(62, 207, 255, .28), transparent 42%),
    rgba(2, 34, 82, .62);
  box-shadow:
    inset 0 0 28px rgba(83, 218, 255, .14),
    0 0 28px rgba(58, 206, 255, .2);
}

.floor-panel strong {
  grid-row: span 2;
  color: #a9efff;
  font: 700 34px/1 "Cormorant Garamond", serif;
}

.floor-panel span {
  font-size: 17px;
  letter-spacing: .08em;
}

.floor-panel small {
  color: rgba(212, 244, 255, .58);
  font-size: 12px;
  letter-spacing: .06em;
}

.zone-info-card {
  position: absolute;
  z-index: 8;
  right: clamp(260px, 24vw, 410px);
  bottom: clamp(28px, 5vw, 72px);
  width: min(350px, calc(100vw - 36px));
  padding: 18px;
  color: #effdff;
  border: 1px solid rgba(102, 229, 255, .72);
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 10%, rgba(83, 221, 255, .22), transparent 32%),
    linear-gradient(180deg, rgba(5, 48, 102, .94), rgba(0, 17, 49, .96));
  box-shadow:
    0 0 0 1px rgba(122, 235, 255, .18),
    0 0 42px rgba(64, 207, 255, .35),
    inset 0 0 28px rgba(93, 222, 255, .12);
}

.zone-info-card[hidden] {
  display: none;
}

.zone-card-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  color: #eefdff;
  border: 1px solid rgba(122, 233, 255, .54);
  border-radius: 50%;
  background: rgba(2, 28, 72, .66);
  font-size: 22px;
  cursor: pointer;
}

.zone-info-card > p:first-of-type {
  margin: 0 0 2px;
  color: #8beaff;
  font: 700 24px/1 "Cormorant Garamond", serif;
}

.zone-info-card h2 {
  margin: 0;
  padding-right: 38px;
  color: #fff;
  font: 800 24px/1.25 "Noto Serif TC", serif;
}

.zone-info-card > span {
  display: block;
  margin-top: 3px;
  color: rgba(217, 245, 255, .72);
}

.zone-info-card img {
  width: 100%;
  aspect-ratio: 1.86;
  object-fit: cover;
  margin: 16px 0 12px;
  border-radius: 8px;
}

.zone-info-card p[data-zone-description] {
  margin: 0;
  color: rgba(225, 248, 255, .78);
  line-height: 1.8;
}

.zone-info-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 16px 0;
  border-top: 1px solid rgba(111, 226, 255, .18);
  border-bottom: 1px solid rgba(111, 226, 255, .18);
}

.zone-info-card dl div {
  padding: 10px 8px;
}

.zone-info-card dt {
  color: #7fe7ff;
  font-size: 12px;
}

.zone-info-card dd {
  margin: 4px 0 0;
  color: rgba(238, 252, 255, .78);
  font-size: 12px;
}

.zone-info-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 18px;
  color: #f6fdff;
  border: 1px solid rgba(114, 232, 255, .62);
  border-radius: 999px;
}

.map-toolbar {
  position: absolute;
  z-index: 5;
  left: clamp(22px, 4vw, 60px);
  bottom: clamp(18px, 3vw, 46px);
  display: grid;
  grid-template-columns: repeat(4, minmax(92px, 132px));
  border: 1px solid rgba(88, 211, 255, .12);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(1, 15, 43, .42);
}

.map-toolbar button {
  display: grid;
  gap: 5px;
  min-height: 86px;
  padding: 14px 12px;
  color: rgba(235, 250, 255, .78);
  border: 0;
  border-right: 1px solid rgba(88, 211, 255, .12);
  background: transparent;
  font: 700 14px/1.25 "Noto Serif TC", serif;
}

.map-toolbar button:last-child {
  border-right: 0;
}

.map-toolbar button.is-active {
  color: #fff;
  background: rgba(38, 166, 236, .12);
}

.map-toolbar span {
  color: rgba(175, 229, 255, .56);
  font: 700 12px/1 "Cormorant Garamond", serif;
}

@keyframes mapScan {
  0%, 100% {
    transform: translateY(-8px);
    opacity: .38;
  }
  50% {
    transform: translateY(18px);
    opacity: .72;
  }
}

@media (max-width: 980px) {
  .immersive-map {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 28px;
  }

  .map-copy,
  .floor-panel,
  .building-stage,
  .zone-info-card,
  .map-toolbar {
    position: relative;
    inset: auto;
    right: auto;
    bottom: auto;
    left: auto;
    top: auto;
  }

  .map-copy {
    max-width: none;
    margin-bottom: 22px;
  }

  .building-stage {
    min-height: 58vh;
    margin: 0;
  }

  .building-stage img {
    width: 100%;
    height: auto;
  }

  .immersive-map[data-map-view="floor"] .building-stage img {
    transform: scale(1.14);
  }

  .floor-panel {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 22px 0;
  }

  .zone-info-card {
    width: 100%;
    margin-top: 18px;
  }

  .map-toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}

@media (max-width: 640px) {
  .floor-panel {
    grid-template-columns: 1fr;
  }

  .building-hotspots button {
    min-width: 88px;
    min-height: 44px;
    padding: 6px 12px;
  }

  .building-hotspots strong {
    font-size: 20px;
  }

  .building-hotspots span {
    display: none;
  }

  .floor-hotspots button {
    width: 42px;
    height: 42px;
  }

  .floor-hotspots button::after {
    display: none;
  }

  .zone-info-card dl {
    grid-template-columns: 1fr;
  }
}

/* Aquarium shop */
.shop-page {
  min-height: 100vh;
  color: #f3fbff;
  background:
    radial-gradient(circle at 20% 10%, rgba(70, 207, 255, .14), transparent 28rem),
    linear-gradient(180deg, #000817, #001329 42%, #000817);
}

.shop-hero {
  position: relative;
  min-height: min(72vh, 720px);
  display: grid;
  align-items: center;
  padding: clamp(110px, 10vw, 150px) clamp(22px, 5vw, 70px) clamp(48px, 7vw, 90px);
  background:
    linear-gradient(90deg, rgba(0, 8, 24, .4) 0%, rgba(0, 13, 35, .28) 34%, rgba(0, 11, 31, .2) 72%, rgba(0, 8, 24, .1)),
    linear-gradient(180deg, rgba(0, 8, 24, .08), rgba(0, 8, 24, .3)),
    url("assets/images/bg_restaurant.webp") center 22% / cover no-repeat;
  overflow: hidden;
}

.shop-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, #001022);
  pointer-events: none;
}

.shop-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.shop-hero h1 {
  margin: 0;
  color: #fff8ee;
  font: 900 clamp(42px, 5.2vw, 78px)/1.18 "Noto Serif TC", serif;
  letter-spacing: .1em;
  text-shadow: 0 8px 28px rgba(0, 5, 20, .78), 0 0 28px rgba(88, 213, 255, .18);
}

.shop-hero h2 {
  margin: 14px 0 0;
  color: rgba(244, 252, 255, .9);
  font: 700 clamp(24px, 2.6vw, 36px)/1.25 "Noto Serif TC", serif;
  letter-spacing: .16em;
}

.shop-hero-copy > p:not(.eyebrow) {
  max-width: 410px;
  margin: 24px 0 0;
  color: rgba(227, 247, 255, .82);
  line-height: 1.9;
  letter-spacing: .08em;
}

.shop-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.shop-category-tabs a {
  display: grid;
  place-items: center;
  gap: 7px;
  width: 98px;
  min-height: 118px;
  color: rgba(240, 252, 255, .88);
  border: 1px solid rgba(111, 226, 255, .26);
  border-radius: 8px;
  background: rgba(0, 18, 48, .52);
  box-shadow: inset 0 0 20px rgba(91, 220, 255, .07);
  backdrop-filter: blur(8px);
}

.shop-category-tabs span {
  color: #9eefff;
  font-size: 28px;
}

.shop-category-tabs small {
  color: rgba(220, 246, 255, .62);
  font: 700 12px/1 "Cormorant Garamond", serif;
}

.shop-section {
  position: relative;
  padding: clamp(42px, 6vw, 78px) clamp(20px, 5vw, 70px);
  border-top: 1px solid rgba(111, 226, 255, .14);
  overflow: hidden;
}

.shop-section-copy {
  position: relative;
  z-index: 2;
  max-width: 360px;
}

.shop-section-copy p {
  margin: 0 0 10px;
  color: rgba(182, 233, 255, .72);
  font: 700 15px/1 "Cormorant Garamond", serif;
  letter-spacing: .18em;
}

.shop-section-copy h2 {
  margin: 0;
  color: #fff;
  font: 900 clamp(32px, 4vw, 54px)/1.18 "Noto Serif TC", serif;
  letter-spacing: .12em;
}

.shop-section-copy span {
  display: block;
  margin-top: 16px;
  color: rgba(225, 247, 255, .74);
  line-height: 1.9;
}

.shop-restaurant {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: end;
  background:
    radial-gradient(circle at 8% 68%, rgba(100, 219, 255, .18), transparent 26rem),
    linear-gradient(180deg, #001022, #000b1c);
}

.shop-feature-dish img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
  border-radius: 10px;
  filter: drop-shadow(0 24px 42px rgba(0, 5, 20, .4));
}

.shop-product-grid,
.gift-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 16px;
}

.shop-product-grid article,
.gift-grid article {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(105, 221, 255, .18);
  border-radius: 8px;
  background: rgba(2, 20, 51, .54);
  box-shadow: inset 0 0 20px rgba(87, 218, 255, .06), 0 18px 34px rgba(0, 5, 20, .22);
}

.shop-product-grid img,
.gift-grid img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  border-radius: 6px;
}

.shop-product-grid h3,
.gift-grid h3 {
  margin: 14px 0 8px;
  color: #f9fdff;
  font-size: 18px;
  letter-spacing: .06em;
}

.shop-product-grid strong,
.gift-grid strong {
  color: #f6f2eb;
  font: 700 19px/1 "Cormorant Garamond", serif;
}

.shop-product-grid p {
  margin: 9px 0 0;
  color: rgba(218, 243, 255, .64);
  font-size: 13px;
  line-height: 1.7;
}

.shop-cafe {
  min-height: clamp(520px, 58vw, 720px);
  background:
    linear-gradient(90deg, rgba(0, 11, 28, .98) 0%, rgba(0, 16, 36, .86) 34%, rgba(0, 16, 36, .22) 64%, rgba(0, 11, 28, .2)),
    linear-gradient(180deg, rgba(0, 11, 28, .96), rgba(0, 16, 36, .4) 42%, rgba(0, 9, 24, .92)),
    url("assets/images/bg_cafe.webp") right center / auto 100% no-repeat,
    linear-gradient(180deg, #000b1c, #001327);
}

.cafe-showcase {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(280px, 1fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: stretch;
  margin-top: 26px;
}

.cafe-visual {
  min-height: 360px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 55% 34%, rgba(214, 247, 255, .32), transparent 16%),
    linear-gradient(180deg, rgba(2, 35, 76, .05), rgba(0, 7, 22, .28));
  box-shadow: inset 0 0 54px rgba(81, 218, 255, .08);
  pointer-events: none;
}

.cafe-menu {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: clamp(12px, 1.7vw, 20px);
  align-self: end;
}

.cafe-menu article {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.cafe-menu img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  border-radius: 8px;
  filter: drop-shadow(0 16px 30px rgba(0, 5, 22, .36));
}

.cafe-menu h3 {
  margin: 14px 0 8px;
  color: #fff;
  font-size: 18px;
  letter-spacing: .06em;
}

.cafe-menu strong {
  color: #f6f2eb;
  font: 700 18px/1 "Cormorant Garamond", serif;
}

.cafe-menu p {
  margin: 8px 0 0;
  color: rgba(221, 245, 255, .64);
  font-size: 13px;
  line-height: 1.7;
}

.shop-gifts {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
  background: linear-gradient(180deg, #001327, #000918);
}

.shop-gift-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 10px;
}

.gift-grid {
  grid-template-columns: repeat(5, minmax(130px, 1fr));
}

.gift-grid article {
  display: flex;
  flex-direction: column;
}

.gift-grid img {
  aspect-ratio: 1;
  padding: 10px;
  background: radial-gradient(circle, rgba(87, 221, 255, .18), rgba(0, 17, 47, .6));
}

.shop-info-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 20px;
  align-items: center;
  margin: clamp(20px, 4vw, 54px) clamp(20px, 5vw, 70px) 42px;
  padding: 22px clamp(20px, 3vw, 34px);
  border: 1px solid rgba(111, 226, 255, .2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 8% 70%, rgba(89, 219, 255, .14), transparent 18rem),
    rgba(2, 25, 58, .66);
}

.shop-info-band span {
  color: #8deaff;
  letter-spacing: .12em;
}

.shop-info-band p {
  margin: 8px 0 0;
  color: rgba(230, 249, 255, .78);
  line-height: 1.6;
}

.shop-info-band a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  color: #f7fdff;
  border: 1px solid rgba(119, 232, 255, .48);
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .shop-restaurant,
  .shop-gifts,
  .cafe-showcase {
    grid-template-columns: 1fr;
  }

  .shop-product-grid,
  .gift-grid,
  .cafe-menu {
    overflow-x: auto;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 44%);
    grid-template-columns: none;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .shop-product-grid article,
  .gift-grid article,
  .cafe-menu article {
    scroll-snap-align: start;
  }

  .shop-cafe {
    background:
      linear-gradient(180deg, rgba(0, 11, 28, .96), rgba(0, 12, 31, .46) 48%, #000b1c),
      url("assets/images/bg_cafe.webp") right top / min(760px, 100%) auto no-repeat,
      linear-gradient(180deg, #000b1c, #001327);
  }

  .cafe-visual {
    min-height: 260px;
    order: -1;
  }

  .shop-info-band {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .shop-hero {
    min-height: 100svh;
    padding-inline: 18px;
  }

  .shop-category-tabs a {
    width: calc(33.333% - 10px);
    min-width: 88px;
  }

  .shop-info-band {
    grid-template-columns: 1fr;
  }

  .shop-product-grid,
  .gift-grid,
  .cafe-menu {
    grid-auto-columns: minmax(220px, 82%);
  }
}

.home-page .web1-home .web1-events.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, .92fr) minmax(280px, .78fr);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: stretch;
  margin: 0;
  min-height: 0;
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 76px);
}

.home-page .web1-home .web1-events.feature-band::before,
.home-page .web1-home .web1-events.feature-band::after {
  display: none;
}

.home-page .web1-home .web1-zones {
  color: #eefbff;
}

.home-page .web1-home .web1-zone-card,
.home-page .web1-home .web1-event-card,
.home-page .web1-home .web1-lounge-card,
.home-page .web1-home .web1-ticket-card,
.home-page .web1-home .web1-impact {
  border-radius: 8px;
}

@media (max-width: 1080px) {
  .home-page .web1-home .web1-hero {
    grid-template-columns: 1fr;
  }

  .home-page .web1-home .web1-events.feature-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .home-page .web1-home .web1-hero {
    min-height: 100svh;
    padding: 120px 18px 46px;
    background-position: 62% center;
  }

  .home-page .web1-home .web1-hero h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .home-page .web1-home .web1-events.feature-band {
    padding: 42px 18px;
  }
}
