:root {
  --ink: #061018;
  --ink-2: #0c1c28;
  --panel: #102635;
  --lime: #c8f542;
  --mango: #ff8a1f;
  --hot: #ff3d6e;
  --wa: #25d366;
  --text: #f4fbff;
  --muted: #8aa4b5;
  --line: rgba(200, 245, 66, 0.22);
  --max: 1120px;
  --nav-h: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans SC", sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
button, a { font: inherit; color: inherit; }
button { border: 0; background: none; cursor: pointer; }
a { text-decoration: none; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 clamp(14px, 3vw, 28px);
  background: rgba(6, 16, 24, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--lime);
  color: #081018;
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
}

.nav-mark img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.nav-name {
  font-family: Syne, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
}

.nav-links {
  display: none;
  gap: 18px;
  font-size: 0.88rem;
  color: var(--muted);
}

.nav-links a:hover { color: var(--lime); }

.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--wa);
  color: #04210c;
  font-weight: 800;
  font-size: 0.86rem;
}

/* ===== Hero ===== */
.hero { position: relative; }

.hero-stage {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 16, 24, 0.35) 0%, rgba(6, 16, 24, 0.55) 42%, rgba(6, 16, 24, 0.96) 100%),
    linear-gradient(90deg, rgba(6, 16, 24, 0.88) 0%, rgba(6, 16, 24, 0.25) 55%, rgba(6, 16, 24, 0.55) 100%);
}

.hero-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(200, 245, 66, 0.03) 3px
  );
  mix-blend-mode: screen;
  animation: scanMove 8s linear infinite;
  pointer-events: none;
}

@keyframes heroDrift {
  from { transform: scale(1.06) translate(0, 0); }
  to { transform: scale(1.12) translate(-1.5%, -1%); }
}

@keyframes scanMove {
  from { background-position: 0 0; }
  to { background-position: 0 40px; }
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 28px clamp(16px, 4vw, 40px) 18px;
  max-width: 720px;
  animation: rise 0.7s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(200, 245, 66, 0.35);
  background: rgba(6, 16, 24, 0.45);
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(200, 245, 66, 0.6);
  animation: ping 1.6s infinite;
}

@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(200, 245, 66, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(200, 245, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 245, 66, 0); }
}

.hero-brand {
  display: block;
  font-family: Syne, sans-serif;
  font-size: clamp(2.6rem, 10vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 8px;
  background: linear-gradient(110deg, #fff 20%, var(--lime) 55%, var(--mango));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-line {
  display: block;
  font-size: clamp(1.55rem, 5.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
}

.hero-line.accent {
  color: var(--mango);
  text-shadow: 0 0 28px rgba(255, 138, 31, 0.35);
}

.hero-desc {
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 34em;
}

.hero-desc strong { color: var(--lime); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.btn-fire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(95deg, var(--lime), #9fe01a 40%, var(--mango));
  color: #081018;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 12px 32px rgba(200, 245, 66, 0.22);
  transition: transform 0.2s ease;
}

.btn-fire:hover { transform: translateY(-2px); }
.btn-fire.xl { padding: 16px 28px; font-size: 1.08rem; }
.btn-fire.full { width: 100%; }

.btn-ghost {
  padding: 12px 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.btn-ghost:hover { color: var(--text); }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-proof b { color: var(--text); }

.filmstrip {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 clamp(16px, 4vw, 40px) 18px;
  scrollbar-width: none;
}

.filmstrip::-webkit-scrollbar { display: none; }

.film-item {
  flex: 0 0 auto;
  width: 72px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.film-item.on,
.film-item:hover {
  border-color: var(--lime);
  transform: translateY(-3px);
}

.film-item img {
  width: 72px;
  height: 96px;
  object-fit: cover;
}

.film-item span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 4px;
  font-size: 0.58rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

/* ===== Ticker ===== */
.ticker {
  display: flex;
  align-items: stretch;
  border-block: 1px solid var(--line);
  background: #081722;
  overflow: hidden;
}

.ticker-label {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 0 14px;
  background: var(--hot);
  color: #fff;
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.ticker-track {
  display: flex;
  gap: 28px;
  padding: 12px 0;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  width: max-content;
}

.ticker-track span {
  color: var(--muted);
  font-size: 0.86rem;
}

.ticker-track b { color: var(--lime); font-weight: 800; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Blocks ===== */
.block {
  padding: 42px clamp(16px, 4vw, 40px);
  max-width: var(--max);
  margin: 0 auto;
}

.block-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.block-head.center { text-align: center; align-items: center; }

.eyebrow {
  font-family: Syne, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 6px;
}

.block-head h2 {
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 38, 53, 0.7);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.pill.on,
.pill:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: #081018;
}

/* ===== Radar rail ===== */
.rail-wrap {
  position: relative;
}

.rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.rail::-webkit-scrollbar { display: none; }

.rail-card {
  flex: 0 0 min(78vw, 300px);
  scroll-snap-align: start;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.rail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 245, 66, 0.45);
}

.rail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rail-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 10, 16, 0.95) 100%);
}

.badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
}

.badge.on {
  left: 12px;
  background: var(--wa);
  color: #04210c;
}

.badge.km {
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
}

.rail-info {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: 0;
  padding: 14px;
}

.rail-info h3 {
  font-size: 1.15rem;
  font-weight: 900;
}

.rail-info .sub {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 2px 0 8px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tag {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 6px;
  background: var(--hot);
  color: #fff;
}

.tag.alt {
  background: var(--mango);
  color: #2a1400;
}

.rail-nav {
  display: none;
  position: absolute;
  top: 45%;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(6, 16, 24, 0.75);
  border: 1px solid rgba(200, 245, 66, 0.35);
  color: var(--lime);
  font-size: 1.5rem;
  place-items: center;
}

.rail-nav.prev { left: -8px; }
.rail-nav.next { right: -8px; }

.rail-hint {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.8rem;
}

/* ===== Play mosaic ===== */
.play-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: minmax(110px, auto);
  gap: 10px;
}

.play {
  position: relative;
  text-align: left;
  padding: 18px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.play::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 245, 66, 0.18), transparent 70%);
}

.play:hover,
.play.on {
  transform: translateY(-2px);
  border-color: rgba(200, 245, 66, 0.5);
}

.play.big {
  grid-row: span 2;
  background: linear-gradient(160deg, #163246, #0f2432 55%, #1a2f1a);
}

.play.wide {
  grid-column: span 2;
  background: linear-gradient(110deg, #2a1830, #1a2438);
}

.play strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 4px;
  position: relative;
}

.play em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.84rem;
  position: relative;
}

.play-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--hot);
  font-size: 0.68rem;
  font-weight: 900;
  position: relative;
}

.play-result {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.play-result .mini {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: rgba(16, 38, 53, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.play-result .mini img {
  width: 56px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}

.play-result .mini strong {
  display: block;
  font-size: 0.92rem;
}

.play-result .mini span {
  color: var(--muted);
  font-size: 0.75rem;
}

/* ===== Steps ===== */
.step-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.step-list li {
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(16, 38, 53, 0.9), rgba(8, 22, 32, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.step-n {
  display: inline-block;
  font-family: Syne, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--lime);
  margin-bottom: 6px;
}

.step-list h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.step-list p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ===== Stories ===== */
.story-grid {
  display: grid;
  gap: 12px;
}

.story {
  padding: 18px;
  border-radius: 18px;
  background: var(--panel);
  border-left: 3px solid var(--mango);
}

.story .who {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.82rem;
}

.story .who b { color: var(--lime); }
.story .who span { color: var(--muted); }

.story p {
  font-size: 0.92rem;
  color: #d7e6ef;
}

.story .stars {
  margin-top: 10px;
  color: var(--mango);
  letter-spacing: 2px;
  font-size: 0.85rem;
}

/* ===== Cities ===== */
.city-board {
  display: grid;
  gap: 10px;
}

.city-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(16, 38, 53, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.city-row h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.city-row p {
  color: var(--muted);
  font-size: 0.8rem;
}

.heat {
  min-width: 72px;
  text-align: right;
}

.heat b {
  display: block;
  font-family: Syne, sans-serif;
  font-size: 1.2rem;
  color: var(--hot);
}

.heat span {
  font-size: 0.72rem;
  color: var(--muted);
}

.bar {
  grid-column: 1 / -1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--mango), var(--hot));
  border-radius: inherit;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 8px;
}

.faq-item {
  border-radius: 14px;
  background: rgba(16, 38, 53, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
  font-size: 0.95rem;
}

.faq-item button::after {
  content: "+";
  color: var(--lime);
  font-size: 1.2rem;
  font-weight: 400;
}

.faq-item.open button::after { content: "–"; }

.faq-item .ans {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-item.open .ans { display: block; }

/* ===== Finale ===== */
.finale {
  padding: 20px clamp(16px, 4vw, 40px) 100px;
}

.finale-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 36px 22px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 80% 80% at 50% 0%, rgba(200, 245, 66, 0.16), transparent 55%),
    linear-gradient(160deg, #102635, #08141c);
  border: 1px solid rgba(200, 245, 66, 0.2);
}

.finale h2 {
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-weight: 900;
  margin: 8px 0 12px;
  line-height: 1.2;
}

.finale p {
  color: var(--muted);
  margin-bottom: 20px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.72rem;
  color: rgba(138, 164, 181, 0.7);
}

/* ===== FAB ===== */
.fab {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--wa);
  color: #04210c;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  animation: fabPulse 2.4s ease-in-out infinite;
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}

/* ===== Drawer ===== */
.drawer[hidden] { display: none; }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.drawer-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(100%, 440px);
  background: var(--ink-2);
  border-left: 1px solid rgba(200, 245, 66, 0.18);
  overflow: auto;
  animation: slideIn 0.28s ease;
}

@keyframes slideIn {
  from { transform: translateX(24px); opacity: 0.6; }
  to { transform: none; opacity: 1; }
}

.drawer-x {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.4rem;
}

.drawer-media {
  position: relative;
  aspect-ratio: 3 / 4;
  max-height: 52vh;
  overflow: hidden;
  background: #000;
}

.drawer-track {
  display: flex;
  height: 100%;
  transition: transform 0.28s ease;
}

.drawer-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 48px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.5rem;
}

.drawer-nav.prev { left: 0; }
.drawer-nav.next { right: 0; }

.drawer-count {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 0.75rem;
  font-weight: 700;
}

.drawer-body { padding: 16px 16px 28px; }

.drawer-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.drawer-meta h3 {
  font-size: 1.3rem;
  font-weight: 900;
}

.drawer-city {
  color: var(--lime);
  font-size: 0.85rem;
  font-weight: 700;
  margin: 4px 0 10px;
}

.drawer-desc {
  color: var(--muted);
  margin-bottom: 12px;
}

.drawer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.drawer-tags .tag {
  font-size: 0.78rem;
  padding: 5px 10px;
  border-radius: 999px;
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .nav-links { display: flex; }

  .block-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .block-head.center { flex-direction: column; align-items: center; }

  .rail-card { flex-basis: 280px; }
  .rail-nav { display: grid; }

  .step-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .story-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .city-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .play-result {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-copy { padding-bottom: 28px; }
}

@media (max-width: 640px) {
  .fab {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .play-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .play.big {
    grid-column: span 2;
    grid-row: span 1;
  }

  .play.wide { grid-column: span 2; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
