:root {
  --night: #120708;
  --blackberry: #241015;
  --lacquer: #331318;
  --cream: #fff2d3;
  --paper: #f8e5bd;
  --muted: #cda97d;
  --cherry: #ff2f5d;
  --citrus: #ffd23f;
  --lime: #a6f45f;
  --melon: #22d28f;
  --aqua: #3ed7d2;
  --grape: #8d5cff;
  --shadow: rgba(0, 0, 0, 0.38);
  --line: rgba(255, 242, 211, 0.18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 76px),
    linear-gradient(135deg, #120708 0%, #1e0c10 42%, #2b1015 100%);
  font-family: var(--font-body);
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 210, 63, 0.06), transparent 22%, rgba(34, 210, 143, 0.05) 58%, transparent),
    repeating-linear-gradient(135deg, transparent 0 26px, rgba(255, 242, 211, 0.035) 27px 28px);
  mix-blend-mode: screen;
  z-index: -1;
}

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

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  padding: 10px;
  border: 1px solid rgba(255, 242, 211, 0.16);
  border-radius: 8px;
  background: rgba(18, 7, 8, 0.82);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  padding: 3px;
  border: 1px solid rgba(255, 242, 211, 0.28);
  border-radius: 8px;
  background: rgba(255, 242, 211, 0.08);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.brand-copy strong {
  font-size: 0.95rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(255, 242, 211, 0.12);
  border-radius: 8px;
  background: rgba(255, 242, 211, 0.05);
}

.nav-links a,
.nav-cta,
.primary-button,
.ghost-button,
.mini-action {
  min-height: 42px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-links a {
  display: grid;
  place-items: center;
  min-width: 78px;
  padding: 0 14px;
  color: rgba(255, 242, 211, 0.78);
  font-size: 0.88rem;
}

.nav-links a:hover {
  color: var(--night);
  background: var(--cream);
}

.nav-cta {
  justify-self: end;
  display: grid;
  place-items: center;
  min-width: 96px;
  padding: 0 18px;
  color: var(--night);
  background: var(--cherry);
  box-shadow: 0 12px 34px rgba(255, 47, 93, 0.24);
}

.nav-cta:hover,
.primary-button:hover,
.ghost-button:hover,
.mini-action:hover {
  transform: translateY(-2px);
}

.section {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(300px, 1fr);
  grid-template-rows: auto auto;
  gap: 48px;
  align-items: center;
  min-height: 100svh;
  padding: 128px 0 64px;
}

.hero::after {
  content: "";
  position: absolute;
  right: 38%;
  bottom: 56px;
  width: 32vw;
  height: 18px;
  border-radius: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 210, 63, 0.52), rgba(34, 210, 143, 0.54), transparent);
  filter: blur(18px);
  opacity: 0.72;
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  max-width: 720px;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.eyebrow span {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 242, 211, 0.18);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(255, 242, 211, 0.07);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.split-heading h2,
.rooms h2,
.season h2,
.care h2,
.join h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.88;
}

.hero h1 {
  max-width: none;
  font-size: 7.1rem;
}

.hero h1 span {
  display: block;
  word-spacing: 0.08em;
  white-space: nowrap;
}

.hero-lede {
  width: min(590px, 100%);
  margin: 28px 0 0;
  color: rgba(255, 242, 211, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
}

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

.primary-button,
.ghost-button {
  display: inline-grid;
  place-items: center;
  min-height: 54px;
  padding: 0 22px;
}

.primary-button {
  color: var(--night);
  background: linear-gradient(135deg, var(--citrus), var(--lime));
  box-shadow: 0 18px 50px rgba(166, 244, 95, 0.18);
}

.ghost-button {
  border: 1px solid rgba(255, 242, 211, 0.2);
  color: var(--cream);
  background: rgba(255, 242, 211, 0.07);
}

.hero-proof {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(640px, 100%);
  margin-top: 0;
}

.hero-proof span {
  display: grid;
  gap: 8px;
  min-height: 110px;
  padding: 16px;
  border: 1px solid rgba(255, 242, 211, 0.14);
  border-radius: 8px;
  color: rgba(255, 242, 211, 0.62);
  background: rgba(255, 242, 211, 0.045);
  font-size: 0.82rem;
  line-height: 1.35;
}

.hero-proof strong {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 0.9;
}

.hero-mascot {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  justify-items: center;
  min-height: 680px;
}

.mascot-glow {
  position: absolute;
  inset: 8% -12% 3%;
  background:
    radial-gradient(circle at 46% 32%, rgba(255, 210, 63, 0.24), transparent 28%),
    radial-gradient(circle at 68% 62%, rgba(34, 210, 143, 0.22), transparent 34%),
    radial-gradient(circle at 34% 72%, rgba(255, 47, 93, 0.24), transparent 32%);
  filter: blur(24px);
}

.mascot-frame {
  position: relative;
  display: grid;
  align-content: end;
  width: min(520px, 100%);
  min-height: 650px;
  margin: 0;
}

.mascot-frame::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 7%;
  left: 12%;
  height: 20px;
  background: linear-gradient(90deg, transparent, rgba(166, 244, 95, 0.55), rgba(255, 47, 93, 0.42), transparent);
  filter: blur(18px);
}

.mascot-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 690px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 8px;
  filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.48));
  mask-image: radial-gradient(ellipse at 52% 52%, #000 0 58%, rgba(0, 0, 0, 0.9) 72%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at 52% 52%, #000 0 58%, rgba(0, 0, 0, 0.9) 72%, transparent 100%);
}

.mascot-frame figcaption,
.mascot-chip {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 242, 211, 0.18);
  border-radius: 8px;
  background: rgba(18, 7, 8, 0.7);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.mascot-frame figcaption {
  right: 0;
  bottom: 18%;
  display: grid;
  gap: 5px;
  max-width: 190px;
  padding: 14px;
}

.mascot-frame figcaption span,
.mascot-chip {
  color: var(--citrus);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mascot-frame figcaption strong {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 0.95;
}

.mascot-chip {
  padding: 10px 12px;
}

.chip-one {
  top: 24%;
  left: -4%;
}

.chip-two {
  right: 2%;
  bottom: 7%;
}

.play-section {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(380px, 0.72fr);
  gap: 54px;
  align-items: center;
  padding: 92px 0 112px;
}

.play-section::before {
  content: "";
  position: absolute;
  inset: 42px -32px 34px;
  border: 1px solid rgba(255, 242, 211, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(255, 47, 93, 0.16), transparent 38%),
    linear-gradient(270deg, rgba(62, 215, 210, 0.12), transparent 44%),
    rgba(255, 242, 211, 0.025);
  pointer-events: none;
}

.play-copy,
.game-stage {
  position: relative;
  z-index: 1;
}

.play-copy h2 {
  max-width: 560px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 4.9rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.88;
}

.play-copy p {
  max-width: 450px;
  margin: 24px 0 0;
  color: rgba(255, 242, 211, 0.72);
  font-size: 1.06rem;
  line-height: 1.65;
}

.play-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin-top: 34px;
}

.play-notes span {
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(255, 242, 211, 0.14);
  border-radius: 8px;
  color: rgba(255, 242, 211, 0.72);
  background: rgba(18, 7, 8, 0.44);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.game-stage {
  display: grid;
  justify-items: center;
}

.game-stage .game-cabinet {
  width: min(500px, 100%);
}

.cabinet-glow {
  position: absolute;
  inset: 5% -10% 6%;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 47, 93, 0.24), rgba(255, 210, 63, 0.18), rgba(62, 215, 210, 0.2));
  filter: blur(34px);
}

.game-cabinet {
  position: relative;
  width: min(440px, 100%);
  padding: 16px;
  border: 1px solid rgba(255, 242, 211, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 242, 211, 0.12), transparent 20%),
    linear-gradient(145deg, #3b141c, #17090b 52%, #0c0506);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.game-cabinet::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(255, 242, 211, 0.06) 16% 17%, transparent 17% 55%, rgba(255, 242, 211, 0.045) 55% 56%, transparent 56%),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(255, 255, 255, 0.035) 23px 24px);
}

.cabinet-top,
.game-status,
.bet-panel,
.cabinet-bottom {
  position: relative;
  z-index: 1;
}

.cabinet-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 14px;
}

.cabinet-kicker {
  margin: 0 0 3px;
  color: var(--citrus);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cabinet-top h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 2.05rem;
  line-height: 0.95;
}

.coin-badge {
  display: grid;
  min-width: 104px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 210, 63, 0.38);
  border-radius: 8px;
  color: var(--night);
  background: linear-gradient(135deg, var(--citrus), #fff0a3);
  text-align: right;
  box-shadow: 0 16px 40px rgba(255, 210, 63, 0.14);
}

.coin-badge span {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.coin-badge small {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.slot-window {
  position: relative;
  z-index: 1;
  padding: 12px;
  border: 1px solid rgba(255, 242, 211, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 242, 211, 0.1), transparent),
    #090405;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.payline {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  z-index: 2;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--citrus), var(--cherry), transparent);
  box-shadow: 0 0 24px rgba(255, 47, 93, 0.75);
  transform: translateY(-50%);
  pointer-events: none;
}

.reels {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.reel {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.symbol {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 242, 211, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 242, 211, 0.12), rgba(255, 242, 211, 0.02)),
    rgba(255, 242, 211, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.symbol img {
  width: clamp(34px, 5.4vw, 54px);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.32));
  transform: translateZ(0);
}

.reel.is-spinning .symbol img {
  animation: fruit-shake 120ms linear infinite;
}

.symbol.is-win {
  border-color: rgba(255, 210, 63, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 210, 63, 0.22), rgba(255, 47, 93, 0.1)),
    rgba(255, 242, 211, 0.08);
  box-shadow: 0 0 24px rgba(255, 210, 63, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

@keyframes fruit-shake {
  0% {
    transform: translateY(-4px) rotate(-5deg);
  }
  50% {
    transform: translateY(4px) rotate(4deg);
  }
  100% {
    transform: translateY(-4px) rotate(-5deg);
  }
}

.game-status {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 46px;
  margin: 12px 0;
  padding: 0 12px;
  border: 1px solid rgba(255, 242, 211, 0.13);
  border-radius: 8px;
  color: rgba(255, 242, 211, 0.78);
  background: rgba(255, 242, 211, 0.055);
  font-size: 0.86rem;
  font-weight: 800;
}

#multiplierText {
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 28px;
  border-radius: 8px;
  color: var(--night);
  background: var(--lime);
}

.bet-panel {
  display: grid;
  grid-template-columns: 46px minmax(84px, 1fr) 46px minmax(120px, 1.25fr);
  gap: 8px;
}

.stepper,
.spin-button,
.mini-action {
  border: 0;
  cursor: pointer;
}

.stepper {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid rgba(255, 242, 211, 0.18);
  border-radius: 8px;
  color: var(--cream);
  background: rgba(255, 242, 211, 0.08);
  font-size: 1.45rem;
  font-weight: 900;
}

.stepper:hover {
  background: rgba(255, 242, 211, 0.16);
}

.bet-readout {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid rgba(255, 242, 211, 0.18);
  border-radius: 8px;
  background: rgba(255, 242, 211, 0.08);
  line-height: 1;
}

.bet-readout span {
  font-weight: 900;
}

.bet-readout small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spin-button {
  min-height: 48px;
  border-radius: 8px;
  color: var(--night);
  background:
    linear-gradient(135deg, var(--cherry), #ff8b62 52%, var(--citrus));
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(255, 47, 93, 0.22);
}

.spin-button:disabled,
.stepper:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.cabinet-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  color: rgba(255, 242, 211, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-action {
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(255, 242, 211, 0.16);
  color: var(--cream);
  background: rgba(255, 242, 211, 0.06);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.payout-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(500px, 100%);
  margin-top: 12px;
}

.payout-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 242, 211, 0.13);
  border-radius: 8px;
  color: rgba(255, 242, 211, 0.68);
  background: rgba(18, 7, 8, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
}

.payout-strip img {
  width: 21px;
}

.product,
.rooms,
.season,
.care,
.join {
  padding: clamp(76px, 10vw, 132px) 0;
}

.section-label {
  margin-bottom: 18px;
  color: var(--citrus);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.48fr);
  gap: clamp(24px, 6vw, 88px);
  align-items: end;
}

.split-heading h2,
.rooms h2,
.season h2,
.care h2,
.join h2 {
  font-size: clamp(2.5rem, 6vw, 5.8rem);
}

.split-heading p,
.rooms-copy p,
.season-top p,
.care-copy p,
.join p {
  margin: 0;
  color: rgba(255, 242, 211, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.65;
}

.fruit-marquee {
  position: relative;
  margin: 56px 0 24px;
  padding: 18px 0;
  border-block: 1px solid rgba(255, 242, 211, 0.14);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: clamp(24px, 5vw, 58px);
  animation: fruit-roll 22s linear infinite;
}

.marquee-track img {
  width: clamp(54px, 8vw, 96px);
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.36));
}

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

.floor-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr 0.86fr;
  gap: 14px;
  align-items: stretch;
}

.floor-note {
  min-height: 230px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 242, 211, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 242, 211, 0.11), rgba(255, 242, 211, 0.035)),
    rgba(255, 242, 211, 0.035);
}

.floor-note:nth-child(1) {
  border-color: rgba(255, 47, 93, 0.28);
}

.floor-note:nth-child(2) {
  border-color: rgba(34, 210, 143, 0.34);
}

.floor-note:nth-child(3) {
  border-color: rgba(255, 210, 63, 0.3);
}

.floor-note.is-tall {
  min-height: 310px;
}

.floor-note span {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.floor-note strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.3vw, 2.3rem);
  line-height: 1.05;
}

.rooms {
  width: 100%;
  padding-inline: max(16px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(255, 47, 93, 0.1), transparent 28%),
    linear-gradient(180deg, transparent, rgba(255, 242, 211, 0.05), transparent);
}

.rooms-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
}

.rooms-copy {
  max-width: 520px;
}

.rooms-copy p {
  margin-top: 24px;
}

.lounge-board {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 14px;
  min-height: 490px;
}

.room-ticket {
  align-self: start;
  min-height: 178px;
  padding: 18px;
  border: 1px solid rgba(255, 242, 211, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 242, 211, 0.13), rgba(255, 242, 211, 0.04)),
    rgba(18, 7, 8, 0.62);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.ticket-large {
  grid-row: span 2;
  min-height: 360px;
  padding: 24px;
  background:
    linear-gradient(140deg, rgba(255, 47, 93, 0.24), transparent 44%),
    linear-gradient(320deg, rgba(34, 210, 143, 0.18), transparent 52%),
    rgba(18, 7, 8, 0.72);
}

.ticket-offset {
  transform: translateY(54px);
}

.room-tag {
  display: inline-grid;
  place-items: center;
  min-height: 29px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--night);
  background: var(--citrus);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.room-ticket strong {
  display: block;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 3.25rem);
  line-height: 0.95;
}

.room-ticket small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 242, 211, 0.64);
  font-size: 0.86rem;
  font-weight: 800;
}

.chat-rail {
  position: absolute;
  right: 7%;
  bottom: 10px;
  left: 20%;
  display: grid;
  gap: 8px;
}

.chat-rail span {
  width: fit-content;
  max-width: 100%;
  min-height: 38px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 242, 211, 0.13);
  border-radius: 8px;
  color: rgba(255, 242, 211, 0.78);
  background: rgba(255, 242, 211, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
  font-weight: 800;
}

.chat-rail span:nth-child(2) {
  margin-left: auto;
}

.season-top {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.44fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: end;
}

.season-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.9fr 1fr;
  gap: 14px;
  min-height: 380px;
  margin-top: 50px;
}

.season-map::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--cherry), var(--citrus), var(--melon), var(--grape));
  opacity: 0.68;
}

.season-step {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgba(255, 242, 211, 0.16);
  border-radius: 8px;
  background: rgba(18, 7, 8, 0.74);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.season-step::after {
  content: "";
  width: 34px;
  aspect-ratio: 1;
  border: 4px solid var(--night);
  border-radius: 8px;
  background: var(--citrus);
  box-shadow: 0 0 0 1px rgba(255, 242, 211, 0.2), 0 0 34px rgba(255, 210, 63, 0.3);
}

.season-step span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.season-step strong {
  max-width: 190px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.7rem);
  line-height: 0.94;
}

.step-one {
  align-self: start;
}

.step-two {
  align-self: end;
  border-color: rgba(255, 210, 63, 0.32);
}

.step-three {
  align-self: start;
  border-color: rgba(141, 92, 255, 0.34);
}

.step-four {
  align-self: end;
  border-color: rgba(62, 215, 210, 0.34);
}

.care-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 0.62fr);
  gap: clamp(24px, 7vw, 96px);
  align-items: start;
}

.care-copy p {
  margin-top: 24px;
}

.care-ledger {
  display: grid;
  border: 1px solid rgba(255, 242, 211, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 242, 211, 0.06);
}

.care-ledger div {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 14px;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 242, 211, 0.12);
}

.care-ledger div:last-child {
  border-bottom: 0;
}

.care-ledger span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.care-ledger strong {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.disclaimer-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 0.72fr);
  gap: clamp(22px, 5vw, 68px);
  margin-top: 52px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(255, 210, 63, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(125deg, rgba(255, 210, 63, 0.08), transparent 48%),
    rgba(255, 242, 211, 0.045);
}

.disclaimer-panel h3 {
  max-width: 420px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.94;
}

.disclaimer-panel p {
  margin: 0;
  color: rgba(255, 242, 211, 0.72);
  font-size: 0.96rem;
  line-height: 1.72;
}

.join-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(210px, 0.38fr) minmax(280px, 0.5fr);
  gap: clamp(20px, 4vw, 52px);
  align-items: center;
  padding: clamp(22px, 5vw, 54px);
  min-height: 520px;
  border: 1px solid rgba(255, 242, 211, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(100deg, rgba(255, 47, 93, 0.28), transparent 42%),
    linear-gradient(280deg, rgba(166, 244, 95, 0.16), transparent 48%),
    #16090b;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.care-cta {
  margin-top: 92px;
}

.join-copy {
  position: relative;
  z-index: 2;
}

.join-copy .primary-button {
  width: fit-content;
  margin-top: 28px;
}

.join-copy p,
.legal-copy p {
  margin: 24px 0 0;
  color: rgba(255, 242, 211, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.65;
}

.join .section-label,
.join-copy .section-label {
  margin-bottom: 16px;
}

.join h2,
.join-copy h2 {
  max-width: 700px;
}

.join-legal {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 242, 211, 0.14);
  border-radius: 8px;
  background: rgba(18, 7, 8, 0.46);
}

.join-legal strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
}

.join-legal span {
  color: rgba(255, 242, 211, 0.68);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
}

.join-character {
  position: relative;
  z-index: 1;
  align-self: end;
  display: grid;
  place-items: end center;
  min-height: 470px;
  margin: -28px -24px -62px 0;
}

.join-character::before {
  content: "";
  position: absolute;
  right: 9%;
  bottom: 9%;
  width: 62%;
  height: 22px;
  background: linear-gradient(90deg, transparent, rgba(166, 244, 95, 0.62), rgba(255, 47, 93, 0.44), transparent);
  filter: blur(18px);
}

.join-character img {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  filter: drop-shadow(0 32px 58px rgba(0, 0, 0, 0.48));
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-cookie {
  border: 0;
  padding: 0;
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.cookie-modal {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: min(420px, calc(100% - 36px));
  background: transparent;
  pointer-events: none;
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-card {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 242, 211, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 47, 93, 0.16), transparent 52%),
    rgba(18, 7, 8, 0.96);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
  pointer-events: auto;
  backdrop-filter: blur(16px);
}

.cookie-copy .section-label {
  margin-bottom: 8px;
}

.cookie-copy h2 {
  max-width: 320px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 0.98;
}

.cookie-copy p {
  max-width: 350px;
  margin: 10px 0 0;
  color: rgba(255, 242, 211, 0.72);
  font-size: 0.86rem;
  line-height: 1.45;
}

.cookie-copy a {
  display: inline-block;
  margin-top: 10px;
  color: var(--citrus);
  font-size: 0.86rem;
  font-weight: 900;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cookie-actions .primary-button,
.cookie-actions .ghost-button {
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  cursor: pointer;
  font-size: 0.86rem;
  white-space: nowrap;
}

.legal-main {
  padding: 128px 0 70px;
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.52fr);
  gap: clamp(24px, 6vw, 84px);
  align-items: end;
  padding: 56px 0 40px;
}

.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.88;
}

.legal-hero p,
.legal-content p {
  color: rgba(255, 242, 211, 0.74);
  line-height: 1.72;
}

.legal-hero div > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.legal-content {
  display: grid;
  gap: 20px;
  max-width: 920px;
  padding: 34px;
  border: 1px solid rgba(255, 242, 211, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 47, 93, 0.08), transparent 42%),
    rgba(255, 242, 211, 0.04);
}

.legal-content h2 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 0.96;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0;
  font-size: 1rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 42px;
  border-top: 1px solid rgba(255, 242, 211, 0.14);
  color: rgba(255, 242, 211, 0.56);
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--cream);
  font-weight: 900;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .play-section,
  .split-heading,
  .rooms-layout,
  .season-top,
  .care-grid,
  .join-panel,
  .disclaimer-panel,
  .legal-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 40px;
    padding-top: 118px;
  }

  .hero-copy,
  .hero-mascot,
  .hero-proof {
    grid-column: auto;
    grid-row: auto;
  }

  .hero h1 {
    font-size: 5.35rem;
  }

  .hero-mascot {
    min-height: 560px;
  }

  .mascot-frame {
    min-height: 540px;
  }

  .play-section {
    gap: 34px;
  }

  .play-copy h2 {
    font-size: 4rem;
  }

  .hero-proof,
  .play-notes,
  .floor-grid,
  .season-map {
    grid-template-columns: 1fr 1fr;
  }

  .floor-note.is-tall {
    min-height: 230px;
  }

  .season-map {
    min-height: auto;
  }

  .season-map::before {
    display: none;
  }

  .season-step,
  .step-one,
  .step-two,
  .step-three,
  .step-four {
    align-self: stretch;
  }

  .join-panel {
    align-items: start;
  }

  .join-panel .primary-button {
    justify-self: start;
  }

  .join-panel {
    min-height: auto;
  }

  .join-character {
    justify-self: center;
    width: min(420px, 100%);
    min-height: 360px;
    margin: -16px auto -58px;
  }

}

@media (max-width: 680px) {
  .topbar {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
  }

  .brand-mark {
    width: 38px;
  }

  .brand-copy small {
    display: none;
  }

  .nav-cta {
    min-width: 78px;
    min-height: 38px;
    padding: 0 12px;
  }

  .section,
  .footer {
    width: min(100% - 20px, 1180px);
  }

  .hero {
    min-height: auto;
    gap: 24px;
    padding: 96px 0 46px;
    overflow: clip;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12.4vw, 3.1rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
  }

  .hero-proof span {
    min-height: 74px;
  }

  .hero-mascot {
    min-height: 310px;
    overflow: clip;
  }

  .mascot-glow {
    inset: 8% 0 3%;
  }

  .mascot-frame {
    width: min(100%, 310px);
    min-height: 300px;
  }

  .mascot-frame img {
    max-height: 320px;
  }

  .mascot-frame figcaption {
    right: 2px;
    bottom: 9%;
    max-width: 148px;
    padding: 12px;
  }

  .mascot-frame figcaption strong {
    font-size: 1.05rem;
  }

  .mascot-chip {
    display: none;
  }

  .play-section {
    padding: 66px 0 74px;
    overflow: clip;
  }

  .play-section::before {
    inset: 24px 0 22px;
  }

  .game-stage {
    overflow: clip;
  }

  .cabinet-glow {
    inset: 8% 0 8%;
  }

  .play-copy h2 {
    font-size: 3rem;
  }

  .play-copy p {
    font-size: 1rem;
  }

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

  .play-notes span {
    min-height: 54px;
  }

  .game-cabinet {
    padding: 12px;
  }

  .cabinet-top h2 {
    font-size: 1.65rem;
  }

  .coin-badge {
    min-width: 88px;
  }

  .reels {
    gap: 6px;
  }

  .reel {
    gap: 6px;
  }

  .symbol img {
    width: 38px;
  }

  .bet-panel {
    grid-template-columns: 42px 1fr 42px;
  }

  .spin-button {
    grid-column: 1 / -1;
  }

  .cabinet-bottom,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .payout-strip {
    justify-content: flex-start;
  }

  .product,
  .rooms,
  .season,
  .care,
  .join {
    padding: 66px 0;
  }

  .disclaimer-panel {
    margin-top: 38px;
    padding: 18px;
  }

  .disclaimer-panel p {
    font-size: 0.9rem;
  }

  .care-cta {
    margin-top: 52px;
  }

  .join-panel {
    gap: 18px;
    padding: 20px;
  }

  .join-copy .primary-button {
    width: 100%;
  }

  .join-legal {
    order: 3;
  }

  .join-character {
    order: 2;
    min-height: 300px;
    margin: -12px auto -48px;
  }

  .join-character img {
    width: min(270px, 100%);
  }

  .cookie-modal {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
  }

  .cookie-card {
    padding: 14px;
  }

  .cookie-copy h2 {
    font-size: 1.35rem;
  }

  .cookie-copy p {
    font-size: 0.82rem;
  }

  .cookie-actions {
    gap: 8px;
  }

  .cookie-actions .primary-button,
  .cookie-actions .ghost-button {
    min-height: 40px;
    padding: 0 9px;
    font-size: 0.76rem;
  }

  .legal-main {
    padding-top: 94px;
  }

  .legal-hero {
    padding: 34px 0 18px;
  }

  .legal-hero h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .legal-content {
    padding: 20px;
  }

  .split-heading h2,
  .rooms h2,
  .season h2,
  .care h2,
  .join h2 {
    font-size: clamp(2.25rem, 14vw, 3.8rem);
  }

  .fruit-marquee {
    margin-top: 38px;
  }

  .floor-grid,
  .lounge-board,
  .season-map,
  .care-ledger div {
    grid-template-columns: 1fr;
  }

  .lounge-board {
    min-height: auto;
  }

  .ticket-large,
  .room-ticket {
    min-height: 190px;
  }

  .ticket-offset {
    transform: none;
  }

  .chat-rail {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 4px;
  }

  .season-step {
    min-height: 176px;
  }
}
