:root {
  --ink: #eef4ff;
  --dim: #9bb0cc;
  --line: rgba(180, 210, 255, 0.18);
  --cyan: #7dd3c0;
  --hot: #ff6b8a;
  --glass: rgba(8, 12, 24, 0.52);
  --radius: 18px;
  --display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --sans: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-family: var(--sans);
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; color: var(--ink); background: #05070d; }
body { min-height: 100dvh; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }

.stage {
  position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
  background: #05070d;
}
.stage-img {
  position: absolute; inset: -10%;
  width: 120%; height: 120%;
  object-fit: cover;
  transform-origin: 62% 48%;
  animation: ken 36s ease-in-out infinite alternate;
  filter: saturate(1.08) contrast(1.06);
}
.stage-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(5,7,13,.88) 0%, rgba(5,7,13,.38) 42%, rgba(5,7,13,.2) 62%, rgba(5,7,13,.55) 100%),
    linear-gradient(180deg, rgba(5,7,13,.45) 0%, transparent 28%, rgba(5,7,13,.92) 100%);
}
.stage-grain {
  position: absolute; inset: 0;
  opacity: .18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.stage-bars {
  position: absolute; inset: 0;
  box-shadow: inset 0 28px 40px rgba(0,0,0,.45), inset 0 -48px 60px rgba(0,0,0,.55);
}
body.route-inner .stage-img {
  animation: none;
  transform: scale(1.12);
  filter: saturate(.7) brightness(.45);
}
body.route-inner .stage-veil {
  background: rgba(5,7,13,.78);
}

@keyframes ken {
  0% { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.16) translate3d(-3.2%, -1.6%, 0); }
}

.top, main, .foot { position: relative; z-index: 1; }
.top {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.4rem; max-width: 1180px; margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: .65rem;
  font-weight: 800; letter-spacing: -0.04em; font-size: 1.12rem;
}
.brand img {
  width: 36px; height: 36px; border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(125,211,192,.35), 0 0 18px rgba(255,107,138,.25);
}
.brand span { color: var(--cyan); }
.top nav { display: flex; gap: .7rem; align-items: center; color: var(--dim); font-weight: 600; }
.btn {
  border: 1px solid var(--line); background: var(--glass);
  border-radius: 999px; padding: .55rem 1.05rem; cursor: pointer;
  backdrop-filter: blur(12px);
}
.btn.primary { background: var(--cyan); color: #041018; border-color: transparent; font-weight: 750; }
.btn.hot { background: var(--hot); color: #14040a; border-color: transparent; font-weight: 750; }
.btn.ghost { background: transparent; }
main { max-width: 1180px; margin: 0 auto; padding: 0 1.4rem 4rem; }

.billboard {
  min-height: calc(100dvh - 5.2rem);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 0 3.2rem; max-width: 46rem;
}
.kicker {
  letter-spacing: .32em; text-transform: uppercase;
  font-size: .72rem; color: var(--cyan); margin: 0 0 .7rem; font-weight: 700;
}
.billboard h1, .hero h1 {
  font-family: var(--display);
  font-size: clamp(3.4rem, 11vw, 7.2rem);
  letter-spacing: .02em; line-height: .88;
  margin: 0 0 .9rem; font-weight: 400;
}
.hero { padding: 2.2rem 0 1.4rem; max-width: 36rem; }
.muted { color: var(--dim); line-height: 1.55; }
.hero .row, .row, .billboard .row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }

.stills {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem;
  margin-top: .4rem;
}
.still {
  border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  background: rgba(8,12,24,.55); backdrop-filter: blur(14px);
}
.still img { width: 100%; height: 168px; object-fit: cover; }
.still .copy { padding: 1rem 1.05rem 1.15rem; }
.still h3 { margin: 0 0 .3rem; font-size: 1.05rem; }
.tag { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--cyan); margin: 0 0 .35rem; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: .9rem; }
.card {
  background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.15rem; backdrop-filter: blur(10px); overflow: hidden;
}
.card.art { padding: 0; }
.card-art { height: 150px; overflow: hidden; }
.card-art img { width: 100%; height: 100%; object-fit: cover; }
.card .pad { padding: 1.05rem 1.1rem 1.15rem; }
.card h3 { margin: 0 0 .35rem; }

.timer { font: 800 2.4rem/1 ui-monospace, Menlo, monospace; letter-spacing: .08em; color: var(--cyan); }
.arena {
  height: min(58vh, 420px); border-radius: var(--radius); border: 1px solid var(--line);
  background:
    url("assets/floor.jpg") center/cover no-repeat,
    linear-gradient(#10182b, #070b14);
  position: relative; overflow: hidden;
}
.arena .dot {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 18px var(--cyan);
  left: 50%; top: 58%; transform: translate(-50%, -50%);
}
.foot { text-align: center; color: var(--dim); font-size: .8rem; padding: 0 1rem 2rem; letter-spacing: .04em; }
.sheet {
  border: 1px solid var(--line); border-radius: 22px; background: rgba(8, 12, 22, .92);
  color: var(--ink); padding: 1.3rem 1.25rem; width: min(420px, calc(100vw - 2rem));
  backdrop-filter: blur(18px);
}
.sheet::backdrop { background: rgba(4, 8, 16, .72); }
.field { display: grid; gap: .3rem; margin: .85rem 0; font-size: .82rem; color: var(--dim); }
.field input {
  background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 12px;
  padding: .75rem .8rem; font-size: 1rem;
}
.err { color: var(--hot); font-size: .88rem; }
.locked { opacity: .85; }

@media (max-width: 860px) {
  .stills { grid-template-columns: 1fr; }
  .still img { height: 200px; }
}
@media (max-width: 700px) {
  .top nav a { display: none; }
  .billboard { min-height: calc(100dvh - 4.6rem); padding-bottom: 2.2rem; }
}
@media (prefers-reduced-motion: reduce) {
  .stage-img { animation: none; }
}
