:root {
  color-scheme: dark;
  --bg: #0b241b;
  --ink: #fff9e8;
  --muted: rgba(255, 249, 232, 0.74);
  --line: rgba(255, 255, 255, 0.16);
  --accent: #d8b45a;
  --accent-2: #7cc7a7;
  --accent-3: #bf7156;
  --panel: rgba(12, 10, 8, 0.9);
  --hero-a: #0b241b;
  --hero-b: #154734;
  --hero-c: #d8b45a;
  --button-a: #f2d985;
  --button-b: #b88744;
  --button-ink: #171009;
  --shape-a: #ffe7a6;
  --shape-b: #77e5bb;
  --shape-c: #f27f68;
  --motion-speed: 8s;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

.home-page {
  --bg: #081f18;
  --ink: #fff9e8;
  --muted: rgba(255, 249, 232, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --accent: #f2d985;
  --accent-2: #7cc7a7;
  --button-a: #f2d985;
  --button-b: #b88744;
  --button-ink: #171009;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(124, 199, 167, 0.2), transparent 28%),
    radial-gradient(circle at 18% 18%, rgba(242, 217, 133, 0.12), transparent 26%),
    #081f18;
}

a {
  color: inherit;
}

.home-shell {
  min-height: 100vh;
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  padding: 34px clamp(18px, 5vw, 72px) 56px;
  isolation: isolate;
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(110deg, transparent 16%, rgba(255, 247, 191, 0.13) 40%, transparent 62%),
    linear-gradient(80deg, transparent 46%, rgba(118, 236, 196, 0.13) 56%, transparent 72%);
  animation: ambientSweep 9s ease-in-out infinite alternate;
  content: "";
}

.home-glow {
  position: absolute;
  right: -12vw;
  top: 3vh;
  z-index: -3;
  width: min(72vw, 760px);
  height: min(72vw, 760px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 48%, rgba(242, 217, 133, 0.2), transparent 32%),
    radial-gradient(circle at 58% 55%, rgba(124, 199, 167, 0.18), transparent 62%);
  filter: blur(8px);
}

.home-topbar,
.home-hero-grid,
.home-picks,
.home-trust,
.home-footer {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.home-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(44px, 9vw, 96px);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 6vw, 74px);
}

.home-copy h1 {
  max-width: 11ch;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(54px, 9vw, 108px);
  line-height: 0.92;
  letter-spacing: 0;
}

.home-copy > p:not(.eyebrow) {
  width: min(620px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.5;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.home-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.home-note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.home-note-row span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(8, 35, 25, 0.58);
  color: rgba(255, 249, 232, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.home-feature {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: #0b241b;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.3);
}

.home-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 34%;
  filter: brightness(1.14) saturate(1.16) contrast(1.05);
  transform: scale(1.01);
  animation: featureFloat 7s ease-in-out infinite;
}

.home-feature::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(6, 20, 15, 0.9) 0%, rgba(6, 20, 15, 0.2) 46%, transparent 68%),
    linear-gradient(90deg, rgba(6, 20, 15, 0.5), transparent 58%);
  content: "";
}

.home-feature div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
}

.home-feature span {
  display: block;
  margin-bottom: 8px;
  color: #7ee3bd;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-feature strong {
  display: block;
  max-width: 8ch;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.95;
}

.home-picks {
  padding: 12px clamp(18px, 5vw, 0px) 52px;
}

.home-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.home-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

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

.pick-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 270px;
  align-content: end;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.pick-card:hover {
  border-color: rgba(242, 217, 133, 0.5);
  transform: translateY(-3px);
}

.pick-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.96) saturate(1.08);
  transition: transform 240ms ease;
}

.pick-card:hover img {
  transform: scale(1.04);
}

.pick-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 20, 15, 0.9) 0%, rgba(6, 20, 15, 0.22) 56%, transparent 100%);
  content: "";
}

.pick-card span,
.pick-card strong {
  position: relative;
  z-index: 1;
}

.pick-card span {
  margin-bottom: 6px;
  color: #8ee7c5;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.pick-card strong {
  max-width: 11ch;
  font-size: 22px;
  line-height: 1;
}

.home-trust {
  margin-bottom: 0;
  padding-inline: clamp(18px, 5vw, 0px);
}

.home-footer {
  border-radius: 0;
}

.page-shell {
  overflow: hidden;
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  min-height: 82vh;
  padding: 46px clamp(18px, 5vw, 72px) 42px;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 32%, color-mix(in srgb, var(--hero-c) 34%, transparent), transparent 30%),
    radial-gradient(circle at 63% 70%, color-mix(in srgb, var(--shape-b) 24%, transparent), transparent 30%),
    linear-gradient(135deg, var(--hero-a), var(--hero-b));
}

.visual-layer,
.scene-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.visual-layer {
  z-index: -3;
}

.visual-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  transform: scale(1.03);
  animation: heroDrift 12s ease-in-out infinite alternate;
}

.visual-layer img[hidden] {
  display: none;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.hero::before {
  background:
    linear-gradient(110deg, transparent 18%, rgba(255, 247, 191, 0.14) 38%, transparent 56%),
    linear-gradient(82deg, transparent 40%, rgba(118, 236, 196, 0.13) 52%, transparent 66%);
  animation: ambientSweep var(--motion-speed) ease-in-out infinite alternate;
  mix-blend-mode: screen;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(5, 15, 12, 0.72) 0%, rgba(5, 15, 12, 0.34) 50%, rgba(5, 15, 12, 0.08) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 40%);
}

.scene-art {
  z-index: -2;
}

.art-item {
  position: absolute;
  display: block;
  opacity: 0.82;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.22));
  animation: floatSoft 6.8s ease-in-out infinite;
}

.feature-art {
  position: absolute;
  right: clamp(18px, 5vw, 92px);
  top: 16%;
  width: min(46vw, 560px);
  max-height: 70vh;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 26px 58px rgba(0, 0, 0, 0.32));
}

.feature-art:not([hidden]) {
  opacity: 1;
  animation: featureFloat 6s ease-in-out infinite, featureEnter 900ms ease both;
}

.art-one {
  right: 18%;
  top: 28%;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--shape-a), var(--shape-b));
  transform: rotate(45deg);
}

.art-two {
  right: 8%;
  top: 49%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--shape-a), var(--button-b));
  animation-delay: -1.6s;
}

.art-three {
  right: 29%;
  top: 62%;
  width: 18px;
  height: 18px;
  background: var(--shape-a);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
  animation-delay: -3s;
}

.art-four {
  right: 40%;
  top: 39%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--shape-b);
  animation-delay: -4.3s;
}

.art-five {
  right: 14%;
  top: 70%;
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--shape-c) 72%, white);
  animation-delay: -2.4s;
}

.theme-play .scene-art::after {
  display: none;
}

.theme-play .feature-art {
  right: clamp(8px, 5vw, 76px);
  top: 8%;
  width: min(54vw, 700px);
  max-height: 82vh;
  opacity: 1;
  filter:
    brightness(1.68)
    saturate(1.86)
    contrast(1.12)
    drop-shadow(0 30px 68px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 92px rgba(255, 134, 229, 0.58))
    drop-shadow(0 0 68px rgba(121, 231, 255, 0.46));
}

.theme-play .feature-art:not([hidden]) {
  animation: featureFloat 5.8s ease-in-out infinite, featureEnter 800ms ease both;
}

.theme-play .art-one {
  display: none;
  right: 21%;
  top: 31%;
  width: 30px;
  height: 30px;
}

.theme-play .art-two {
  display: none;
  right: 11%;
  top: 42%;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #79e7ff, #ff86e5);
}

.theme-play .art-three {
  display: none;
  right: 30%;
  top: 58%;
  width: 26px;
  height: 26px;
}

.theme-play .art-four {
  display: none;
  right: 15%;
  top: 68%;
  width: 18px;
  height: 18px;
}

.theme-play .art-five {
  display: none;
  right: 26%;
  top: 75%;
  width: 118px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, rgba(121, 231, 255, 0.18), rgba(255, 134, 229, 0.18));
  backdrop-filter: blur(8px);
}

.theme-picks .scene-art::before,
.theme-picks .scene-art::after,
.theme-daily .scene-art::after,
.theme-arcade .scene-art::after,
.theme-lounge .scene-art::after,
.theme-preview .scene-art::after,
.theme-casual .scene-art::before,
.theme-casual .scene-art::after,
.theme-today .scene-art::before,
.theme-today .scene-art::after,
.theme-social .scene-art::after {
  position: absolute;
  content: "";
}

.theme-picks .scene-art::after {
  right: clamp(18px, 6vw, 120px);
  top: 11%;
  width: clamp(300px, 44vw, 620px);
  height: clamp(220px, 34vw, 450px);
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 56% 44%, rgba(255, 214, 132, 0.34), transparent 56%),
    radial-gradient(ellipse at 50% 78%, rgba(59, 153, 120, 0.2), transparent 60%);
  filter: blur(1px);
  animation: panelFloat 8s ease-in-out infinite;
}

.theme-picks .scene-art::before {
  display: none;
}

.theme-picks .feature-art {
  right: clamp(8px, 4vw, 72px);
  top: 8%;
  width: min(56vw, 720px);
  max-height: 76vh;
  opacity: 1;
  filter:
    brightness(1.42)
    saturate(1.48)
    contrast(1.08)
    drop-shadow(0 30px 70px rgba(45, 25, 8, 0.35))
    drop-shadow(0 0 72px rgba(255, 189, 93, 0.42))
    drop-shadow(0 0 42px rgba(255, 121, 91, 0.24));
}

.theme-picks .feature-art:not([hidden]) {
  animation: featureFloat 6.4s ease-in-out infinite, featureEnter 850ms ease both;
}

.theme-picks .art-one {
  display: none;
}

.theme-picks .art-two {
  display: none;
}

.theme-picks .art-three {
  display: none;
}

.theme-picks .art-four,
.theme-picks .art-five {
  display: none;
}

.theme-daily .scene-art::after {
  right: clamp(22px, 7vw, 130px);
  top: 10%;
  width: clamp(310px, 43vw, 600px);
  height: clamp(220px, 32vw, 420px);
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 52% 42%, rgba(155, 232, 255, 0.24), transparent 58%),
    radial-gradient(ellipse at 64% 70%, rgba(60, 143, 255, 0.18), transparent 62%);
  filter: blur(1px);
  animation: panelFloat 7s ease-in-out infinite;
}

.theme-daily .feature-art {
  right: clamp(0px, 4vw, 68px);
  top: 7%;
  width: min(56vw, 720px);
  max-height: 76vh;
  opacity: 1;
  filter:
    brightness(1.22)
    saturate(1.14)
    contrast(1.08)
    drop-shadow(0 30px 74px rgba(0, 12, 34, 0.42))
    drop-shadow(0 0 74px rgba(105, 210, 255, 0.48))
    drop-shadow(0 0 42px rgba(255, 218, 112, 0.22));
}

.theme-daily .feature-art:not([hidden]) {
  animation: featureFloat 6.1s ease-in-out infinite, featureEnter 850ms ease both;
}

.theme-daily .art-one {
  display: none;
}

.theme-daily .art-two {
  display: none;
}

.theme-daily .art-three {
  display: none;
}

.theme-daily .art-four,
.theme-daily .art-five {
  display: none;
}

.theme-arcade .scene-art::after {
  right: clamp(28px, 7vw, 130px);
  bottom: 16%;
  width: clamp(280px, 38vw, 520px);
  height: clamp(90px, 13vw, 170px);
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(243, 216, 139, 0.34), transparent 62%);
  filter: blur(2px);
  animation: vegasGlow 5s ease-in-out infinite;
}

.theme-arcade .scene-art::before {
  position: absolute;
  right: 4%;
  top: 8%;
  width: min(56vw, 690px);
  height: min(45vw, 520px);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 236, 168, 0.95) 0 2px, rgba(255, 236, 168, 0.28) 3px 9px, transparent 10px),
    radial-gradient(circle at 26% 30%, rgba(123, 216, 198, 0.9) 0 2px, rgba(123, 216, 198, 0.24) 3px 11px, transparent 12px),
    radial-gradient(circle at 44% 13%, rgba(255, 149, 114, 0.92) 0 2px, rgba(255, 149, 114, 0.24) 3px 12px, transparent 13px),
    radial-gradient(circle at 64% 27%, rgba(255, 236, 168, 0.9) 0 2px, rgba(255, 236, 168, 0.22) 3px 10px, transparent 11px),
    radial-gradient(circle at 82% 12%, rgba(123, 216, 198, 0.88) 0 2px, rgba(123, 216, 198, 0.2) 3px 12px, transparent 13px),
    radial-gradient(circle at 76% 46%, rgba(255, 149, 114, 0.85) 0 2px, rgba(255, 149, 114, 0.18) 3px 9px, transparent 10px),
    radial-gradient(circle at 35% 52%, rgba(255, 236, 168, 0.82) 0 1px, rgba(255, 236, 168, 0.18) 2px 8px, transparent 9px);
  content: "";
  opacity: 0.9;
  animation: fireworksPulse 3.6s ease-in-out infinite;
}

.theme-arcade .hero-content {
  width: min(560px, 100%);
}

.theme-arcade h1 {
  max-width: 10ch;
  font-size: clamp(42px, 7.2vw, 78px);
  line-height: 0.96;
}

.theme-arcade .subcopy {
  width: min(500px, 100%);
  font-size: clamp(15px, 2vw, 18px);
}

.theme-arcade .eyebrow {
  font-size: 12px;
}

.theme-arcade .feature-art {
  right: clamp(-18px, 2vw, 34px);
  top: 8%;
  width: min(58vw, 720px);
  max-height: 82vh;
  filter:
    drop-shadow(0 34px 70px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 42px rgba(243, 216, 139, 0.16));
}

.theme-arcade .trust-band {
  background: rgba(255, 255, 255, 0.12);
}

.theme-arcade .notice {
  background: rgba(12, 10, 8, 0.92);
}

.theme-arcade .quick-notes,
.theme-arcade .terms {
  background: #0b241b;
}

.theme-arcade .quick-notes {
  background: transparent;
}

.theme-arcade .rules-footer {
  background: rgba(11, 36, 27, 0.96);
}

.theme-arcade .quick-notes span {
  background: rgba(8, 35, 25, 0.88);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 249, 232, 0.78);
}

.theme-arcade .rules-links a {
  color: #7cc7a7;
}

.theme-arcade .art-one {
  right: 36%;
  top: 20%;
  width: 12px;
  height: 230px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 239, 188, 0), rgba(255, 239, 188, 0.64), rgba(255, 239, 188, 0));
  animation: fountainJet 2.8s ease-in-out infinite;
}

.theme-arcade .art-two {
  right: 23%;
  top: 26%;
  width: 10px;
  height: 190px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(123, 216, 198, 0), rgba(123, 216, 198, 0.58), rgba(123, 216, 198, 0));
  animation: fountainJet 3.2s ease-in-out infinite -0.7s;
}

.theme-arcade .art-three {
  right: 11%;
  top: 31%;
  width: 9px;
  height: 154px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 239, 188, 0), rgba(255, 239, 188, 0.5), rgba(255, 239, 188, 0));
  animation: fountainJet 2.6s ease-in-out infinite -1.1s;
}

.theme-arcade .art-four,
.theme-arcade .art-five {
  display: none;
}

.theme-lounge .scene-art::after {
  right: clamp(18px, 7vw, 130px);
  top: 9%;
  width: clamp(310px, 43vw, 620px);
  height: clamp(220px, 32vw, 420px);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255, 141, 200, 0.26), transparent 60%),
    radial-gradient(ellipse at 68% 70%, rgba(140, 209, 255, 0.2), transparent 60%);
  filter: blur(1px);
  animation: softRotate 16s linear infinite;
}

.theme-lounge .feature-art {
  right: clamp(0px, 4vw, 70px);
  top: 7%;
  width: min(56vw, 720px);
  max-height: 76vh;
  opacity: 1;
  filter:
    brightness(1.58)
    saturate(1.62)
    contrast(1.12)
    drop-shadow(0 32px 76px rgba(15, 6, 34, 0.42))
    drop-shadow(0 0 94px rgba(255, 141, 200, 0.58))
    drop-shadow(0 0 64px rgba(140, 209, 255, 0.46))
    drop-shadow(0 0 42px rgba(255, 218, 145, 0.3));
}

.theme-lounge .feature-art:not([hidden]) {
  animation: featureFloat 6.5s ease-in-out infinite, featureEnter 850ms ease both;
}

.theme-lounge .art-one {
  display: none;
}

.theme-lounge .art-two {
  display: none;
}

.theme-lounge .art-three {
  display: none;
}

.theme-lounge .art-four,
.theme-lounge .art-five {
  display: none;
}

.theme-preview .scene-art::after {
  left: min(73vw, calc(100% - 220px));
  top: 45%;
  width: clamp(300px, 34vw, 460px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 236, 172, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(148, 72, 255, 0.26), transparent 24%),
    radial-gradient(circle at 50% 50%, transparent 0 42%, rgba(255, 236, 172, 0.18) 43% 44%, transparent 45%),
    radial-gradient(circle at 50% 50%, transparent 0 64%, rgba(181, 239, 204, 0.12) 65% 66%, transparent 67%);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.22),
    inset 0 0 48px rgba(148, 72, 255, 0.12);
  transform: translate(-50%, -50%);
  animation: orbitGlow 7s ease-in-out infinite;
}

.theme-preview .feature-art {
  right: clamp(-34px, 3vw, 46px);
  top: 11%;
  width: min(54vw, 690px);
  max-height: 78vh;
  opacity: 1;
  filter:
    brightness(1.26)
    saturate(1.38)
    contrast(1.06)
    drop-shadow(0 34px 76px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 66px rgba(148, 72, 255, 0.42))
    drop-shadow(0 0 44px rgba(255, 236, 172, 0.26));
}

.theme-preview .feature-art:not([hidden]) {
  animation: featureFloat 5.5s ease-in-out infinite, featureEnter 800ms ease both;
}

.theme-preview .art-one,
.theme-preview .art-two {
  display: none;
  left: min(73vw, calc(100% - 220px));
  top: 45%;
  width: 82px;
  height: 124px;
  border: 1px solid rgba(255, 236, 172, 0.62);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 31%, rgba(255, 255, 255, 0.74) 0 9px, transparent 10px),
    radial-gradient(circle at 50% 62%, rgba(148, 72, 255, 0.72) 0 10px, transparent 11px),
    linear-gradient(145deg, rgba(255, 236, 172, 0.9), rgba(178, 122, 41, 0.74));
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.22),
    inset 0 0 0 4px rgba(255, 255, 255, 0.08),
    inset 0 0 28px rgba(255, 236, 172, 0.2);
}

.theme-preview .art-one {
  animation: cardOrbitOne 11s linear infinite;
}

.theme-preview .art-two {
  animation: cardOrbitTwo 11s linear infinite;
}

.theme-preview .art-three {
  display: none;
  left: min(73vw, calc(100% - 220px));
  top: 45%;
  width: 82px;
  height: 124px;
  border: 1px solid rgba(255, 236, 172, 0.62);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 31%, rgba(255, 255, 255, 0.74) 0 9px, transparent 10px),
    radial-gradient(circle at 50% 62%, rgba(181, 239, 204, 0.76) 0 10px, transparent 11px),
    linear-gradient(145deg, rgba(255, 236, 172, 0.9), rgba(178, 122, 41, 0.74));
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.22),
    inset 0 0 0 4px rgba(255, 255, 255, 0.08),
    inset 0 0 28px rgba(255, 236, 172, 0.2);
  animation: cardOrbitThree 11s linear infinite;
}

.theme-preview .art-four {
  display: none;
  left: min(73vw, calc(100% - 220px));
  top: 45%;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(236, 212, 255, 0.54);
  border-radius: 16px;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.86), transparent 17%),
    linear-gradient(135deg, #e6c8ff, #8b39ff 42%, #3e1174);
  box-shadow:
    0 0 34px rgba(148, 72, 255, 0.44),
    inset 0 0 24px rgba(255, 255, 255, 0.18);
  animation: diamondHover 3.6s ease-in-out infinite;
}

.theme-preview .art-five {
  display: none;
  left: min(73vw, calc(100% - 220px));
  top: 45%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 236, 172, 0.18);
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, rgba(255, 236, 172, 0.32), transparent 12% 35%, rgba(181, 239, 204, 0.22), transparent 56% 100%);
  transform: translate(-50%, -50%);
  animation: slowSpin 18s linear infinite;
}

.theme-casual .scene-art::before {
  right: clamp(18px, 7vw, 130px);
  top: 9%;
  width: clamp(310px, 43vw, 620px);
  height: clamp(220px, 32vw, 420px);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255, 208, 138, 0.26), transparent 60%),
    radial-gradient(ellipse at 68% 70%, rgba(129, 215, 185, 0.16), transparent 60%);
  filter: blur(1px);
  animation: panelFloat 7s ease-in-out infinite;
}

.theme-casual .scene-art::after {
  display: none;
}

.theme-casual .feature-art {
  right: clamp(0px, 4vw, 70px);
  top: 7%;
  width: min(56vw, 720px);
  max-height: 76vh;
  opacity: 1;
  filter:
    brightness(0.92)
    saturate(1.14)
    contrast(1.12)
    drop-shadow(0 32px 76px rgba(68, 35, 13, 0.34))
    drop-shadow(0 0 64px rgba(255, 178, 103, 0.34))
    drop-shadow(0 0 34px rgba(129, 215, 185, 0.2));
}

.theme-casual .feature-art:not([hidden]) {
  animation: featureFloat 6.7s ease-in-out infinite, featureEnter 850ms ease both;
}

.theme-casual .art-one {
  display: none;
}

.theme-casual .art-two {
  display: none;
}

.theme-casual .art-three,
.theme-casual .art-four,
.theme-casual .art-five {
  display: none;
}

.theme-today .scene-art::before {
  right: clamp(18px, 7vw, 130px);
  top: 9%;
  width: clamp(310px, 43vw, 620px);
  height: clamp(220px, 32vw, 420px);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255, 186, 99, 0.28), transparent 60%),
    radial-gradient(ellipse at 68% 70%, rgba(168, 239, 115, 0.18), transparent 60%);
  filter: blur(1px);
  animation: panelFloat 7s ease-in-out infinite;
}

.theme-today .scene-art::after {
  display: none;
}

.theme-today .feature-art {
  right: clamp(0px, 4vw, 70px);
  top: 7%;
  width: min(56vw, 720px);
  max-height: 76vh;
  opacity: 1;
  filter:
    brightness(1.42)
    saturate(1.46)
    contrast(1.1)
    drop-shadow(0 32px 76px rgba(38, 69, 15, 0.34))
    drop-shadow(0 0 70px rgba(255, 170, 69, 0.34))
    drop-shadow(0 0 44px rgba(132, 238, 99, 0.24));
}

.theme-today .feature-art:not([hidden]) {
  animation: featureFloat 6.2s ease-in-out infinite, featureEnter 850ms ease both;
}

.theme-today .art-one {
  display: none;
}

.theme-today .art-two {
  display: none;
}

.theme-today .art-three {
  display: none;
}

.theme-today .art-four,
.theme-today .art-five {
  display: none;
}

.theme-social .scene-art::after {
  right: clamp(18px, 7vw, 130px);
  top: 9%;
  width: clamp(310px, 43vw, 620px);
  height: clamp(220px, 32vw, 420px);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, 0.28), transparent 60%),
    radial-gradient(ellipse at 68% 70%, rgba(82, 151, 224, 0.18), transparent 60%);
  filter: blur(1px);
  animation: panelFloat 7s ease-in-out infinite;
}

.theme-social .feature-art {
  right: clamp(0px, 4vw, 70px);
  top: 7%;
  width: min(56vw, 720px);
  max-height: 76vh;
  opacity: 1;
  filter:
    brightness(0.98)
    saturate(1.12)
    contrast(1.1)
    drop-shadow(0 32px 76px rgba(30, 52, 72, 0.28))
    drop-shadow(0 0 62px rgba(108, 178, 255, 0.32))
    drop-shadow(0 0 34px rgba(255, 224, 165, 0.18));
}

.theme-social .feature-art:not([hidden]) {
  animation: featureFloat 6.6s ease-in-out infinite, featureEnter 850ms ease both;
}

.theme-social .art-one {
  display: none;
}

.theme-social .art-two {
  display: none;
}

.theme-social .art-three {
  display: none;
}

.theme-social .art-four,
.theme-social .art-five {
  display: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  align-self: start;
  animation: fadeInDown 720ms ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--button-a), var(--button-b));
  color: var(--button-ink);
  box-shadow: 0 14px 36px color-mix(in srgb, var(--button-a) 24%, transparent);
}

.age-pill {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.hero-content {
  width: min(720px, 100%);
  align-self: center;
  padding: clamp(28px, 7vw, 64px) 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-2);
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 900;
  text-transform: uppercase;
  animation: fadeInUp 700ms ease 80ms both;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(48px, 10vw, 104px);
  line-height: 0.94;
  letter-spacing: 0;
  animation: fadeInUp 780ms ease 180ms both;
}

.subcopy {
  width: min(610px, 100%);
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(17px, 2.6vw, 22px);
  line-height: 1.45;
  animation: fadeInUp 780ms ease 300ms both;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 780ms ease 420ms both;
}

.continue-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--button-a), var(--button-b));
  color: var(--button-ink);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 48px color-mix(in srgb, var(--button-a) 24%, transparent);
  animation: buttonBreath 2.8s ease-in-out infinite;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.continue-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
}

.microcopy {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.4;
}

.trust-band,
.quick-notes,
.terms {
  padding-inline: clamp(18px, 5vw, 72px);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: -34px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.notice {
  display: grid;
  gap: 8px;
  min-height: 146px;
  align-content: start;
  padding: 28px 24px 26px;
  background: var(--panel);
}

.notice:first-child {
  border-radius: 7px 0 0 7px;
}

.notice:last-child {
  border-radius: 0 7px 7px 0;
}

.notice strong {
  color: var(--ink);
  font-size: 16px;
}

.notice span,
.terms p {
  color: var(--muted);
  line-height: 1.55;
}

.quick-notes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 14px auto 0;
  padding: 0;
  background: transparent;
}

.quick-notes span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 35, 25, 0.72);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.terms {
  padding-top: 54px;
  padding-bottom: 58px;
  background: var(--bg);
}

.terms h2 {
  margin-bottom: 20px;
  font-size: clamp(26px, 5vw, 44px);
  letter-spacing: 0;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.terms p {
  margin-bottom: 0;
  font-size: 14px;
}

.rules-footer {
  padding: 42px clamp(18px, 5vw, 72px) 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  text-align: center;
}

.rules-footer h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
}

.rules-intro {
  width: min(760px, 100%);
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.rules-links {
  display: flex;
  width: min(820px, 100%);
  margin: 0 auto 24px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.rules-links a {
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 7px;
}

.rules-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.rules-age span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #ff463f;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.rules-age p,
.rules-small {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.theme-play {
  --bg: #120823;
  --hero-a: #170526;
  --hero-b: #241169;
  --hero-c: #ff5fd2;
  --accent: #ff86e5;
  --accent-2: #79e7ff;
  --button-a: #ffffff;
  --button-b: #ff7ce6;
  --shape-a: #ffffff;
  --shape-b: #74e8ff;
  --shape-c: #ff7ce6;
  --panel: rgba(15, 8, 22, 0.92);
}

.theme-picks {
  --bg: #1f2c1e;
  --hero-a: #f0a35a;
  --hero-b: #254d39;
  --hero-c: #ffd487;
  --accent: #ffc36b;
  --accent-2: #ffe3a6;
  --button-a: #ffe0a5;
  --button-b: #d97f3d;
  --shape-a: #fff0c7;
  --shape-b: #f4a35d;
  --shape-c: #74c69d;
  --panel: rgba(37, 34, 23, 0.9);
}

.theme-daily {
  --bg: #071527;
  --hero-a: #071527;
  --hero-b: #123d5a;
  --hero-c: #68d8ff;
  --accent: #6fc7ff;
  --accent-2: #9be8ff;
  --button-a: #b4edff;
  --button-b: #3c8fff;
  --button-ink: #061220;
  --shape-a: #9be8ff;
  --shape-b: #4c96ff;
  --shape-c: #d6fbff;
  --panel: rgba(5, 14, 26, 0.9);
}

.theme-daily .hero::before {
  background:
    linear-gradient(112deg, transparent 16%, rgba(116, 228, 255, 0.18) 38%, transparent 58%),
    linear-gradient(82deg, transparent 39%, rgba(72, 154, 255, 0.18) 52%, transparent 68%);
  opacity: 0.82;
}

.theme-daily .hero::after {
  background:
    linear-gradient(0deg, #06101f 0%, rgba(6, 16, 31, 0.82) 28%, rgba(6, 16, 31, 0.22) 46%, transparent 62%);
}

.theme-arcade {
  --bg: #130f0a;
  --hero-a: #120d09;
  --hero-b: #33200f;
  --hero-c: #d7a94b;
  --accent: #d7a94b;
  --accent-2: #f1d28b;
  --button-a: #f3d88b;
  --button-b: #9d6c2f;
  --shape-a: #ffe5a0;
  --shape-b: #c7953e;
  --shape-c: #9a6a35;
  --panel: rgba(16, 12, 8, 0.92);
}

.theme-lounge {
  --bg: #19112f;
  --hero-a: #241342;
  --hero-b: #225a85;
  --hero-c: #ff8dc8;
  --accent: #ff9acb;
  --accent-2: #a9d8ff;
  --button-a: #ffd3ef;
  --button-b: #8cbcff;
  --button-ink: #160d26;
  --shape-a: #ffd7ef;
  --shape-b: #8cd1ff;
  --shape-c: #c5a1ff;
  --panel: rgba(20, 13, 34, 0.9);
}

.theme-lounge .hero::after {
  background:
    linear-gradient(0deg, #140d22 0%, rgba(20, 13, 34, 0.76) 28%, rgba(20, 13, 34, 0.18) 46%, transparent 62%);
}

.theme-preview {
  --bg: #08231a;
  --hero-a: #062018;
  --hero-b: #0d4d3a;
  --hero-c: #8adbb8;
  --accent: #8adbb8;
  --accent-2: #b5efcc;
  --button-a: #aff0c8;
  --button-b: #c4a85a;
  --shape-a: #d7ffe4;
  --shape-b: #71d4a5;
  --shape-c: #d4b85c;
  --panel: rgba(6, 24, 18, 0.9);
}

.theme-casual {
  color-scheme: light;
  --bg: #f6ead9;
  --ink: #2a2117;
  --muted: rgba(42, 33, 23, 0.72);
  --hero-a: #fff3df;
  --hero-b: #f7b36b;
  --hero-c: #ffffff;
  --accent: #d77b35;
  --accent-2: #9f6f33;
  --button-a: #f08c42;
  --button-b: #ffc77a;
  --button-ink: #2a1407;
  --shape-a: #ffffff;
  --shape-b: #ffd08a;
  --shape-c: #f19b62;
  --panel: rgba(255, 249, 239, 0.86);
}

.theme-casual .hero::after,
.theme-social .hero::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.34) 50%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 38%);
}

.theme-casual .age-pill,
.theme-social .age-pill,
.theme-casual .microcopy,
.theme-social .microcopy {
  color: rgba(42, 33, 23, 0.72);
  border-color: rgba(42, 33, 23, 0.18);
}

.theme-casual .quick-notes,
.theme-social .quick-notes,
.theme-casual .rules-footer,
.theme-social .rules-footer {
  background: rgba(0, 0, 0, 0.035);
}

.theme-today {
  --bg: #18351d;
  --hero-a: #1f6f3b;
  --hero-b: #f09a3e;
  --hero-c: #ffe082;
  --accent: #ffb45d;
  --accent-2: #d5ff9a;
  --button-a: #ffba63;
  --button-b: #ff7a35;
  --button-ink: #271104;
  --shape-a: #fff4b8;
  --shape-b: #a8ef73;
  --shape-c: #ff8e49;
  --panel: rgba(19, 38, 20, 0.9);
}

.theme-social {
  color-scheme: light;
  --bg: #eef3f6;
  --ink: #17202a;
  --muted: rgba(23, 32, 42, 0.68);
  --hero-a: #f7fbff;
  --hero-b: #cfdce6;
  --hero-c: #ffffff;
  --accent: #6e8292;
  --accent-2: #52708a;
  --button-a: #ffffff;
  --button-b: #c8d5df;
  --button-ink: #17202a;
  --shape-a: #ffffff;
  --shape-b: #b9cad8;
  --shape-c: #8fa7b8;
  --panel: rgba(255, 255, 255, 0.82);
}

.theme-games {
  --bg: #0b241b;
  --hero-a: #0b241b;
  --hero-b: #154734;
  --hero-c: #d8b45a;
  --accent: #d8b45a;
  --accent-2: #7cc7a7;
  --button-a: #f2d985;
  --button-b: #b88744;
  --shape-a: #ffe7a6;
  --shape-b: #77e5bb;
  --shape-c: #bf7156;
  --panel: rgba(12, 10, 8, 0.9);
}

.theme-daily .scene-art::before,
.theme-preview .scene-art::before,
.theme-social .scene-art::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  animation: gridSlide 12s linear infinite;
}

.theme-social .scene-art::before {
  background-image: linear-gradient(110deg, transparent 0 45%, rgba(82, 112, 138, 0.24) 50%, transparent 55%);
  background-size: 220px 100%;
}

@keyframes ambientSweep {
  0% {
    transform: translate3d(-6%, -2%, 0) rotate(0deg);
    opacity: 0.42;
  }

  100% {
    transform: translate3d(8%, 3%, 0) rotate(2deg);
    opacity: 0.76;
  }
}

@keyframes heroDrift {
  0% {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.06) translate3d(-1.2%, -0.7%, 0);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(10px, -18px, 0) rotate(10deg);
  }
}

@keyframes buttonBreath {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.08);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -12px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes gridSlide {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 56px 56px;
  }
}

@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -14px, 0) scale(1.02);
  }
}

@keyframes goldSweep {
  0%,
  100% {
    box-shadow:
      0 28px 90px rgba(0, 0, 0, 0.22),
      inset 0 0 42px rgba(255, 255, 255, 0.08);
  }

  50% {
    box-shadow:
      0 30px 96px rgba(0, 0, 0, 0.24),
      inset 0 0 58px rgba(243, 216, 139, 0.22);
  }
}

@keyframes softRotate {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(5deg) translate3d(0, -12px, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

@keyframes vegasGlow {
  0%,
  100% {
    opacity: 0.72;
    filter: drop-shadow(0 0 26px rgba(243, 216, 139, 0.22));
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 42px rgba(243, 216, 139, 0.38));
  }
}

@keyframes pageSway {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@keyframes speedLine {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-12deg);
  }

  50% {
    transform: translate3d(18px, -8px, 0) rotate(-12deg);
  }
}

@keyframes lineSlide {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-12px, 8px, 0);
  }
}

@keyframes shipDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }

  50% {
    transform: translate3d(0, -14px, 0) rotate(2deg);
  }
}

@keyframes scannerMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.55;
  }

  50% {
    transform: translate3d(-36px, 42px, 0);
    opacity: 1;
  }
}

@keyframes reelFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    filter: brightness(1);
  }

  50% {
    transform: translate3d(0, -10px, 0);
    filter: brightness(1.08);
  }
}

@keyframes orbitGlow {
  0%,
  100% {
    opacity: 0.62;
    scale: 0.98;
  }

  50% {
    opacity: 1;
    scale: 1.04;
  }
}

@keyframes cardOrbitOne {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateX(135px) rotate(8deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg) translateX(135px) rotate(-352deg);
  }
}

@keyframes cardOrbitTwo {
  from {
    transform: translate(-50%, -50%) rotate(120deg) translateX(135px) rotate(-120deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(480deg) translateX(135px) rotate(-480deg);
  }
}

@keyframes cardOrbitThree {
  from {
    transform: translate(-50%, -50%) rotate(240deg) translateX(135px) rotate(-248deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(600deg) translateX(135px) rotate(-608deg);
  }
}

@keyframes diamondHover {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
    filter: brightness(1);
  }

  50% {
    transform: translate(-50%, calc(-50% - 10px)) rotate(45deg) scale(1.06);
    filter: brightness(1.12);
  }
}

@keyframes featureEnter {
  from {
    opacity: 0;
    transform: translate3d(24px, 12px, 0) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes featureFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@keyframes fountainJet {
  0%,
  100% {
    transform: scaleY(0.78);
    opacity: 0.46;
  }

  50% {
    transform: scaleY(1.08);
    opacity: 0.92;
  }
}

@keyframes fireworksPulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.98);
    filter: blur(0);
  }

  45% {
    opacity: 1;
    transform: scale(1.04);
    filter: blur(0.2px);
  }

  70% {
    opacity: 0.72;
    transform: scale(1.01);
  }
}

@media (max-width: 900px) {
  .trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .notice:first-child,
  .notice:last-child {
    border-radius: 0;
  }
}

@media (max-width: 780px) {
  .home-hero {
    min-height: auto;
    padding: 22px 18px 34px;
  }

  .home-topbar {
    margin-bottom: 18px;
  }

  .home-hero-grid {
    display: flex;
    flex-direction: column;
  }

  .home-feature {
    order: -1;
  }

  .home-copy h1 {
    max-width: 9ch;
    margin-bottom: 16px;
    font-size: clamp(50px, 16vw, 72px);
  }

  .home-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .home-actions {
    margin-top: 24px;
  }

  .home-actions .continue-btn,
  .home-secondary {
    width: 100%;
    min-height: 54px;
  }

  .home-note-row {
    gap: 8px;
  }

  .home-feature {
    display: block;
    width: 100%;
    min-height: 260px;
    margin-top: 0;
    margin-bottom: 24px;
    border: 0;
    border-radius: 0;
    background:
      linear-gradient(0deg, rgba(6, 20, 15, 0.35), rgba(6, 20, 15, 0.05)),
      url("/assets/home-statue-liberty-entertainment.png") 62% 34% / cover no-repeat;
    box-shadow: none;
    flex: 0 0 auto;
  }

  .home-feature::after {
    background:
      linear-gradient(0deg, rgba(6, 20, 15, 0.74) 0%, rgba(6, 20, 15, 0.18) 42%, transparent 72%);
  }

  .home-feature img {
    opacity: 0;
  }

  .home-feature strong {
    font-size: 34px;
  }

  .home-picks {
    padding: 10px 18px 36px;
  }

  .home-section-head {
    display: block;
  }

  .home-section-head h2 {
    font-size: 38px;
  }

  .pick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .pick-card {
    min-height: 210px;
    border-radius: 14px;
  }

  .pick-card strong {
    font-size: 19px;
  }

  .home-trust {
    grid-template-columns: 1fr;
    padding: 0 18px 28px;
  }

  .home-footer {
    padding-inline: 18px;
  }

  .hero {
    min-height: 100svh;
    padding-top: max(18px, env(safe-area-inset-top));
    padding-bottom: 28px;
    grid-template-rows: auto 1fr;
  }

  .topbar {
    gap: 12px;
    padding-top: 0;
  }

  .brand {
    min-width: 0;
    font-size: 15px;
  }

  .brand span:last-child {
    overflow: hidden;
    max-width: 160px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(38px, 13vw, 58px);
    line-height: 0.98;
  }

  .hero-content {
    width: min(100%, 420px);
    align-self: end;
    padding: 24px 0 18px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .subcopy {
    width: min(100%, 390px);
    margin-bottom: 22px;
    font-size: 15px;
  }

  .visual-layer img {
    opacity: 0.58;
  }

  .feature-art {
    right: -22vw;
    top: 18%;
    width: 88vw;
    max-height: 54svh;
    opacity: 0.72;
  }

  .scene-art {
    opacity: 0.78;
  }

  .art-item {
    transform-origin: center;
  }

  .trust-band,
  .terms-grid {
    grid-template-columns: 1fr;
  }

  .trust-band {
    width: 100%;
    margin: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .notice {
    min-height: 112px;
    padding: 22px 18px;
  }

  .rules-links {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .home-copy h1 {
    font-size: 48px;
  }

  .home-feature {
    min-height: 240px;
  }

  .pick-grid {
    grid-template-columns: 1fr;
  }

  .pick-card {
    min-height: 240px;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .age-pill {
    padding: 8px 10px;
  }

  .continue-btn {
    width: 100%;
    min-height: 54px;
  }

  .microcopy {
    max-width: none;
    text-align: center;
  }

  .cta-row {
    gap: 12px;
  }

  .quick-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 32px);
  }

  .quick-notes span {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .feature-art {
    right: -34vw;
    top: 20%;
    width: 104vw;
    max-height: 50svh;
  }

  .rules-footer {
    padding-top: 24px;
  }

  .rules-intro {
    font-size: 12px;
  }

  .rules-links {
    flex-direction: column;
    gap: 12px;
  }

  .rules-age {
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 100svh;
    padding-top: 24px;
    padding-bottom: 22px;
  }

  .brand {
    gap: 9px;
    font-size: 14px;
  }

  .brand span:last-child {
    max-width: 140px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .age-pill {
    padding: 8px 10px;
    font-size: 11px;
  }

  .hero-content {
    align-self: end;
    padding-bottom: 16px;
  }

  h1 {
    max-width: 9.5ch;
    margin-bottom: 16px;
    font-size: clamp(42px, 13.2vw, 56px);
  }

  .subcopy {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.48;
  }

  .microcopy {
    font-size: 11px;
    line-height: 1.35;
  }

  .theme-games .hero-content {
    padding-bottom: 26px;
  }

  .theme-games .visual-layer img {
    object-position: 78% 62%;
    opacity: 0.9;
    transform: translateY(-18%) scale(0.9);
    animation: none;
  }

  .theme-games .hero::after {
    background:
      linear-gradient(90deg, rgba(5, 15, 12, 0.78) 0%, rgba(5, 15, 12, 0.42) 48%, rgba(5, 15, 12, 0.06) 100%),
      linear-gradient(0deg, var(--bg) 0%, transparent 36%);
  }

  .theme-games .scene-art {
    opacity: 1;
  }

  .theme-games .art-one,
  .theme-games .art-two,
  .theme-games .art-three,
  .theme-games .art-four,
  .theme-games .art-five {
    opacity: 0.95;
  }

  .theme-play .scene-art::after,
  .theme-picks .scene-art::after,
  .theme-daily .scene-art::after,
  .theme-lounge .scene-art::after,
  .theme-preview .scene-art::after,
  .theme-casual .scene-art::after,
  .theme-today .scene-art::after,
  .theme-social .scene-art::after {
    right: -22vw;
    top: 15%;
    width: 86vw;
    max-width: none;
    opacity: 0.9;
  }

  .theme-arcade .feature-art {
    right: -30vw;
    top: 12%;
    width: 110vw;
    max-height: 58svh;
    opacity: 0.94;
  }

  .theme-arcade .scene-art::before {
    right: -18vw;
    top: 8%;
    width: 104vw;
    height: 44svh;
  }

  .theme-arcade .art-one {
    right: 34%;
    top: 16%;
    height: 190px;
  }

  .theme-arcade .art-two {
    right: 20%;
    top: 22%;
    height: 150px;
  }

  .theme-arcade .art-three {
    right: 8%;
    top: 27%;
    height: 126px;
  }

  .theme-play .scene-art::after {
    display: none;
  }

  .theme-play .feature-art {
    right: -12vw;
    top: 2%;
    width: 128vw;
    max-height: 64svh;
    opacity: 1;
  }

  .theme-picks .scene-art::before {
    display: none;
  }

  .theme-picks .feature-art {
    right: -18vw;
    top: 3%;
    width: 134vw;
    max-height: 64svh;
    opacity: 1;
  }

  .theme-daily .scene-art::after,
  .theme-preview .scene-art::after,
  .theme-social .scene-art::after {
    height: 42svh;
  }

  .theme-daily .feature-art {
    right: -20vw;
    top: 3%;
    width: 138vw;
    max-height: 64svh;
    opacity: 1;
  }

  .theme-lounge .feature-art {
    right: -18vw;
    top: 3%;
    width: 136vw;
    max-height: 64svh;
    opacity: 1;
  }

  .theme-casual .feature-art {
    right: -18vw;
    top: 3%;
    width: 136vw;
    max-height: 64svh;
    opacity: 1;
  }

  .theme-today .feature-art {
    right: -18vw;
    top: 3%;
    width: 136vw;
    max-height: 64svh;
    opacity: 1;
  }

  .theme-social .feature-art {
    right: -18vw;
    top: 3%;
    width: 136vw;
    max-height: 64svh;
    opacity: 1;
  }

  .theme-preview .scene-art::after {
    left: 72%;
    top: 32%;
    width: 78vw;
    height: auto;
  }

  .theme-preview .feature-art {
    right: -34vw;
    top: 8%;
    width: 116vw;
    max-height: 62svh;
    opacity: 1;
  }

  .theme-preview .art-one,
  .theme-preview .art-two,
  .theme-preview .art-three,
  .theme-preview .art-four,
  .theme-preview .art-five {
    left: 72%;
    top: 32%;
  }

  .theme-preview .art-one {
    width: 62px;
    height: 94px;
  }

  .theme-preview .art-two {
    width: 62px;
    height: 94px;
  }

  .theme-preview .art-three {
    width: 62px;
    height: 94px;
  }

  .theme-preview .art-four {
    width: 72px;
    height: 72px;
  }

  .theme-preview .art-five {
    width: 150px;
    height: 150px;
  }

  .theme-casual .scene-art::before {
    right: 12vw;
    top: 16%;
    width: 44vw;
    height: 42svh;
  }

  .theme-today .scene-art::before {
    right: -4vw;
    top: 14%;
    width: 72vw;
  }
}

@media (max-width: 390px) {
  .brand span:last-child {
    max-width: 116px;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    font-size: clamp(40px, 12.8vw, 52px);
  }
}

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