/* ============================================================
   ZOLANABULLGIRLS — vanishing-point arena
   Graphic-novel splash, not a flat comic strip.
   ============================================================ */

:root {
  --void: #07030e;
  --gold: #f5c518;
  --gold-2: #ffe27a;
  --cyan: #2de8e2;
  --mag: #ff2ec8;
  --paper: #f6efe4;
  --line: #000;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--void);
  color: var(--paper);
  overflow-x: hidden;
}

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

::selection { background: var(--mag); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0414; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--mag));
  border: 2px solid #000;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.block { position: relative; padding: 110px 0 90px; }
@media (min-width: 1024px) { .block { padding: 140px 0 120px; } }

/* ---------- background: 3.png lives here ---------- */
.bg-stage {
  position: fixed;
  inset: -8vmax;
  z-index: -2;
  pointer-events: none;
}

.bg-art {
  position: absolute;
  inset: 0;
  background: url("../../3.png") center 28% / cover no-repeat;
  filter: saturate(1.2) contrast(1.08) brightness(0.42);
  transform: scale(1.12);
  will-change: transform;
}

.bg-split {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(245, 197, 24, 0.22) 0%, transparent 42%),
    linear-gradient(255deg, rgba(45, 232, 226, 0.2) 0%, transparent 42%),
    linear-gradient(180deg, rgba(7, 3, 14, 0.55) 0%, rgba(7, 3, 14, 0.35) 38%, rgba(7, 3, 14, 0.88) 100%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 70%, transparent 100%);
  transform: perspective(700px) rotateX(58deg) scale(1.6);
  transform-origin: 50% 120%;
  opacity: 0.55;
}

.bg-haze {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 46, 200, 0.16), transparent 42%),
    radial-gradient(circle at 18% 80%, rgba(245, 197, 24, 0.12), transparent 40%),
    radial-gradient(circle at 82% 78%, rgba(45, 232, 226, 0.12), transparent 40%);
}

.bg-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 22vmax 10vmax rgba(0, 0, 0, 0.86);
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px) rotateX(12deg);
  transform-origin: 50% 100%;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
}

/* ---------- nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 18px 0;
  transition: padding 0.3s ease, background 0.3s ease;
}
.site-nav.stuck {
  padding-top: 8px;
  background: linear-gradient(180deg, rgba(7, 3, 14, 0.88), transparent);
}

.nav-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 10px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 3, 16, 0.72);
  backdrop-filter: blur(16px);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand img {
  width: 42px; height: 42px;
  object-fit: cover;
  object-position: 50% 22%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.brand strong {
  display: block;
  font-family: Bungee, cursive;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.brand em {
  display: block;
  font-style: normal;
  font-family: Teko, sans-serif;
  letter-spacing: 0.28em;
  font-size: 13px;
  color: var(--cyan);
}
@media (max-width: 420px) {
  .brand span { display: none; }
}

.desk-nav { display: none; margin-left: auto; }
@media (min-width: 1024px) {
  .desk-nav { display: flex; gap: 4px; }
}
.desk-nav a {
  font-family: Teko, sans-serif;
  font-size: 18px;
  letter-spacing: 0.16em;
  padding: 8px 14px;
  color: rgba(246, 239, 228, 0.7);
}
.desk-nav a:hover { color: #fff; }
.desk-nav a.active {
  color: #140c00;
  background: var(--gold);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.nav-acts { display: none; align-items: center; gap: 8px; }
@media (min-width: 640px) { .nav-acts { display: flex; } }

.ico {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.ico:hover { transform: translateY(-2px); background: #fff; color: #000; }
.ico-dex { color: var(--cyan); }
.ico-buy { color: var(--gold); }

.buy-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  font-family: Bungee, cursive;
  font-size: 13px;
  color: #140c00;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.buy-pill:hover { filter: brightness(1.08); }

.burger {
  margin-left: auto;
  width: 42px; height: 42px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--gold);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .burger { display: none; } }
@media (min-width: 640px) {
  .site-nav .burger { margin-left: 0; }
}

.mobile-sheet {
  display: none;
  width: min(1180px, 100%);
  margin: 8px auto 0;
  padding: 12px;
  background: rgba(8, 3, 16, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-sheet.open { display: grid; gap: 6px; }
.mobile-sheet > a {
  font-family: Teko, sans-serif;
  font-size: 22px;
  letter-spacing: 0.14em;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
}
.mobile-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-top: 4px;
}
.mobile-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 6px;
  font-family: Teko, sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-row a.is-buy { background: var(--gold); color: #140c00; }

/* ---------- hero arena ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 120px 20px 80px;
  overflow: hidden;
}

.arena {
  position: absolute;
  inset: 0;
  perspective: 900px;
  pointer-events: none;
}

.arena-floor {
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -8%;
  height: 58%;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 70px,
      rgba(255, 255, 255, 0.05) 70px 71px
    ),
    linear-gradient(180deg, transparent, rgba(255, 46, 200, 0.08) 55%, rgba(7, 3, 14, 0.7));
  transform: rotateX(68deg);
  transform-origin: 50% 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rail {
  position: absolute;
  top: 12%;
  width: 2px;
  height: 78%;
  background: linear-gradient(180deg, transparent, currentColor 20%, currentColor 80%, transparent);
  filter: drop-shadow(0 0 10px currentColor);
  opacity: 0.55;
}
.rail-l { left: 11%; color: var(--gold); transform: rotate(11deg); }
.rail-r { right: 11%; color: var(--cyan); transform: rotate(-11deg); }

.bolt {
  position: absolute;
  left: 50%;
  top: 18%;
  bottom: 8%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--mag), var(--gold), var(--cyan), transparent);
  box-shadow: 0 0 18px var(--mag);
  clip-path: polygon(40% 0, 70% 18%, 45% 36%, 75% 55%, 40% 72%, 65% 88%, 35% 100%, 20% 72%, 50% 55%, 22% 36%, 48% 18%);
  opacity: 0.7;
}

.hero-stack {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  text-align: center;
}

.kicker {
  margin: 0 0 18px;
  font-family: Teko, sans-serif;
  letter-spacing: 0.38em;
  font-size: 16px;
  color: rgba(246, 239, 228, 0.7);
}
.kicker span { color: var(--mag); }

.mark {
  width: 92px; height: 92px;
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.35), 0 0 40px rgba(255, 46, 200, 0.28);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  overflow: hidden;
}
.mark img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

.hero-title {
  margin: 0;
  line-height: 0.86;
}
.hero-title span {
  display: block;
  font-family: Bungee, cursive;
}
.t-gold {
  font-size: clamp(3.1rem, 12vw, 7.4rem);
  background: linear-gradient(180deg, #fff 8%, var(--gold-2) 40%, var(--gold) 70%, #9a6f00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 0 rgba(0, 0, 0, 0.45)) drop-shadow(0 0 28px rgba(245, 197, 24, 0.35));
}
.t-ice {
  font-size: clamp(2.2rem, 8.6vw, 5.2rem);
  background: linear-gradient(180deg, #fff 4%, #b8fff9 36%, var(--cyan) 62%, #7a3cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 0 rgba(0, 0, 0, 0.4)) drop-shadow(0 0 24px rgba(45, 232, 226, 0.3));
}

.symbol {
  margin: 16px 0 0;
  font-family: Teko, sans-serif;
  letter-spacing: 0.42em;
  font-size: 22px;
  color: var(--mag);
}

.bio {
  margin: 18px auto 0;
  max-width: 36rem;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  color: rgba(246, 239, 228, 0.88);
}
.bio b { color: #fff; }

.ca-bar {
  margin: 28px auto 0;
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: auto 1fr;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 2, 12, 0.72);
  backdrop-filter: blur(10px);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.ca-k {
  display: grid;
  place-items: center;
  padding: 0 14px;
  font-family: Teko, sans-serif;
  letter-spacing: 0.2em;
  font-size: 15px;
  color: #140c00;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
}
.ca-bar button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  text-align: left;
}
.ca-bar button:hover { background: rgba(245, 197, 24, 0.08); }
.ca-bar code {
  flex: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--cyan);
  word-break: break-all;
}
.ca-bar i { color: var(--gold); }

.hero-cta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  font-family: Bungee, cursive;
  font-size: 13px;
  letter-spacing: 0.04em;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: transform 0.18s ease, filter 0.18s ease;
}
.btn:hover { transform: translateY(-3px); filter: brightness(1.08); }
.btn-gold { background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #140c00; }
.btn-ice { background: linear-gradient(180deg, #9ffaf6, var(--cyan)); color: #042422; }
.btn-ghost {
  background: rgba(8, 3, 16, 0.7);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* ---------- section heads ---------- */
.head { text-align: center; margin-bottom: 42px; }
.head span {
  display: block;
  font-family: Teko, sans-serif;
  letter-spacing: 0.42em;
  font-size: 15px;
  color: var(--cyan);
}
.head h2 {
  margin: 8px 0 0;
  font-family: Bungee, cursive;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1;
  background: linear-gradient(180deg, #fff, var(--gold-2) 55%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 0 rgba(0, 0, 0, 0.35));
}

/* ---------- about jumbotron ---------- */
.jumbo-stage {
  perspective: 1400px;
  margin-bottom: 28px;
}
.jumbo {
  margin: 0;
  transform: rotateX(16deg) rotateZ(-0.6deg);
  transform-origin: 50% 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(255, 46, 200, 0.16);
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.jumbo-stage:hover .jumbo { transform: rotateX(6deg) rotateZ(0); }
.jumbo img { width: 100%; height: auto; }
.jumbo-cap {
  margin: 14px 0 0;
  text-align: center;
  font-family: Teko, sans-serif;
  letter-spacing: 0.32em;
  font-size: 14px;
  color: rgba(246, 239, 228, 0.55);
}

.lede {
  max-width: 46rem;
  margin: 8px auto 42px;
  text-align: center;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(246, 239, 228, 0.82);
}
.c-gold { color: var(--gold); }
.c-ice { color: var(--cyan); }

.collide {
  display: grid;
  gap: 16px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .collide {
    grid-template-columns: 1fr auto 1fr;
    perspective: 1200px;
  }
}

.force {
  padding: 28px 26px;
  background: rgba(8, 3, 16, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}
.force-l {
  border-left: 3px solid var(--gold);
  transform: rotateY(8deg);
}
.force-r {
  border-right: 3px solid var(--cyan);
  transform: rotateY(-8deg);
}
.force-tag {
  font-family: Teko, sans-serif;
  letter-spacing: 0.28em;
  font-size: 14px;
  color: var(--mag);
}
.force h3 {
  margin: 6px 0 10px;
  font-family: Bungee, cursive;
  font-size: 22px;
}
.force-l h3 { color: var(--gold); }
.force-r h3 { color: var(--cyan); }
.force p {
  margin: 0;
  line-height: 1.65;
  color: rgba(246, 239, 228, 0.78);
}

.force-core {
  width: 92px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  align-content: center;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 46, 200, 0.35), rgba(8, 3, 16, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.18);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.force-core b {
  font-family: Bungee, cursive;
  font-size: 28px;
  color: #fff;
  line-height: 1;
}
.force-core small {
  font-family: Teko, sans-serif;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--gold);
}

@media (max-width: 899px) {
  .force-l, .force-r { transform: none; }
}

.hexes {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 800px) { .hexes { grid-template-columns: repeat(4, 1fr); } }
.hexes li {
  padding: 18px 16px;
  text-align: center;
  background: rgba(246, 239, 228, 0.94);
  color: #140c18;
  clip-path: polygon(12% 0, 88% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
}
.hexes em {
  display: block;
  font-style: normal;
  font-family: Teko, sans-serif;
  letter-spacing: 0.24em;
  font-size: 13px;
  color: #9a2a72;
}
.hexes strong {
  display: block;
  margin-top: 4px;
  font-family: Bungee, cursive;
  font-size: clamp(10px, 2.6vw, 13px);
  word-break: break-word;
}

/* ---------- how to buy track ---------- */
.buy .wrap { width: min(820px, calc(100% - 40px)); }

.track {
  position: relative;
  display: grid;
  gap: 22px;
  perspective: 1300px;
}

.track-line {
  position: absolute;
  left: 50%;
  top: 12px;
  bottom: 12px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold), var(--mag), var(--cyan));
  box-shadow: 0 0 16px var(--mag);
  opacity: 0.7;
}
@media (max-width: 700px) {
  .track-line { left: 28px; }
}

.station {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 16px;
  align-items: center;
  width: min(78%, 100%);
  padding: 22px 22px 22px 18px;
  background: rgba(246, 239, 228, 0.95);
  color: #160a20;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.st-l { justify-self: start; transform: rotateY(9deg) rotateZ(-0.6deg); }
.st-r { justify-self: end; transform: rotateY(-9deg) rotateZ(0.6deg); }

.st-num {
  font-family: Bungee, cursive;
  font-size: 28px;
  line-height: 1;
  color: var(--mag);
}
.st-ico {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  font-size: 22px;
  color: #140c00;
  background: linear-gradient(160deg, var(--gold-2), var(--gold));
}
.station h3 {
  margin: 0 0 6px;
  font-family: Bungee, cursive;
  font-size: 16px;
}
.station p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #3b2a48;
}
.station a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-family: Teko, sans-serif;
  letter-spacing: 0.12em;
  font-size: 17px;
  color: #8a1f68;
}
.station a:hover { color: #000; }

@media (max-width: 700px) {
  .station,
  .st-l,
  .st-r {
    width: 100%;
    justify-self: stretch;
    transform: none;
    grid-template-columns: auto 1fr;
  }
  .st-num { display: none; }
}

.dock {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: rgba(8, 3, 16, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.dock > div:first-child { min-width: min(100%, 280px); flex: 1; }
.dock span {
  display: block;
  font-family: Teko, sans-serif;
  letter-spacing: 0.28em;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 8px;
}
.dock button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.35);
  text-align: left;
}
.dock code {
  flex: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--cyan);
  word-break: break-all;
}
.dock-acts { display: flex; flex-wrap: wrap; gap: 8px; }
.fine {
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  color: rgba(246, 239, 228, 0.5);
}

/* ---------- community ring ---------- */
.ring-stage {
  perspective: 1100px;
  margin: 10px auto 0;
  max-width: 720px;
}
.ring {
  position: relative;
  height: 460px;
  transform: rotateX(18deg);
  transform-style: preserve-3d;
}
.ring-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  transform: translate(-50%, -50%);
  text-align: center;
}
.ring-core img {
  width: 170px; height: 170px;
  margin: 0 auto;
  object-fit: cover;
  object-position: 50% 20%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 50px rgba(255, 46, 200, 0.35);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.ring-core p {
  margin: 14px 0 0;
  font-family: Bungee, cursive;
  font-size: 16px;
  color: var(--gold);
}

.seat {
  position: absolute;
  width: 150px;
  padding: 16px 12px;
  text-align: center;
  background: rgba(8, 3, 16, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  transition: transform 0.25s ease, background 0.25s ease;
}
.seat i { display: block; font-size: 22px; margin-bottom: 6px; }
.seat b { display: block; font-family: Bungee, cursive; font-size: 14px; }
.seat small { display: block; margin-top: 4px; color: rgba(246, 239, 228, 0.6); font-size: 12px; }
.seat:hover { background: rgba(20, 8, 32, 0.95); transform: translateY(-6px); }

.seat-x { left: 50%; top: 0; transform: translateX(-50%); }
.seat-x:hover { transform: translateX(-50%) translateY(-6px); }
.seat-buy { left: 0; top: 58%; color: var(--gold); }
.seat-dex { right: 0; top: 58%; color: var(--cyan); }

@media (max-width: 640px) {
  .ring { height: auto; transform: none; display: grid; gap: 12px; padding-top: 0; }
  .ring-core { position: relative; left: auto; top: auto; transform: none; margin: 0 auto 8px; }
  .seat { position: relative; left: auto !important; right: auto !important; top: auto !important; width: 100%; transform: none !important; }
}

.herd-copy {
  max-width: 36rem;
  margin: 36px auto 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(246, 239, 228, 0.78);
}

/* ---------- footer / toast ---------- */
.foot { padding: 10px 0 48px; }
.foot-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 3, 16, 0.7);
}
.legal {
  width: min(720px, calc(100% - 40px));
  margin: 18px auto 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(246, 239, 228, 0.45);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 140%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-family: Teko, sans-serif;
  letter-spacing: 0.12em;
  font-size: 18px;
  color: #140c00;
  background: var(--gold);
  z-index: 80;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.toast.show { transform: translate(-50%, 0); }
