:root {
  --void: #07141f;
  --navy: #0c2233;
  --ocean: #123a54;
  --ice: #d7f6ff;
  --paper: #eef8ff;
  --cyan: #3ee0ff;
  --cyan-deep: #1494b8;
  --sunset: #ff8a3d;
  --gold: #ffd166;
  --magenta: #ff4fd8;
  --ink: #061018;
  --chrome: #c9d8e4;
  --stroke: 3px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --font-display: "Russo One", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --nav-h: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

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

h1,
h2,
h3,
.brand-lockup strong,
.exit-sign b,
.exit-sign .exit-name {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

/* ── Background: dusk highway (perspective lives here, not on sections) ── */
.world {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.world .sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 38% at 50% -8%, rgba(255, 154, 74, 0.55), transparent 55%),
    radial-gradient(ellipse 40% 30% at 86% 8%, rgba(255, 79, 216, 0.22), transparent 60%),
    linear-gradient(180deg, #1d4a78 0%, #10263b 34%, #0a1826 62%, #071018 100%);
}

.world .sun {
  position: absolute;
  top: 6%;
  left: 50%;
  width: min(42vw, 320px);
  height: min(42vw, 320px);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, #ffe9a8 0%, #ff9a4a 38%, transparent 70%);
  opacity: 0.55;
  filter: blur(2px);
}

.world .glow-magenta,
.world .glow-cyan {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.28;
}

.world .glow-magenta {
  width: 38vw;
  height: 38vw;
  right: -8%;
  top: 18%;
  background: #ff4fd8;
}

.world .glow-cyan {
  width: 32vw;
  height: 32vw;
  left: -6%;
  top: 30%;
  background: #3ee0ff;
}

.world .halftone {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: radial-gradient(#d7f6ff 0.7px, transparent 0.8px);
  background-size: 9px 9px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 80%);
}

.world .sea {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(18, 90, 120, 0.35) 18%, rgba(7, 20, 31, 0.92) 100%),
    repeating-linear-gradient(
      180deg,
      rgba(62, 224, 255, 0.08) 0 2px,
      transparent 2px 14px
    );
}

.world .highway {
  position: absolute;
  left: 50%;
  bottom: -18%;
  width: 160%;
  height: 58%;
  transform: translateX(-50%) perspective(420px) rotateX(62deg);
  transform-origin: center top;
}

.world .asphalt {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, transparent 47.6%, #fff8e8 47.6%, #fff8e8 52.4%, transparent 52.4%),
    linear-gradient(#1a2c3c, #0b1520);
  background-size: 100% 36px, 100% 100%;
  background-repeat: repeat-y, no-repeat;
  border-left: 18px solid rgba(255, 209, 102, 0.35);
  border-right: 18px solid rgba(255, 209, 102, 0.35);
  opacity: 0.55;
}

.world .palm {
  position: absolute;
  bottom: 8%;
  width: 140px;
  height: 280px;
  opacity: 0.22;
  background:
    radial-gradient(ellipse at 50% 12%, #0b1a24 0 18%, transparent 19%),
    linear-gradient(#0b1a24, #0b1a24) 50% 30% / 10px 70% no-repeat;
  filter: drop-shadow(0 0 0 #0b1a24);
}

.world .palm::before,
.world .palm::after {
  content: "";
  position: absolute;
  top: 6%;
  left: 50%;
  width: 90px;
  height: 34px;
  background: #0b1a24;
  border-radius: 50%;
}

.world .palm::before {
  transform: translateX(-80%) rotate(-28deg);
}

.world .palm::after {
  transform: translateX(-20%) rotate(28deg);
}

.world .palm-l {
  left: 2%;
}

.world .palm-r {
  right: 2%;
  transform: scaleX(-1);
}

.world .visor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(4, 10, 16, 0.55), transparent);
}

/* ── Dashboard nav ── */
.dash-nav {
  min-height: var(--nav-h);
  background: linear-gradient(180deg, rgba(8, 20, 30, 0.92), rgba(8, 20, 30, 0.78));
  border-bottom: 3px solid rgba(62, 224, 255, 0.35);
  backdrop-filter: blur(12px);
}

.dash-nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 7px;
  background:
    repeating-linear-gradient(
      90deg,
      #111 0 10px,
      #f4f4f4 10px 20px
    );
  opacity: 0.55;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.navbar-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #05080c;
  border: 2px solid var(--cyan);
  border-radius: 12px;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-lockup strong {
  font-size: 0.98rem;
  color: #fff;
}

.brand-lockup span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.navbar-toggler {
  border: 2px solid var(--cyan);
  color: var(--ice);
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-link {
  color: var(--ice) !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 0.55rem 0.8rem !important;
}

.nav-link:hover {
  color: var(--cyan) !important;
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.chip-btn.lg {
  padding: 0.75rem 1.15rem;
  font-size: 0.9rem;
}

.chip-btn:hover {
  transform: translateY(-2px);
}

.chip-btn.x {
  background: #0b0f14;
  border-color: #f4f4f4;
  color: #fff;
}

.chip-btn.dex {
  background: #102a22;
  border-color: #3dffb0;
  color: #3dffb0;
}

.chip-btn.buy {
  background: var(--cyan);
  border-color: #fff;
  color: var(--ink);
  box-shadow: 0 0 18px rgba(62, 224, 255, 0.35);
}

.chip-btn.ghost {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Sections stay axis-aligned ── */
.block {
  position: relative;
  padding: 4.5rem 0 3.5rem;
}

.hero-block {
  padding-top: 2.4rem;
}

.exit-sign {
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.6rem;
  padding: 0.55rem 0.9rem 0.6rem;
  background: #1b5e3b;
  border: 3px solid #e8ffe8;
  border-radius: 6px;
  box-shadow: var(--shadow);
  color: #f4fff4;
}

.exit-sign .exit-kicker {
  grid-column: 2;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.exit-sign b {
  grid-row: 1 / span 2;
  font-size: 1.7rem;
  min-width: 2.1rem;
  text-align: center;
  padding-right: 0.7rem;
  border-right: 2px solid rgba(255, 255, 255, 0.35);
}

.exit-sign .exit-name {
  font-size: 1.05rem;
  text-transform: uppercase;
}

.exit-sign.teal {
  background: #0f5f73;
}

.exit-sign.gold {
  background: #8a4b12;
  border-color: #ffe9b8;
  color: #fff6df;
}

.exit-sign.mag {
  background: #6b1568;
  border-color: #ffd1f6;
}

.radio-tag {
  display: inline-block;
  margin: 0 0 0.7rem;
  padding: 0.2rem 0.65rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(7, 20, 31, 0.55);
}

.hero-block h1 {
  font-size: clamp(2.5rem, 7vw, 4.6rem);
  color: #fff;
  text-shadow:
    0 0 24px rgba(62, 224, 255, 0.45),
    3px 4px 0 #041018;
  margin: 0 0 0.35rem;
}

.hero-block h1 span {
  color: var(--cyan);
}

.ticker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.speech {
  position: relative;
  background: #f4fbff;
  color: var(--ink);
  border: 3px solid #041018;
  border-radius: 22px;
  padding: 1rem 1.15rem 1.15rem;
  margin: 0 0 1.2rem;
  box-shadow: 8px 8px 0 rgba(4, 16, 24, 0.65);
}

.speech::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: -16px;
  border-width: 16px 14px 0 0;
  border-style: solid;
  border-color: #f4fbff transparent transparent transparent;
  filter: drop-shadow(3px 3px 0 #041018);
}

.speech p {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.45;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.ca-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem 0.55rem 0.9rem;
  background: rgba(4, 12, 18, 0.72);
  border: 2px solid rgba(62, 224, 255, 0.4);
  border-radius: 14px;
  max-width: 100%;
}

.ca-pill span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  flex: none;
}

.ca-pill code {
  flex: 1;
  min-width: 0;
  color: #fff;
  font-size: 0.78rem;
  overflow-wrap: anywhere;
  background: none;
}

.ca-pill button {
  flex: none;
  border: 0;
  background: var(--navy);
  color: var(--ice);
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

/* ── Hero windshield: full image, never cropped ── */
.windshield {
  margin: 0;
  background: linear-gradient(#1b2732, #0b131b);
  border: 4px solid #e8f4ff;
  border-radius: 18px 18px 10px 10px;
  box-shadow:
    0 0 0 4px #041018,
    0 22px 50px rgba(0, 0, 0, 0.4),
    inset 0 0 0 8px rgba(62, 224, 255, 0.12);
  overflow: visible;
}

.wiper-bar {
  height: 10px;
  background: linear-gradient(90deg, #8ea0b0, #e9f2f8 40%, #8ea0b0);
  border-bottom: 2px solid #041018;
}

.windshield img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #05080c;
}

.dash-cap {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.55rem 0.85rem;
  background:
    linear-gradient(#1a242e, #101820);
  border-top: 2px solid #041018;
  color: var(--chrome);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dash-cap .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dffb0;
  box-shadow: 0 0 8px #3dffb0;
}

/* ── About: panoramic strip + guestbook ── */
.about-block {
  background: linear-gradient(180deg, rgba(7, 20, 31, 0.15), rgba(10, 40, 58, 0.55));
}

.about-head {
  max-width: 42rem;
  margin-bottom: 1.4rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin: 0 0 0.55rem;
}

.lede {
  color: rgba(215, 246, 255, 0.86);
  font-size: 1.05rem;
  margin: 0 0 1rem;
}

.cinemascope {
  margin: 0 0 1.6rem;
  padding: 0.55rem;
  background: #041018;
  border: 3px solid #d7f6ff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cinemascope img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.guestbook {
  background: #f3f8ff;
  color: var(--ink);
  border: 3px solid #041018;
  border-radius: 4px;
  padding: 1.25rem 1.3rem 1.4rem;
  box-shadow: 10px 10px 0 rgba(4, 16, 24, 0.55);
  background-image: repeating-linear-gradient(
    180deg,
    transparent 0 28px,
    rgba(20, 80, 140, 0.08) 28px 29px
  );
}

.guestbook-label {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  font-weight: 800;
}

.guestbook p:last-child {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
}

.vibe-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.vibe-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  background: rgba(7, 20, 31, 0.72);
  border: 2px solid rgba(62, 224, 255, 0.35);
  border-radius: 14px;
}

.vibe-list i {
  font-size: 1.25rem;
  color: var(--gold);
}

.vibe-list strong {
  display: block;
  color: #fff;
}

.vibe-list span {
  color: rgba(215, 246, 255, 0.8);
  font-size: 0.92rem;
}

/* ── How to buy: scoreboard / insert-coin ── */
.buy-block {
  background: linear-gradient(180deg, rgba(18, 28, 22, 0.35), rgba(7, 20, 31, 0.2));
}

.pump-steps {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  counter-reset: none;
}

.pump-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem 0.95rem;
  background: rgba(8, 16, 14, 0.75);
  border: 2px solid #3dffb0;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

.pump-steps .num {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #3dffb0;
  color: #041018;
  font-family: var(--font-display);
}

.pump-steps h3 {
  margin: 0 0 0.15rem;
  font-size: 1rem;
  color: #fff;
}

.pump-steps p {
  margin: 0;
  color: rgba(215, 246, 255, 0.82);
  font-size: 0.95rem;
}

.scoreboard-frame {
  margin: 0;
  background: #05080c;
  border: 6px solid #1c1c1c;
  outline: 3px solid #3dffb0;
  box-shadow: 0 0 28px rgba(61, 255, 176, 0.25);
}

.scoreboard-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.scoreboard-frame figcaption {
  margin: 0;
  padding: 0.55rem 0.8rem;
  background: #04140e;
  color: #3dffb0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Community: neon cabinet ── */
.community-block {
  background: linear-gradient(180deg, rgba(48, 10, 48, 0.28), rgba(7, 20, 31, 0.55));
}

.neon-cabinet {
  margin: 0;
  padding: 0.7rem;
  background: #140816;
  border: 4px solid #ff4fd8;
  box-shadow:
    0 0 0 4px #041018,
    0 0 32px rgba(255, 79, 216, 0.35);
}

.neon-cabinet img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.neon-cabinet figcaption {
  margin: 0;
  padding: 0.55rem 0.2rem 0.1rem;
  text-align: center;
  color: #ffd1f6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.locker {
  background: rgba(10, 8, 16, 0.72);
  border: 3px solid rgba(255, 79, 216, 0.55);
  padding: 1.3rem 1.2rem 1.4rem;
  border-radius: 8px;
}

.locker-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  background: #05080c;
  border: 3px solid var(--cyan);
  border-radius: 18px;
  margin-bottom: 0.9rem;
}

/* ── Footer ── */
.site-foot {
  padding: 1.6rem 0 2.2rem;
  border-top: 3px solid rgba(62, 224, 255, 0.28);
  background: rgba(4, 10, 16, 0.78);
}

.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.disclaimer {
  margin: 0;
  color: rgba(215, 246, 255, 0.6);
  font-size: 0.85rem;
}

.toast-ca {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%) translateY(120%);
  background: #f4fbff;
  color: var(--ink);
  border: 3px solid #041018;
  padding: 0.55rem 0.9rem;
  font-weight: 800;
  z-index: 80;
  opacity: 0;
  transition: 0.2s ease;
}

.toast-ca.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 991.98px) {
  .nav-actions {
    margin: 0.75rem 0 0.4rem;
  }

  .block {
    padding: 3.2rem 0 2.6rem;
  }

  .hero-block h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }
}

@media (max-width: 575.98px) {
  .ca-pill {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .world .palm {
    display: none;
  }
}
