:root {
  --void: #050506;
  --ink: #0b0b0c;
  --panel: #14141a;
  --panel-2: #1b1b22;
  --line: rgba(245, 243, 242, 0.12);
  --line-strong: rgba(245, 243, 242, 0.22);
  --red: #ff2e3d;
  --red-hot: #e11020;
  --red-deep: #8e0a14;
  --gold: #f0c75e;
  --cream: #f5f3f2;
  --muted: #8b8b93;
  --dim: #5c5c64;
  --gutter: clamp(0.7rem, 4.2vw, 1.35rem);
  --space-xs: clamp(0.3rem, 1.1vw, 0.5rem);
  --space-sm: clamp(0.45rem, 1.5vw, 0.75rem);
  --space-md: clamp(0.7rem, 2.2vw, 1.1rem);
  --space-lg: clamp(1rem, 3.2vw, 1.6rem);
  --space-xl: clamp(1.5rem, 5vw, 3.5rem);
  --radius: clamp(0.7rem, 2vw, 1.15rem);
  --radius-lg: clamp(0.9rem, 2.8vw, 1.65rem);
  --fs-2xs: clamp(0.62rem, 1.7vw, 0.72rem);
  --fs-xs: clamp(0.68rem, 1.9vw, 0.78rem);
  --fs-sm: clamp(0.75rem, 2.1vw, 0.88rem);
  --fs-md: clamp(0.86rem, 2.3vw, 1rem);
  --fs-lg: clamp(0.95rem, 2.6vw, 1.15rem);
  --wrap: min(71.25rem, calc(100% - 2 * var(--gutter)));
  --wrap-narrow: min(47.5rem, calc(100% - 2 * var(--gutter)));
  --shadow: 0 1.75rem 3.75rem -1.75rem rgba(0, 0, 0, 0.85);
  --font: Barlow, Helvetica, sans-serif;
  --display: "Archivo Black", Barlow, sans-serif;
}

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

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

h1, h2, .section { scroll-margin-top: 4.5rem; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--void);
  color: var(--cream);
  font-family: var(--font);
  min-height: 100%;
  max-width: 100%;
}

body {
  position: relative;
  background:
    radial-gradient(120% 80% at 88% -10%, rgba(225, 16, 32, 0.28), transparent 55%),
    radial-gradient(90% 60% at -10% 18%, rgba(245, 243, 242, 0.08), transparent 50%),
    var(--void);
}

a { color: var(--red); text-decoration: none; }
img, svg, video, iframe {
  max-width: 100%;
  height: auto;
}
button, input { font-family: inherit; max-width: 100%; }

.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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5rem);
  animation: halo 6s ease-in-out infinite;
}

.orb-a {
  top: -8%;
  right: -10%;
  width: min(40%, 17.5rem);
  height: min(40%, 17.5rem);
  background: radial-gradient(closest-side, rgba(255, 46, 61, 0.4), transparent);
}

.orb-b {
  top: 40%;
  left: -12%;
  width: min(32%, 13.75rem);
  height: min(32%, 13.75rem);
  background: radial-gradient(closest-side, rgba(240, 199, 94, 0.12), transparent);
  animation-delay: -2s;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
  min-width: 0;
}

.wrap-narrow { width: var(--wrap-narrow); }

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm) var(--space-md);
  padding: var(--space-sm) var(--gutter);
  width: auto;
  background: rgba(11, 11, 12, 0.78);
  border-bottom: 1px solid rgba(255, 46, 61, 0.22);
  backdrop-filter: blur(1rem);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55em;
  color: var(--cream);
  min-width: 0;
}
.brand-logo {
  height: clamp(1.7rem, 8vw, 2.4rem);
  width: auto;
  max-width: min(10.5rem, 42vw);
  display: block;
}

.topbar-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs) var(--space-md);
  min-width: 0;
  flex: 1 1 auto;
}

.topbar-nav a {
  color: var(--muted);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.topbar-nav a:hover { color: var(--cream); }

.topbar-actions {
  margin-left: auto;
  display: flex;
  gap: var(--space-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0.03em;
  max-width: 100%;
  transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover { transform: translateY(-0.08em); filter: brightness(1.06); }
.btn:active { transform: translateY(0); }
.btn:disabled { cursor: not-allowed; transform: none; filter: none; }

.btn-sm { padding: 0.55em 0.9em; font-size: var(--fs-sm); }
.btn-lg {
  padding: 0.85em 1.15em;
  font-size: var(--fs-lg);
  min-height: 2.9em;
}
.btn-primary { background: var(--red); color: #fff1f1; box-shadow: 0 0.9rem 2rem -0.75rem rgba(255, 46, 61, 0.65); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid var(--line-strong); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-spin {
  width: 100%;
  font-family: var(--display);
  font-size: clamp(0.95rem, 3.4vw, 1.15rem);
  padding: 0.75em;
  letter-spacing: 0.04em;
}

.shine { position: relative; overflow: hidden; }
.shine::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  animation: shine 3.4s ease-in-out infinite;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: clamp(4.25rem, 18vw, 5.75rem);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 4rem 0 2.6rem auto;
  width: min(46vw, 35rem);
  background: url("../img/slot-banner.webp") center / cover no-repeat;
  opacity: 0.22;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent, #000 35%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 35%);
}

.hero-grid {
  width: var(--wrap);
  margin: auto;
  padding: var(--space-lg) 0 var(--space-xl);
  display: grid;
  gap: var(--space-xl);
  align-items: center;
  min-width: 0;
}

.hero-copy { display: flex; flex-direction: column; gap: var(--space-md); min-width: 0; }

.pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  max-width: 100%;
  padding: 0.4em 0.85em;
  border-radius: 999px;
  background: rgba(255, 46, 61, 0.14);
  border: 1px solid rgba(255, 46, 61, 0.45);
  font-size: var(--fs-2xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff9aa0;
}

.pill-win {
  background: var(--red);
  border: 0;
  color: #fff1f1;
}

.dot {
  width: 0.45em;
  height: 0.45em;
  flex: none;
  border-radius: 50%;
  background: var(--red-hot);
  animation: blink 1.25s infinite;
  display: inline-block;
}

.jackpot-row {
  display: flex;
  align-items: baseline;
  gap: 0.6em;
  flex-wrap: wrap;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.jackpot-row strong {
  font-family: var(--display);
  font-size: clamp(1.15rem, 4.5vw, 1.75rem);
  letter-spacing: -0.03em;
  color: var(--gold);
  text-shadow: 0 0 1.5rem rgba(240, 199, 94, 0.35);
  overflow-wrap: anywhere;
}

h1, h2, h3 { margin: 0; overflow-wrap: break-word; }
h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.55rem, 7.2vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
h1 em {
  font-style: normal;
  background: linear-gradient(180deg, #ff6b72, var(--red-hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.4rem, 5.4vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.lede {
  margin: 0;
  max-width: 42ch;
  font-size: clamp(0.92rem, 2.2vw, 1.125rem);
  line-height: 1.5;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-top: 0.25em;
}
.hero-cta .btn { flex: 1 1 10rem; }

.winner-chip {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 0.55em;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 0.5em 0.8em;
  border-radius: 999px;
  background: rgba(245, 243, 242, 0.05);
  border: 1px solid var(--line);
  font-size: var(--fs-sm);
}

.winner-chip b { color: var(--red); font-weight: 800; }
.winner-chip span:nth-of-type(2) { color: var(--muted); }
.winner-chip i { width: 1px; height: 0.9em; background: var(--line-strong); }
.winner-chip small {
  color: var(--dim);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: var(--fs-2xs);
}

.hero-slot {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.slot {
  position: relative;
  width: min(18.75rem, 100%);
  max-width: 100%;
  display: flex;
  align-items: center;
  animation: floatY 6s ease-in-out infinite;
}

.slot-halo {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(closest-side, rgba(225, 16, 32, 0.42), transparent);
  pointer-events: none;
}

.cabinet {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  padding: clamp(0.85rem, 3.5vw, 1.35rem) clamp(0.7rem, 3vw, 1rem) clamp(0.7rem, 3vw, 1.1rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 18%),
    linear-gradient(165deg, #26262e, #0e0e12 72%);
  border: 1px solid rgba(245, 243, 242, 0.16);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.08);
}

.cabinet.is-won {
  box-shadow:
    0 0 0 2px rgba(255, 46, 61, 0.7),
    0 1.9rem 4.1rem -1.5rem rgba(255, 46, 61, 0.55);
}

.cabinet-lights {
  position: absolute;
  inset: 0.45em 0.6em auto;
  height: 0.5em;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.cabinet-lights::before,
.cabinet-lights::after {
  content: "";
  width: 0.45em;
  height: 0.45em;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffd0d3, var(--red-hot));
  box-shadow:
    1.4em 0 0 var(--red),
    2.75em 0 0 var(--red-hot),
    4.1em 0 0 var(--red);
  animation: blink 1.6s infinite;
}

.cabinet-lights::after {
  box-shadow:
    -1.4em 0 0 var(--red),
    -2.75em 0 0 var(--red-hot),
    -4.1em 0 0 var(--red);
  animation-delay: 0.4s;
}

.cabinet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4em;
  flex-wrap: wrap;
  padding: 0.1em 0.25em 0.7em;
  font-family: var(--display);
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  color: #ff6b72;
}

.chip {
  padding: 0.3em 0.6em;
  border-radius: 0.45em;
  background: rgba(245, 243, 242, 0.1);
  font-size: var(--fs-2xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e4e4e6;
  max-width: 100%;
}

.chip-dark { background: rgba(0,0,0,.35); color: #ffd9db; }
.chip-red { background: rgba(255,46,61,.18); color: #ff9aa0; }

.reels-frame {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45em;
  padding: 0.55em;
  border-radius: var(--radius);
  background: #08080a;
  border: 1px solid rgba(245, 243, 242, 0.1);
  box-shadow: inset 0 0.6rem 1.5rem rgba(0,0,0,.55);
}

.payline {
  position: absolute;
  left: 0.4em;
  right: 0.4em;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,46,61,.85), transparent);
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 0 0.6rem rgba(255,46,61,.6);
}

.reel-window {
  height: clamp(3.4rem, 22vw, 5.75rem);
  overflow: hidden;
  border-radius: 0.7em;
  background: linear-gradient(180deg, #fff, #efeaea);
  box-shadow: inset 0 -0.5em 0.75rem rgba(0,0,0,.08);
}

.reel { will-change: transform; }
.symbol {
  height: clamp(3.4rem, 22vw, 5.75rem);
  display: grid;
  place-items: center;
  padding: 6%;
}
.symbol svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 0.2em 0.2em rgba(0,0,0,.28)); }

.slot-status {
  margin: 0;
  min-height: 2.4em;
  display: grid;
  place-items: center;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.lever {
  position: relative;
  z-index: 3;
  flex: 0 0 12%;
  width: 12%;
  min-width: 1.7rem;
  max-width: 2.4rem;
  margin-left: -1%;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.lever-arm {
  position: relative;
  width: 100%;
  height: clamp(5.5rem, 36vw, 8.25rem);
  transform-origin: 50% 100%;
  transition: transform 0.3s cubic-bezier(.22, 1.2, .4, 1);
}

.lever-knob {
  position: absolute;
  left: 50%;
  top: 0;
  width: 74%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 26%, #ff8a90 0%, #e11020 42%, #8e0a14 78%, #4a050b 100%);
  box-shadow: 0 0.5em 1em -0.25em rgba(0,0,0,.8), inset 0 -0.2em 0.4em rgba(0,0,0,.55);
}

.lever-collar {
  position: absolute;
  left: 50%;
  top: 22%;
  width: 26%;
  height: 7%;
  transform: translateX(-50%);
  border-radius: 0.15em;
  background: linear-gradient(90deg, #4a4a50, #c9c9d2 38%, #f2f2f5 50%, #9a9aa2 66%, #33333a);
}

.lever-rod {
  position: absolute;
  left: 50%;
  top: 28%;
  width: 18%;
  height: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2e2e34 0%, #8e8e98 26%, #ededf2 46%, #b4b4be 62%, #5a5a62 82%, #26262b 100%);
}

.lever-base {
  width: 100%;
  height: 1.5em;
  margin-top: -1.5em;
  border-radius: 0.5em 0.5em 0.4em 0.4em;
  background: linear-gradient(180deg, #3a3a41, #191920);
  border: 1px solid var(--line);
}

.lever small {
  margin-top: 0.4em;
  font-size: var(--fs-2xs);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.ticker {
  margin-top: auto;
  overflow: hidden;
  max-width: 100%;
  background: linear-gradient(90deg, #b50d1a, var(--red-hot) 40%, #ff2e3d 70%, #b50d1a);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 1.8em;
  padding: 0.7em 1em;
  white-space: nowrap;
  font-size: var(--fs-sm);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff1f1;
}

.section { padding: var(--space-xl) 0; }
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-md);
}
.section-head p, .section-head h2 + p { margin: 0; color: var(--muted); font-size: var(--fs-sm); }
.section-head h2 .dot { margin-right: 0.4em; }

.bonus-grid,
.match-grid,
.game-grid,
.steps {
  display: grid;
  gap: var(--space-md);
}

.bonus-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.5rem), 1fr)); }

.bonus-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  min-width: 0;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.bonus-card--hot {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(165deg, #ff2e3d, #8e0a14);
  border: 0;
  box-shadow: 0 1.4rem 3.1rem -1.4rem rgba(225, 16, 32, 0.85);
}
.bonus-card--hot > * { position: relative; z-index: 1; }
.bonus-card--hot::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -50%;
  width: 40%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
  animation: shine 4.2s ease-in-out infinite;
}

.bonus-card--outline { border-color: rgba(255, 46, 61, 0.35); }

.bonus-value {
  font-family: var(--display);
  font-size: clamp(1.7rem, 8vw, 3rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.bonus-value--red { color: #ff6b72; }
.bonus-card h3 { font-size: var(--fs-lg); }
.bonus-card p { margin: 0; font-size: var(--fs-md); line-height: 1.5; color: #cfcfd4; }
.bonus-card--hot p { color: rgba(255,255,255,.86); }
.bonus-card .btn { margin-top: 0.5em; width: 100%; }

.match-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }

.match-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  min-width: 0;
  padding: var(--space-md);
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.match-card:hover { border-color: rgba(225, 16, 32, 0.5); transform: translateY(-0.12em); }

.match-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5em;
  flex-wrap: wrap;
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
}

.live-min {
  padding: 0.2em 0.5em;
  border-radius: 0.4em;
  background: rgba(225, 16, 32, 0.18);
  color: #ff9aa0;
}

.match-score { display: flex; justify-content: space-between; gap: 0.6em; min-width: 0; }
.teams { display: flex; flex-direction: column; gap: 0.5em; font-weight: 700; min-width: 0; }
.teams span { display: flex; align-items: center; gap: 0.5em; min-width: 0; }
.score {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  font-family: var(--display);
  font-size: clamp(1rem, 3.2vw, 1.25rem);
  color: var(--red);
  text-align: right;
}

.crest {
  width: 1.4em;
  height: 1.4em;
  flex: none;
  border-radius: 0.35em;
  display: grid;
  place-items: center;
  font-size: 0.7em;
  font-weight: 800;
  font-style: normal;
}
.crest-navy { background: #1d3557; }
.crest-gold { background: #9a6a08; }
.crest-red { background: #8e0a14; }
.crest-teal { background: #0e5c57; }
.crest-wine { background: #5c1020; }
.crest-blue { background: #1b3a5c; }

.odds { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.4em; }
.odds a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
  padding: 0.55em 0.25em;
  border-radius: 0.6em;
  background: rgba(245, 243, 242, 0.07);
  border: 1px solid var(--line);
  color: var(--cream);
  min-width: 0;
}
.odds a:hover { background: rgba(255, 46, 61, 0.16); }
.odds small { font-size: var(--fs-2xs); font-weight: 700; color: var(--dim); }
.odds strong { font-size: var(--fs-md); }

.game-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 8.5rem), 1fr)); }

.game-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--cream);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.game-card:hover { border-color: rgba(255, 46, 61, 0.55); transform: translateY(-0.18em); }

.game-art {
  aspect-ratio: 4 / 3;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #1a1a20;
}
.game-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-art .play {
  position: absolute;
  inset: auto auto 8% 8%;
  padding: 0.4em 0.65em;
  border-radius: 0.5em;
  background: rgba(11,11,12,.72);
  font-size: var(--fs-2xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.4em);
  transition: 0.2s ease;
}

.game-card:hover .play { opacity: 1; transform: none; }

.game-art-reels {
  background:
    radial-gradient(circle at 30% 40%, #ff5a66, transparent 40%),
    radial-gradient(circle at 70% 60%, #7a1020, transparent 42%),
    linear-gradient(160deg, #3a1020, #12080c);
}
.game-art-reels::before {
  content: "777";
  font-family: var(--display);
  font-size: clamp(1.5rem, 8vw, 2.6rem);
  letter-spacing: 0.08em;
  color: #ffd9db;
  text-shadow: 0 0.6rem 1.5rem rgba(0,0,0,.5);
}

.game-art-tiger {
  background:
    repeating-linear-gradient(118deg, rgba(240,199,94,.28) 0 8px, transparent 8px 16px),
    linear-gradient(160deg, #5c3a08, #120c06);
}
.game-art-tiger::before,
.game-art-tiger::after {
  content: "";
  position: absolute;
  width: 28%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid #8a5c0a;
  background: radial-gradient(circle at 32% 28%, #ffe9a8, #e3a21c 46%, #8a5c0a);
  box-shadow: 0 0.6rem 1.1rem rgba(0,0,0,.35);
}
.game-art-tiger::before { transform: translate(-40%, 12%); }
.game-art-tiger::after { transform: translate(40%, 18%); width: 22%; }

.game-art-roulette {
  background: radial-gradient(circle at 50% 55%, #1f6b4a 0 28%, #0c2418 29% 100%);
}
.game-art-roulette::before {
  content: "";
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 0.5em dashed #f0c75e;
  box-shadow: 0 0 0 0.6em #145c3d, inset 0 0 0 0.85em #8e0a14;
}

.game-art-bj {
  background: linear-gradient(160deg, #0d3b2e, #07140f);
}
.game-art-bj::before,
.game-art-bj::after {
  content: "A♠";
  position: absolute;
  width: 24%;
  aspect-ratio: 46 / 64;
  border-radius: 0.4em;
  background: #f5f3f2;
  color: #8e0a14;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 0.6rem 1.1rem rgba(0,0,0,.35);
}
.game-art-bj::before { transform: rotate(-12deg) translate(-40%, 8%); }
.game-art-bj::after { content: "K♥"; transform: rotate(10deg) translate(40%, 16%); }

.game-art-crash {
  background: linear-gradient(180deg, #08141c, #0a0c10);
}
.game-art-crash::before {
  content: "";
  width: 70%;
  height: 46%;
  border-left: 3px solid #3dd6c3;
  border-bottom: 3px solid #3dd6c3;
  clip-path: polygon(0 80%, 30% 60%, 48% 70%, 72% 20%, 100% 8%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(61,214,195,.35), transparent);
}

.game-art-bonus {
  background: radial-gradient(circle at 50% 40%, #ff2e3d, #3a0810 70%);
}
.game-art-bonus::before {
  content: "BUY";
  font-family: var(--display);
  font-size: clamp(1.1rem, 5vw, 1.75rem);
  color: #fff1f1;
  letter-spacing: 0.12em;
}

.game-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5em;
  padding: 0.75em 0.8em;
  font-size: var(--fs-md);
  min-width: 0;
}
.game-meta strong {
  min-width: 0;
  overflow-wrap: anywhere;
}
.game-meta em { font-style: normal; font-size: var(--fs-2xs); font-weight: 800; letter-spacing: 0.06em; color: var(--red); flex: none; }

.pay-bar {
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--line);
  text-align: center;
}

.pay-label {
  display: block;
  font-size: var(--fs-2xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  padding-bottom: var(--space-md);
}

.pay-list { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-sm); }
.pay-list span {
  padding: 0.55em 0.9em;
  border-radius: 0.6em;
  background: rgba(245, 243, 242, 0.07);
  font-size: var(--fs-sm);
  font-weight: 700;
}

.steps { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }
.steps article {
  padding: var(--space-lg);
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  min-width: 0;
}
.steps span {
  display: grid;
  place-items: center;
  width: 2.4em;
  height: 2.4em;
  margin-bottom: 0.6em;
  border-radius: 0.7em;
  background: rgba(255, 46, 61, 0.16);
  border: 1px solid rgba(255, 46, 61, 0.4);
  font-family: var(--display);
  color: var(--red);
}
.steps h3 { font-size: var(--fs-lg); margin-bottom: 0.5em; }
.steps p { margin: 0; color: var(--muted); font-size: var(--fs-md); line-height: 1.5; }

.trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm) var(--space-md);
  margin-top: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius);
  background: #101014;
  border: 1px solid rgba(245, 243, 242, 0.09);
}
.trust strong { font-size: var(--fs-xs); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.trust i { width: 1px; height: 1.1em; background: var(--line); }
.trust span {
  padding: 0.5em 0.8em;
  border-radius: 0.55em;
  background: rgba(245, 243, 242, 0.06);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--muted);
}

.section-faq h2 { margin-bottom: var(--space-md); }
.faq-list { display: flex; flex-direction: column; gap: 0.55em; }
.faq-list details {
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-md);
  font-size: var(--fs-md);
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  min-width: 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  flex: none;
  width: 1.5em;
  height: 1.5em;
  display: grid;
  place-items: center;
  border-radius: 0.45em;
  background: rgba(255, 46, 61, 0.16);
  color: var(--red);
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list p {
  margin: 0;
  padding: 0 var(--space-md) var(--space-md);
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--muted);
}

.site-foot {
  padding: var(--space-xl) 0 calc(var(--space-xl) + 0.5rem);
  border-top: 1px solid var(--line);
}
.seo-panel {
  display: grid;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--line);
  min-width: 0;
}
.seo-visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-width: 0;
}
.seo-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 12rem;
}
.seo-panel > div > p {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-md);
  line-height: 1.65;
  color: #cfcfd4;
  max-width: 78ch;
}
.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.5rem), 1fr));
  gap: var(--space-md);
}
.seo-grid article {
  padding: var(--space-md);
  border-radius: var(--radius);
  background: rgba(245, 243, 242, 0.04);
  border: 1px solid var(--line);
  min-width: 0;
}
.seo-grid h3 {
  font-size: var(--fs-md);
  margin-bottom: 0.5em;
}
.seo-grid p {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--muted);
}
.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.seo-tags a {
  padding: 0.45em 0.7em;
  border-radius: 999px;
  background: rgba(245, 243, 242, 0.06);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 700;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.seo-tags a:hover {
  color: var(--cream);
  border-color: rgba(255, 46, 61, 0.45);
}
.foot-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.foot-legal { display: flex; align-items: center; gap: 0.7em; min-width: 0; }
.foot-legal p { margin: 0; max-width: 52ch; font-size: var(--fs-xs); line-height: 1.5; color: var(--dim); }
.age {
  flex: none;
  width: 2.25em;
  height: 2.25em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--red-hot);
  font-size: var(--fs-xs);
  font-weight: 800;
  color: #ff9aa0;
}
.foot-links { display: flex; flex-wrap: wrap; gap: var(--space-md); font-size: var(--fs-xs); }
.foot-links a { color: var(--dim); }
.foot-links a:hover { color: var(--cream); }

#confetti {
  position: fixed;
  inset: 0;
  width: auto;
  height: auto;
  overflow: hidden;
  z-index: 90;
  pointer-events: none;
}

.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  padding: var(--space-sm) var(--gutter) max(var(--space-sm), env(safe-area-inset-bottom));
  width: auto;
  background: rgba(11, 11, 12, 0.95);
  border-top: 1px solid rgba(255, 46, 61, 0.4);
  box-shadow: 0 -0.9rem 1.9rem -1.1rem rgba(0,0,0,.9);
  backdrop-filter: blur(0.9rem);
}
.sticky-bar[hidden] { display: none; }
.sticky-bar > div { min-width: 0; flex: 1 1 12rem; }
.sticky-bar small { display: block; font-size: var(--fs-2xs); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); }
.sticky-bar strong { font-size: var(--fs-md); overflow-wrap: anywhere; }
.sticky-bar .btn {
  margin-left: auto;
  flex: 1 1 8rem;
  padding: 0.8em 1.1em;
  font-family: var(--display);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  padding:
    max(var(--gutter), env(safe-area-inset-top))
    max(var(--gutter), env(safe-area-inset-right))
    max(var(--gutter), env(safe-area-inset-bottom))
    max(var(--gutter), env(safe-area-inset-left));
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.84);
  backdrop-filter: blur(0.5rem);
}
.modal-card {
  position: relative;
  width: min(26rem, 100%);
  max-width: 100%;
  min-width: 0;
  max-height: 100%;
  justify-self: center;
  align-self: center;
  margin: 0;
  padding: clamp(1.1rem, 5vw, 1.75rem) clamp(0.85rem, 4vw, 1.2rem) clamp(0.85rem, 3.5vw, 1.15rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, #1e1e24, #0c0c0e 74%);
  border: 1px solid rgba(255, 46, 61, 0.42);
  box-shadow: 0 1.5rem 3rem -1.5rem rgba(0,0,0,.85);
  text-align: center;
  overflow-x: clip;
  overflow-y: auto;
  overscroll-behavior: contain;
  animation: popIn 0.42s cubic-bezier(.2,.9,.25,1.1) both;
}
.modal-x {
  position: absolute;
  top: 0.65em;
  right: 0.65em;
  width: 2em;
  height: 2em;
  border: 0;
  border-radius: 0.6em;
  background: rgba(245,243,242,.1);
  color: var(--muted);
  cursor: pointer;
  font-size: 1.05em;
}
.modal-kicker {
  margin: 0.7em 0 0.35em;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.modal-card h2 {
  font-size: clamp(1.15rem, 6.4vw, 2.35rem);
  color: var(--red);
  line-height: 1.1;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.modal-sub {
  margin: 0.5em 0 1em;
  font-weight: 700;
  font-size: var(--fs-md);
  max-width: 100%;
  overflow-wrap: anywhere;
}
.code-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  min-width: 0;
  width: 100%;
  max-width: 100%;
  padding: 0.7em 0.85em;
  margin-bottom: 0.85em;
  border-radius: 0.8em;
  border: 1px dashed rgba(255, 46, 61, 0.5);
  background: rgba(255, 46, 61, 0.08);
  text-align: left;
}
.code-box > div { min-width: 0; flex: 1 1 8rem; }
.code-box .btn { flex: 1 1 6rem; }
.code-box small {
  display: block;
  font-size: var(--fs-2xs);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.code-box code {
  font-size: clamp(0.95rem, 4vw, 1.1rem);
  letter-spacing: 0.1em;
  color: var(--red);
  overflow-wrap: anywhere;
}
.modal-card .btn-lg {
  width: 100%;
  max-width: 100%;
  font-family: var(--display);
  font-size: clamp(0.95rem, 4.4vw, 1.25rem);
}
.modal-timer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4em 0.55em;
  margin: 0.85em 0 0.5em;
  font-size: var(--fs-2xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}
.modal-timer strong { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 1.05em; color: var(--red); letter-spacing: 0; }
.fine { font-size: var(--fs-2xs); line-height: 1.5; color: var(--dim); overflow-wrap: anywhere; }
.text-link {
  border: 0;
  background: none;
  color: var(--dim);
  text-decoration: underline;
  cursor: pointer;
  font-size: var(--fs-sm);
}

html.modal-open,
body.modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}
body.has-bar { padding-bottom: clamp(5.5rem, 22vw, 8rem); }

@keyframes popIn { from { opacity: 0; transform: translateY(1.25em) scale(.93); } to { opacity: 1; transform: none; } }
@keyframes halo { 0%,100% { opacity: .5; transform: scale(1) rotate(0); } 50% { opacity: .95; transform: scale(1.15) rotate(8deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes blink { 50% { opacity: .2; } }
@keyframes floatY { 50% { transform: translateY(-0.55em); } }
@keyframes shine { 0% { left: -40%; } 40%,100% { left: 120%; } }

@media (min-width: 54em) {
  .topbar-nav { margin-left: 0.75em; flex: 0 1 auto; }
  .hero { padding-top: 4.25rem; }
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: var(--space-xl);
    min-height: calc(100svh - 7.5rem);
  }
  .seo-panel { grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); align-items: start; }
  .hero-cta .btn { flex: 0 1 auto; }
  .sticky-bar .btn { flex: none; margin-left: auto; }
}

@media (max-width: 53.99em) {
  .hero::after { display: none; }
  h1, h2, .section { scroll-margin-top: 6rem; }
  .topbar-nav { flex: 1 1 100%; }
  .hero-cta .btn { flex: 1 1 100%; }
  .sticky-bar .btn { margin-left: 0; width: 100%; flex: 1 1 100%; }
  .prose .btn { display: inline-flex; width: 100%; margin: 0.5em 0 0; }
}

.crumbs {
  width: min(51.25rem, calc(100% - 2 * var(--gutter)));
  margin: 5.5rem auto 0;
  font-size: var(--fs-sm);
  color: var(--dim);
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--cream); }
.prose {
  width: min(51.25rem, calc(100% - 2 * var(--gutter)));
  margin: var(--space-md) auto var(--space-xl);
  min-width: 0;
}
.prose h1 { margin-bottom: 0.5em; }
.prose .lede {
  max-width: none;
  margin-bottom: 1.1em;
}
.prose h2 {
  margin: 1.5em 0 0.5em;
  font-size: clamp(1.25rem, 4.2vw, 2rem);
}
.prose h3 { font-size: var(--fs-lg); margin: 1.2em 0 0.45em; }
.prose p {
  color: #cfcfd4;
  line-height: 1.7;
  margin: 0 0 1em;
  font-size: var(--fs-lg);
  overflow-wrap: break-word;
}
.prose ul, .prose ol {
  margin: 0 0 1.1em;
  padding-left: 1.2em;
  color: #cfcfd4;
  line-height: 1.65;
}
.prose li { margin: 0.4em 0; }
.prose .btn { margin: 0.5em 0.5em 0 0; }
.page-hero-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0.35em 0 1.3em;
  border: 1px solid var(--line);
}
.related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
  gap: var(--space-sm);
  margin-top: 0.6em;
}
.related a {
  display: block;
  padding: var(--space-md);
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--cream);
  min-width: 0;
}
.related a:hover { border-color: rgba(255, 46, 61, 0.5); }
.related small { display: block; margin-top: 0.4em; color: var(--muted); font-size: var(--fs-sm); font-weight: 400; }
.skip {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.skip:focus {
  width: auto;
  height: auto;
  clip-path: none;
  z-index: 80;
  top: 0.5em;
  left: 0.5em;
  padding: 0.5em 0.75em;
  background: var(--red);
  color: #fff;
  border-radius: 0.5em;
}

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