:root {
  --bg: #080806;
  --bg-2: #10130f;
  --panel: #171a13;
  --panel-2: #202419;
  --line: rgba(255, 224, 130, .22);
  --line-strong: rgba(255, 224, 130, .48);
  --text: #fff8df;
  --muted: #cabf9a;
  --gold: #d8a83d;
  --gold-2: #ffdf72;
  --gold-3: #8b5a12;
  --emerald: #0d7b58;
  --emerald-2: #0f3a30;
  --sapphire: #1c65bf;
  --ruby: #b82d42;
  --ivory: #fff4c8;
  --shadow: 0 22px 70px rgba(0, 0, 0, .42);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 0%, rgba(13, 123, 88, .24), transparent 32rem),
    radial-gradient(circle at 82% 12%, rgba(184, 45, 66, .12), transparent 28rem),
    linear-gradient(145deg, #080806 0%, #0f1410 45%, #070706 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: .75rem;
  z-index: 200;
  transform: translateY(-160%);
  padding: .75rem 1rem;
  border-radius: var(--radius);
  background: var(--gold-2);
  color: #11120d;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 7, .86);
  backdrop-filter: blur(18px);
}

.top-notice {
  display: flex;
  justify-content: center;
  gap: .75rem;
  padding: .55rem 1rem;
  border-bottom: 1px solid rgba(255, 224, 130, .14);
  color: var(--ivory);
  background: linear-gradient(90deg, rgba(184, 45, 66, .2), rgba(13, 123, 88, .18));
  font-size: .88rem;
  text-align: center;
}

.nav-wrap {
  width: min(1180px, calc(100% - 2rem));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand span {
  display: block;
  font-size: 1.05rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  text-transform: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #11140f;
  color: var(--ivory);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.site-nav a {
  padding: .7rem .8rem;
  border-radius: var(--radius);
  color: var(--muted);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 760;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(255, 224, 130, .08);
  outline: none;
}

.age-mark {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 36px;
  border: 1px solid rgba(184, 45, 66, .7);
  border-radius: var(--radius);
  color: var(--ivory);
  background: rgba(184, 45, 66, .18);
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.02);
}

.hero::after,
.game-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 8, 6, .88), rgba(8, 8, 6, .42) 48%, rgba(8, 8, 6, .86)),
    linear-gradient(0deg, rgba(8, 8, 6, .95), rgba(8, 8, 6, .06) 45%, rgba(8, 8, 6, .62));
}

.hero-inner,
.section-inner,
.footer-inner,
.page-hero-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero-inner {
  padding: 7rem 0 5.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .38rem .65rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ivory);
  background: rgba(12, 14, 10, .48);
  font-size: .82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 850px;
  margin: 1.25rem 0 .85rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: .95;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #f0e5c2;
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero-actions,
.cta-row,
.game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .85rem 1.05rem;
  border: 1px solid rgba(255, 224, 130, .62);
  border-radius: var(--radius);
  color: #11120d;
  background: linear-gradient(135deg, #fff4b1, #d8a83d 45%, #9a6718);
  box-shadow: 0 14px 30px rgba(216, 168, 61, .22);
  font-weight: 900;
  text-decoration: none;
  text-align: center;
}

.button:hover,
.button:focus-visible {
  filter: brightness(1.08);
  outline: 2px solid rgba(255, 244, 200, .5);
  outline-offset: 3px;
}

.button.secondary {
  color: var(--ivory);
  background: rgba(255, 244, 200, .08);
  border-color: var(--line);
  box-shadow: none;
}

.button.danger {
  color: var(--ivory);
  background: rgba(184, 45, 66, .26);
  border-color: rgba(184, 45, 66, .66);
  box-shadow: none;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.chip-list li,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .45rem .65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ivory);
  background: rgba(17, 20, 15, .72);
  font-size: .88rem;
  font-weight: 780;
  overflow-wrap: anywhere;
}

.section {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(255, 224, 130, .12);
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 244, 200, .035), rgba(13, 123, 88, .055));
}

.section.compact {
  padding: 3.5rem 0;
}

.section-title {
  max-width: 760px;
}

.section-title h2 {
  margin: 0 0 .75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  line-height: 1.05;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.notice-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(184, 45, 66, .16), rgba(13, 123, 88, .17)),
    #10130f;
}

.notice-band .section-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
}

.notice-band strong {
  color: var(--gold-2);
}

.notice-band p {
  margin: 0;
  color: #efe3bf;
  line-height: 1.7;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}

.stat {
  min-height: 96px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 7, 6, .4);
}

.stat strong {
  display: block;
  color: var(--ivory);
  font-size: 1.25rem;
}

.stat span {
  display: block;
  margin-top: .25rem;
  color: var(--muted);
  font-size: .9rem;
}

.lore-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
  margin-top: 2rem;
}

.lore-panel,
.legal-aside,
.game-console,
.age-card,
.cookie-banner {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 244, 200, .08), rgba(13, 123, 88, .08)), rgba(12, 14, 10, .82);
  box-shadow: var(--shadow);
}

.lore-panel {
  padding: 1.4rem;
}

.lore-panel h3 {
  margin: 0 0 .65rem;
  font-size: 1.3rem;
}

.lore-panel p,
.legal-aside p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 224, 130, .14);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-item strong {
  color: var(--gold-2);
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.game-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 20, 15, .78);
  overflow: hidden;
}

.game-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.game-card-body,
.review-card {
  padding: 1.2rem;
}

.game-card h3,
.review-card h3 {
  margin: 0 0 .55rem;
  font-size: 1.25rem;
}

.game-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.game-card .button {
  width: 100%;
  margin-top: 1rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.feature {
  padding: 1rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 244, 200, .055);
}

.feature strong {
  display: block;
  color: var(--ivory);
  margin-bottom: .35rem;
}

.feature span {
  color: var(--muted);
  line-height: 1.55;
}

.review-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  overflow-x: auto;
  padding-bottom: .35rem;
}

.review-card {
  min-width: 220px;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: .9rem;
  color: var(--gold-2);
  font-weight: 850;
}

.quote-mark {
  color: var(--ruby);
  font-size: 1.4rem;
}

.game-page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  padding: 6rem 0 4rem;
}

.game-shell {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.game-console {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.25rem;
  padding: 1rem;
}

.console-main {
  min-width: 0;
}

.console-side {
  padding: 1rem;
  border-left: 1px solid rgba(255, 224, 130, .16);
}

.console-side h3,
.game-status h3 {
  margin: 0 0 .75rem;
  font-size: 1.05rem;
}

.game-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1rem;
}

.meter {
  min-height: 76px;
  padding: .85rem;
  border: 1px solid rgba(255, 224, 130, .15);
  border-radius: var(--radius);
  background: rgba(5, 7, 6, .35);
}

.meter span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
}

.meter strong {
  display: block;
  margin-top: .2rem;
  color: var(--ivory);
  font-size: 1.32rem;
}

.game-note {
  margin: 1rem 0 0;
  padding: .8rem;
  border: 1px solid rgba(184, 45, 66, .42);
  border-radius: var(--radius);
  color: #f3dfc1;
  background: rgba(184, 45, 66, .12);
  line-height: 1.55;
}

.result-box {
  min-height: 72px;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 224, 130, .2);
  border-radius: var(--radius);
  background: rgba(255, 244, 200, .055);
  color: #f6eac8;
  line-height: 1.55;
}

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

.symbol-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: .65rem;
  align-items: center;
  color: var(--muted);
  font-size: .92rem;
}

.symbol-list img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
}

.slot-machine {
  position: relative;
  padding: .9rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 244, 200, .16), rgba(13, 123, 88, .08)),
    #0d0f0b;
  box-shadow: inset 0 0 36px rgba(255, 224, 130, .1);
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(54px, 1fr));
  gap: .65rem;
}

.slot-cell,
.beacon-cell {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  min-width: 0;
  border: 1px solid rgba(255, 224, 130, .18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 244, 200, .17), transparent 58%),
    linear-gradient(145deg, rgba(17, 20, 15, .92), rgba(5, 7, 6, .95));
  overflow: hidden;
}

.slot-cell::after,
.beacon-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, .16) 45%, transparent 58% 100%);
  transform: translateX(-130%);
  pointer-events: none;
}

.slot-cell img,
.beacon-cell img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 12px 12px rgba(0, 0, 0, .45));
}

.slot-cell.spinning img,
.beacon-cell.spinning img {
  animation: reelBlur .16s linear infinite;
}

.slot-cell.is-hit {
  border-color: rgba(255, 223, 114, .9);
  box-shadow: 0 0 0 2px rgba(255, 223, 114, .18), 0 0 26px rgba(216, 168, 61, .32);
}

.slot-cell.is-hit::after,
.beacon-cell.is-hit::after {
  animation: shineSweep .85s ease;
}

.segmented {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
}

.segmented button {
  min-height: 40px;
  padding: .55rem .75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(5, 7, 6, .4);
  font-weight: 800;
}

.segmented button.is-active {
  color: #11120d;
  border-color: rgba(255, 224, 130, .75);
  background: linear-gradient(135deg, #fff1a6, #d8a83d);
}

.segmented + .cups-row,
.segmented + .wheel-layout {
  margin-top: 1.35rem;
}

.cups-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  perspective: 900px;
}

.cup-button {
  position: relative;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 244, 200, .18), transparent 56%),
    linear-gradient(180deg, rgba(13, 123, 88, .16), rgba(5, 7, 6, .82));
  overflow: hidden;
}

.cup-button:disabled {
  cursor: not-allowed;
  opacity: .82;
}

.cup-button .cup-img {
  width: min(170px, 78%);
  margin: 0 auto;
  transition: transform .35s ease;
}

.cup-button .hidden-symbol {
  position: absolute;
  left: 50%;
  bottom: 25px;
  width: 104px;
  height: 104px;
  object-fit: contain;
  transform: translateX(-50%) translateY(24px) scale(.85);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

.cup-button.revealed .cup-img {
  transform: translateY(-42px) rotateX(18deg);
}

.cup-button.revealed .hidden-symbol {
  transform: translateX(-50%) translateY(0) scale(1);
  opacity: 1;
}

.cup-button.is-shuffling:nth-child(1) {
  animation: shuffleA .8s ease-in-out 2;
}

.cup-button.is-shuffling:nth-child(2) {
  animation: shuffleB .8s ease-in-out 2;
}

.cup-button.is-shuffling:nth-child(3) {
  animation: shuffleC .8s ease-in-out 2;
}

.wheel-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 260px;
  gap: 1rem;
  align-items: center;
}

.wheel-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  overflow: hidden;
}

.wheel-pointer {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 4;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 34px solid var(--gold-2);
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, .5));
}

.fortune-wheel {
  --wheel-symbol-radius: 145px;
  position: relative;
  width: min(360px, 86vw);
  aspect-ratio: 1;
  border: 12px solid #d8a83d;
  border-radius: 50%;
  box-shadow: 0 0 0 6px #11120d, 0 20px 70px rgba(0, 0, 0, .55), inset 0 0 34px rgba(0, 0, 0, .45);
  transition: transform 3.2s cubic-bezier(.14, .86, .12, 1);
}

.fortune-wheel::before {
  content: "";
  position: absolute;
  inset: 42%;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff1a6, #d8a83d);
  border: 5px solid #11120d;
  z-index: 3;
}

.wheel-symbol {
  position: absolute;
  z-index: 2;
  width: 74px;
  height: 74px;
  border-radius: var(--radius);
  transform: translate(-50%, -50%);
  transform-origin: center;
  object-fit: contain;
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, .58));
}

.beacon-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 2rem;
  align-items: start;
}

.legal-content {
  color: #efe3bf;
  line-height: 1.75;
}

.legal-content h2 {
  margin: 2rem 0 .6rem;
  color: var(--ivory);
  font-size: 1.45rem;
}

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

.legal-content p,
.legal-content ul {
  margin: .75rem 0;
}

.legal-content li {
  margin: .42rem 0;
}

.legal-aside {
  position: sticky;
  top: 112px;
  padding: 1rem;
}

.legal-aside ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.legal-aside li + li {
  margin-top: .5rem;
}

.legal-aside a {
  color: var(--gold-2);
  text-decoration: none;
}

.site-footer {
  padding: 3rem 0;
  background: #070806;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-2);
}

.footer-note {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(8, 8, 6, .96), rgba(14, 58, 48, .92)),
    rgba(0, 0, 0, .92);
}

.age-card {
  width: min(560px, 100%);
  padding: 1.35rem;
}

.age-card h2 {
  margin: 0 0 .75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.age-card p {
  color: var(--muted);
  line-height: 1.65;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 420;
  display: none;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.cookie-banner .button {
  flex: 0 0 auto;
}

@keyframes reelBlur {
  from {
    transform: translateY(-10%) scale(.92);
    opacity: .65;
  }
  to {
    transform: translateY(10%) scale(1.04);
    opacity: 1;
  }
}

@keyframes shineSweep {
  to {
    transform: translateX(130%);
  }
}

@keyframes shuffleA {
  35% {
    transform: translateX(84%) rotateY(14deg);
  }
  75% {
    transform: translateX(8%) rotateY(-10deg);
  }
}

@keyframes shuffleB {
  35% {
    transform: translateX(-72%) rotateY(-12deg);
  }
  75% {
    transform: translateX(72%) rotateY(10deg);
  }
}

@keyframes shuffleC {
  35% {
    transform: translateX(-80%) rotateY(-14deg);
  }
  75% {
    transform: translateX(-8%) rotateY(8deg);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 116px 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 9, 7, .96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: .9rem;
  }

  .hero {
    min-height: 640px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3.45rem;
  }

  .notice-band .section-inner,
  .lore-grid,
  .game-console,
  .legal-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .console-side {
    border-left: 0;
    border-top: 1px solid rgba(255, 224, 130, .16);
  }

  .game-grid,
  .feature-strip {
    grid-template-columns: 1fr 1fr;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .top-notice {
    font-size: .78rem;
  }

  .hero {
    min-height: 560px;
  }

  .hero-inner,
  .page-hero-inner {
    padding: 5rem 0 3rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.5rem;
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .game-grid,
  .feature-strip,
  .stat-row,
  .game-status,
  .wheel-layout {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .slot-grid {
    gap: .35rem;
  }

  .cups-row {
    gap: .5rem;
  }

  .cup-button {
    min-height: 180px;
  }

  .cup-button .hidden-symbol {
    width: 64px;
    height: 64px;
  }

  .fortune-wheel {
    --wheel-symbol-radius: 112px;
    width: min(300px, 88vw);
  }

  .wheel-symbol {
    width: 58px;
    height: 58px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
