:root {
  --ink-950: #191718;
  --ink-900: #211e1f;
  --ink-850: #292526;
  --ink-800: #332f30;
  --ink-750: #3d3739;
  --ink-650: #574b4f;
  --cream: #fffaf3;
  --muted: #d4c9c4;
  --peach: #ffad74;
  --peach-strong: #ff9254;
  --gold: #d8ab67;
  --burgundy: #6f233a;
  --success: #61c792;
  --warning: #f0ad75;
  --line: rgba(255, 173, 116, 0.24);
  --shadow: 0 16px 44px rgba(4, 3, 4, 0.28);
  --header-height: 75px;
  --block-gap: 20px;
  --section-radius: 6px;
  --container: 1600px;
  --asset-version: "nc-es-20260826-43";
  --preference-stack-height: 0px;
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: 95px;
  scrollbar-gutter: stable;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--cream);
  background-color: var(--ink-900);
  background-image:
    linear-gradient(135deg, rgba(216, 171, 103, 0.028) 12.5%, transparent 12.5%, transparent 50%, rgba(216, 171, 103, 0.028) 50%, rgba(216, 171, 103, 0.028) 62.5%, transparent 62.5%),
    linear-gradient(45deg, rgba(255, 173, 116, 0.022) 12.5%, transparent 12.5%, transparent 50%, rgba(255, 173, 116, 0.022) 50%, rgba(255, 173, 116, 0.022) 62.5%, transparent 62.5%);
  background-size: 54px 54px;
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

body.menu-open {
  overflow: hidden;
}

body.dialog-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
p,
ul,
ol,
.table-wrap,
.faq-answer {
  width: 100%;
  max-width: none;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 110;
  padding: 10px 14px;
  border: 1px solid var(--peach);
  border-radius: 5px;
  color: #261d19;
  background: var(--peach);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-height);
  border-bottom: 1px solid rgba(216, 171, 103, 0.22);
  background: rgba(41, 37, 38, 0.97);
  box-shadow: 0 10px 28px rgba(9, 7, 8, 0.24);
  backdrop-filter: blur(12px);
}

.reading-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.055);
  pointer-events: none;
}

.reading-progress-fill {
  display: block;
  width: var(--reading-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--burgundy), var(--peach), var(--gold));
  box-shadow: 0 0 12px rgba(255, 173, 116, 0.38);
}

.reading-progress-chip {
  position: absolute;
  top: 50%;
  left: var(--reading-progress, 0%);
  width: 10px;
  height: 10px;
  border: 2px solid var(--peach);
  border-radius: 50%;
  background: var(--ink-850);
  box-shadow: 0 0 0 2px rgba(255, 173, 116, 0.16);
  transform: translate(-50%, -50%);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: min(calc(100% - 60px), var(--container));
  height: 100%;
  margin: 0 auto;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-link img {
  width: 142px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}

.primary-nav a,
.mobile-nav-links a,
.footer-column a,
.article-nav a {
  position: relative;
  color: var(--muted);
  font-weight: 600;
  transition: color 180ms ease;
}

.primary-nav a::before,
.primary-nav a::after,
.footer-column a::before,
.footer-column a::after,
.article-nav a::before,
.article-nav a::after {
  position: absolute;
  right: 50%;
  left: 50%;
  height: 1px;
  content: "";
  background: var(--peach);
  transition: right 200ms ease, left 200ms ease;
}

.primary-nav a::before,
.footer-column a::before,
.article-nav a::before {
  bottom: -6px;
}

.primary-nav a::after,
.footer-column a::after,
.article-nav a::after {
  bottom: -9px;
  background: var(--gold);
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.footer-column a:hover,
.article-nav a:hover,
.article-nav a.is-active {
  color: var(--cream);
}

.primary-nav a:hover::before,
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::before,
.primary-nav a[aria-current="page"]::after,
.footer-column a:hover::before,
.footer-column a:hover::after,
.article-nav a:hover::before,
.article-nav a:hover::after,
.article-nav a.is-active::before,
.article-nav a.is-active::after {
  right: 0;
  left: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.local-clock {
  display: none;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(216, 171, 103, 0.2);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(25, 23, 24, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.has-js .local-clock {
  display: inline-flex;
}

.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 162px;
  min-height: 44px;
  padding: 10px 22px;
  overflow: hidden;
  border: 1px solid var(--peach);
  border-radius: 5px;
  color: #261d19;
  background: linear-gradient(180deg, #ffc18f, var(--peach));
  box-shadow: 0 8px 22px rgba(255, 146, 84, 0.17);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transform: translateY(0);
  transition: transform 140ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cta:hover {
  background: linear-gradient(180deg, #ffd0aa, #ff9a5c);
  box-shadow: 0 11px 28px rgba(255, 146, 84, 0.27);
  transform: translateY(-2px);
}

.cta:active,
.cta.is-pressed {
  box-shadow: 0 4px 12px rgba(255, 146, 84, 0.15);
  transform: translateY(1px) scale(0.985);
}

.cta-secondary {
  color: var(--cream);
  border-color: rgba(255, 173, 116, 0.68);
  background: transparent;
  box-shadow: none;
}

.cta-secondary:hover {
  color: #261d19;
  background: var(--peach);
}

.cta-ripple {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 250, 243, 0.75);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.25);
  animation: chip-ring 430ms ease-out forwards;
}

@keyframes chip-ring {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(4.3);
  }
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 42px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--cream);
  background: var(--ink-800);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 210ms ease, width 180ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  width: 22px;
  transform: translateY(7px) rotate(34deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  width: 17px;
  transform: rotate(-12deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  width: 22px;
  transform: translateY(-7px) rotate(-34deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  z-index: 82;
  display: grid;
  gap: 20px;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(216, 171, 103, 0.25);
  border-top: 0;
  border-radius: 0 0 6px 6px;
  background: var(--ink-850);
  box-shadow: var(--shadow);
}

.mobile-menu[hidden],
.menu-scrim[hidden] {
  display: none;
}

.mobile-nav-links,
.mobile-actions {
  display: grid;
  gap: 12px;
}

.mobile-nav-links a {
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-nav-links a[aria-current="page"] {
  color: var(--peach);
}

.mobile-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mobile-actions .cta {
  width: 100%;
  min-width: 0;
}

.menu-scrim {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 70;
  background: rgba(9, 7, 8, 0.64);
}

.site-shell {
  width: min(calc(100% - 60px), var(--container));
  margin: var(--block-gap) auto 0;
}

.site-grid {
  display: grid;
  grid-template-columns: 240px 20px minmax(0, 1020px) 20px 240px;
  align-items: start;
}

.left-rail {
  grid-column: 1;
}

.page-main {
  min-width: 0;
  grid-column: 3;
}

.right-rail {
  grid-column: 5;
}

.left-rail,
.right-rail {
  position: sticky;
  top: 95px;
  display: grid;
  gap: 14px;
  max-height: calc(100vh - 115px);
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.rail-card {
  padding: 16px;
  border: 1px solid rgba(216, 171, 103, 0.2);
  border-radius: var(--section-radius);
  background: var(--ink-850);
  box-shadow: 0 10px 26px rgba(6, 5, 6, 0.16);
}

.rail-card > h2,
.rail-card > .rail-heading,
.app-rail > h2 {
  display: block;
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.35;
}

.rail-feature {
  isolation: isolate;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  justify-content: stretch;
  gap: 11px;
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding: 8px 16px 8px 10px;
  text-align: left;
}

.rail-feature::after {
  position: absolute;
  top: -55%;
  bottom: -55%;
  left: -34%;
  z-index: 0;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 243, 0.42), transparent);
  content: "";
  pointer-events: none;
  transform: translateX(-180%) rotate(16deg);
  animation: rail-feature-sweep 4.8s ease-in-out infinite;
}

.rail-feature-promotions::after {
  animation-delay: 1.4s;
}

.rail-feature-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 173, 116, 0.7);
  border-radius: 50%;
  background: #292526;
  box-shadow: 0 5px 13px rgba(38, 29, 25, 0.28), inset 0 0 0 3px rgba(255, 173, 116, 0.08);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.rail-feature-icon img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(255, 146, 84, 0.26));
}

.rail-feature-live .rail-feature-icon img {
  animation: rail-feature-live 2.8s ease-in-out infinite;
}

.rail-feature-promotions .rail-feature-icon img {
  width: 21px;
  height: 21px;
  animation: rail-feature-promotions 7s linear infinite;
}

.rail-feature-label {
  position: relative;
  z-index: 1;
}

.rail-feature:hover .rail-feature-icon,
.rail-feature:focus-visible .rail-feature-icon {
  box-shadow: 0 7px 17px rgba(38, 29, 25, 0.36), 0 0 0 3px rgba(255, 250, 243, 0.2);
  transform: scale(1.08);
}

.rail-feature .cta-ripple {
  z-index: 3;
}

@keyframes rail-feature-sweep {
  0%,
  58% {
    opacity: 0;
    transform: translateX(-180%) rotate(16deg);
  }
  70% {
    opacity: 0.8;
  }
  84%,
  100% {
    opacity: 0;
    transform: translateX(650%) rotate(16deg);
  }
}

@keyframes rail-feature-live {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-2px) rotate(3deg);
  }
}

@keyframes rail-feature-promotions {
  to {
    transform: rotate(360deg);
  }
}

.rail-link {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 9px 4px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  transition: color 160ms ease, transform 160ms ease;
}

.rail-link:last-child {
  border-bottom: 0;
}

.rail-link:hover {
  color: var(--cream);
  transform: translateX(2px);
}

.rail-icon {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  justify-self: center;
}

.article-nav {
  display: grid;
  gap: 10px;
}

.article-nav a {
  padding: 4px 0;
  font-size: 12px;
  line-height: 1.4;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  color: var(--peach);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.app-rail p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
}

.mini-store-stack {
  display: grid;
  gap: 10px;
}

.store-button {
  display: inline-grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 190px;
  min-width: 190px;
  height: 56px;
  min-height: 56px;
  padding: 8px 13px;
  color: var(--cream);
  border-color: rgba(255, 173, 116, 0.5);
  background: rgba(41, 37, 38, 0.9);
  box-shadow: 0 10px 24px rgba(6, 5, 6, 0.22);
  text-align: left;
}

.store-button:hover {
  color: var(--cream);
  background: var(--ink-750);
}

.store-button img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.store-copy {
  display: grid;
  grid-template-rows: repeat(2, auto);
  gap: 1px;
  min-width: 0;
}

.store-copy span,
.store-copy strong {
  display: block;
  white-space: nowrap;
}

.store-copy span {
  font-size: 9px;
  font-weight: 600;
  line-height: 1.2;
}

.store-copy strong {
  font-size: 15px;
  line-height: 1.15;
}

.mini-store-stack .store-button {
  width: 100%;
  min-width: 0;
}

.game-shortcuts {
  display: grid;
  gap: 12px;
}

.game-shortcut {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 118px;
  overflow: hidden;
  border: 1px solid rgba(216, 171, 103, 0.24);
  border-radius: var(--section-radius);
  background: var(--ink-850);
  box-shadow: 0 10px 24px rgba(6, 5, 6, 0.18);
}

.game-shortcut::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 20%, rgba(20, 16, 18, 0.94));
}

.game-shortcut img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
  transition: transform 260ms ease;
}

.game-shortcut:hover img {
  transform: scale(1.035);
}

.game-shortcut span {
  position: relative;
  z-index: 1;
  padding: 12px;
  font-weight: 800;
}

.featured-games-carousel {
  min-width: 0;
}

.featured-games-carousel.is-enhanced .game-shortcuts {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.featured-games-carousel.is-enhanced .game-shortcuts::-webkit-scrollbar {
  display: none;
}

.featured-games-carousel.is-enhanced .game-shortcut {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.game-shortcut::before,
.marquee-game::before,
.inline-game-card::before {
  position: absolute;
  inset: auto 8px 8px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 173, 116, 0.42);
  border-radius: 4px;
  color: var(--cream);
  background: rgba(25, 23, 24, 0.9);
  box-shadow: 0 8px 20px rgba(4, 3, 4, 0.32);
  content: attr(data-category) " \00b7 " attr(data-action);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
  transform: translateY(7px);
  transition: opacity 170ms ease, transform 170ms ease;
}

.game-shortcut:hover::before,
.game-shortcut:focus-visible::before,
.marquee-game:hover::before,
.marquee-game:focus-visible::before,
.inline-game-card:hover::before,
.inline-game-card:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.game-shortcut:hover span,
.game-shortcut:focus-visible span,
.marquee-game:hover .marquee-game-title,
.marquee-game:focus-visible .marquee-game-title,
.inline-game-card:hover .inline-game-card-copy,
.inline-game-card:focus-visible .inline-game-card-copy {
  opacity: 0;
}

.featured-games-controls {
  display: none;
  grid-template-columns: 34px minmax(0, 1fr) 34px 34px;
  align-items: center;
  gap: 6px;
  padding-top: 8px;
}

.has-js .featured-games-controls {
  display: grid;
}

.featured-games-controls button,
.game-category-controls button,
.promo-wheel-spin,
.preference-notice button,
.welcome-loader button {
  min-height: 38px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 173, 116, 0.45);
  border-radius: 5px;
  color: var(--cream);
  background: var(--ink-800);
  font-weight: 800;
  cursor: pointer;
}

.featured-games-controls button:hover,
.game-category-controls button:hover,
.promo-wheel-spin:hover,
.preference-notice button:hover,
.welcome-loader button:hover {
  border-color: var(--peach);
  background: var(--ink-750);
}

.featured-status {
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.mobile-toc {
  display: none;
  margin-top: var(--block-gap);
  border: 1px solid rgba(216, 171, 103, 0.24);
  border-radius: var(--section-radius);
  background: var(--ink-850);
}

.mobile-toc summary {
  min-height: 48px;
  padding: 12px 16px;
  color: var(--cream);
  font-weight: 800;
  cursor: pointer;
}

.mobile-toc nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0 12px 12px;
}

.mobile-toc a {
  padding: 9px 10px;
  border-left: 2px solid transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.mobile-toc a:hover,
.mobile-toc a.is-active {
  color: var(--cream);
  border-left-color: var(--peach);
  background: rgba(255, 173, 116, 0.065);
}

.game-marquee {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: min(calc(100% - 60px), var(--container));
  margin: 14px auto 0;
}

.game-marquee-viewport {
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  touch-action: pan-x;
  border: 1px solid rgba(216, 171, 103, 0.22);
  border-radius: var(--section-radius);
  background: rgba(16, 18, 20, 0.96);
  mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 18px), transparent);
}

.game-marquee-viewport::-webkit-scrollbar {
  display: none;
}

.game-marquee-viewport:focus-visible {
  outline: 2px solid var(--peach);
  outline-offset: 2px;
}

.game-marquee-track {
  display: flex;
  width: max-content;
}

.game-marquee-group {
  display: flex;
  gap: 7px;
  padding: 7px;
}

.game-marquee-group[data-marquee-clone] {
  display: none;
  padding-left: 0;
}

.has-js .game-marquee-group[data-marquee-clone] {
  display: flex;
}

.marquee-game {
  position: relative;
  display: grid;
  grid-template-rows: 72px 30px;
  flex: 0 0 126px;
  width: 126px;
  height: 102px;
  overflow: hidden;
  border: 1px solid rgba(216, 171, 103, 0.24);
  border-radius: 6px;
  background: #151719;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.22);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.marquee-game:hover,
.marquee-game:focus-visible {
  z-index: 3;
  border-color: rgba(255, 173, 116, 0.78);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 173, 116, 0.2);
  transform: translateY(-2px);
}

.marquee-game-art {
  display: block;
  width: 100%;
  height: 72px;
  background-image: var(--game-shelf-image);
  background-position: var(--sprite-x) var(--sprite-y);
  background-repeat: no-repeat;
  background-size: 400% 400%;
}

.marquee-game-title {
  display: -webkit-box;
  min-width: 0;
  padding: 6px 7px 7px;
  overflow: hidden;
  color: var(--cream);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.16;
  text-overflow: ellipsis;
  transition: opacity 160ms ease;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.marquee-game::before {
  inset: auto 7px 7px;
  align-content: center;
  text-align: center;
}

.game-marquee-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.inline-game-slider {
  position: relative;
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(216, 171, 103, 0.28);
  border-radius: var(--section-radius);
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 173, 116, 0.1), transparent 32%),
    linear-gradient(145deg, rgba(32, 29, 31, 0.97), rgba(19, 19, 21, 0.98));
  box-shadow: 0 16px 34px rgba(4, 3, 4, 0.24);
}

.inline-game-slider::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(105deg, transparent 68%, rgba(255, 173, 116, 0.05));
  content: "";
  pointer-events: none;
}

.inline-game-slider-head,
.inline-game-slider-viewport {
  position: relative;
  z-index: 1;
}

.inline-game-slider-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 13px;
}

.inline-game-slider-title {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.inline-game-slider-title > span {
  color: var(--peach);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.inline-game-slider-title > strong {
  color: var(--cream);
  font-size: 20px;
  line-height: 1.2;
}

.inline-game-slider-controls {
  display: none;
  grid-template-columns: 38px minmax(88px, auto) 38px 38px;
  align-items: center;
  gap: 6px;
}

.has-js .inline-game-slider-controls {
  display: grid;
}

.inline-game-slider-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 173, 116, 0.5);
  border-radius: 6px;
  color: var(--cream);
  background: rgba(37, 33, 35, 0.92);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.inline-game-slider-controls button:hover,
.inline-game-slider-controls button:focus-visible {
  border-color: var(--peach);
  color: #241b18;
  background: var(--peach);
  transform: translateY(-1px);
}

.inline-games-status {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.inline-game-slider-viewport {
  min-width: 0;
  padding: 2px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 173, 116, 0.62) rgba(13, 13, 15, 0.75);
  scrollbar-width: thin;
  touch-action: pan-x;
}

.has-js .inline-game-slider.is-continuous .inline-game-slider-viewport {
  scroll-behavior: auto;
  scroll-snap-type: none;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent, #000 14px, #000 calc(100% - 14px), transparent);
}

.has-js .inline-game-slider.is-continuous .inline-game-slider-viewport::-webkit-scrollbar {
  display: none;
}

.inline-game-slider-viewport:focus-visible {
  outline: 2px solid var(--peach);
  outline-offset: 2px;
}

.inline-game-slider-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  padding-bottom: 9px;
}

.inline-game-slider-group {
  display: flex;
  gap: 8px;
  padding: 2px 8px 0 2px;
}

.inline-game-slider-group[data-inline-slider-clone] {
  display: none;
  padding-left: 0;
}

.has-js .inline-game-slider-group[data-inline-slider-clone] {
  display: flex;
}

.inline-game-card {
  position: relative;
  display: grid;
  grid-template-rows: 72px 38px;
  flex: 0 0 132px;
  width: 132px;
  min-width: 0;
  height: 110px;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border: 1px solid rgba(216, 171, 103, 0.26);
  border-radius: 7px;
  color: var(--cream);
  background: #151517;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.28);
  transition: border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.inline-game-card:hover,
.inline-game-card:focus-visible {
  z-index: 2;
  border-color: rgba(255, 173, 116, 0.8);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 173, 116, 0.16);
  transform: translateY(-2px);
}

.inline-game-card-art {
  width: 100%;
  height: 72px;
  background-image: var(--game-shelf-image);
  background-position: var(--sprite-x) var(--sprite-y);
  background-repeat: no-repeat;
  background-size: 400% 400%;
}

.inline-game-card-copy {
  display: grid;
  align-content: center;
  gap: 2px;
  min-width: 0;
  padding: 4px 7px 5px;
  transition: opacity 160ms ease;
}

.inline-game-card-copy strong,
.inline-game-card-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inline-game-card-copy strong {
  color: var(--cream);
  font-size: 10px;
}

.inline-game-card-copy small {
  color: var(--peach);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.inline-game-card::before {
  inset: auto 10px 10px;
  text-align: center;
}

.game-category-explorer {
  display: none;
}

.has-js .game-category-explorer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 4px 0 18px;
  padding: 12px;
  border: 1px solid rgba(216, 171, 103, 0.22);
  border-radius: 5px;
  background: rgba(41, 37, 38, 0.68);
}

.game-category-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.game-category-controls button {
  min-height: 36px;
  padding: 6px 11px;
  color: var(--muted);
  font-size: 12px;
}

.game-category-controls button[aria-pressed="true"] {
  color: #261d19;
  border-color: var(--peach);
  background: var(--peach);
}

.game-category-status {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
}

.hero,
.promo-banner {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(216, 171, 103, 0.25);
  border-radius: var(--section-radius);
  background: var(--ink-850);
  box-shadow: var(--shadow);
}

.hero {
  min-height: 381px;
}

.hero > img,
.promo-banner > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay,
.promo-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(20, 17, 22, 0.97) 0%, rgba(27, 22, 28, 0.83) 48%, rgba(27, 21, 26, 0.25) 76%, rgba(20, 17, 22, 0.1) 100%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 70%;
  min-height: 381px;
  padding: 65px 30px;
}

.hero h1 {
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--cream);
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  text-transform: uppercase;
  text-wrap: wrap;
}

.hero-copy > p {
  width: 100%;
  margin: 16px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.hero-cta {
  margin-top: 0;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.section-store-buttons {
  margin: 24px 0 0;
}

.app-download-banner {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 173, 116, 0.42);
  border-radius: var(--section-radius);
  background: var(--ink-950);
  box-shadow: var(--shadow);
}

.app-download-banner > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}

.app-download-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 48%, rgba(29, 25, 30, 0.55) 0 23%, rgba(24, 20, 23, 0.82) 53%, rgba(17, 14, 16, 0.28) 100%),
    linear-gradient(180deg, rgba(17, 14, 16, 0.08), rgba(17, 14, 16, 0.48));
  pointer-events: none;
}

.app-download-banner-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100% - 32px, 560px);
  padding: 44px 24px;
  text-align: center;
}

.app-download-banner-copy h2 {
  margin: 0;
  color: var(--cream);
  font-size: 30px;
  line-height: 1.15;
  text-wrap: balance;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.74);
}

.app-download-banner-copy > p {
  max-width: 470px;
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.82);
}

.app-download-banner-buttons {
  justify-content: center;
}

.app-download-banner-buttons .store-button {
  border-color: rgba(255, 173, 116, 0.72);
  background: rgba(34, 29, 31, 0.94);
  box-shadow: 0 12px 30px rgba(5, 4, 5, 0.45);
  backdrop-filter: blur(5px);
}

.app-download-banner-buttons .store-button:hover,
.app-download-banner-buttons .store-button:focus-visible {
  border-color: var(--peach);
  background: rgba(61, 55, 57, 0.98);
  transform: translateY(-2px);
}

.hero-app::after {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: -1;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 173, 116, 0.38);
  border-radius: 18px;
  content: "";
  box-shadow: -12px 12px 0 rgba(216, 171, 103, 0.08);
  transform: rotate(8deg);
}

.content-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
  gap: var(--block-gap);
  margin-top: var(--block-gap);
}

.content-section {
  width: 100%;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(216, 171, 103, 0.17);
  border-radius: var(--section-radius);
  background: rgba(51, 47, 48, 0.97);
  box-shadow: 0 12px 30px rgba(7, 5, 6, 0.15);
}

.content-section > h2 {
  position: relative;
  width: 100%;
  margin: 0 0 20px;
  padding: 0 0 13px;
  color: var(--cream);
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  text-wrap: wrap;
}

.content-section > h2::before,
.content-section > h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
}

.content-section > h2::before {
  width: 82px;
  background: var(--peach);
}

.content-section > h2::after {
  bottom: 4px;
  width: 42px;
  background: var(--gold);
}

.section-body {
  display: flow-root;
  width: 100%;
  min-width: 0;
}

.section-body > * + * {
  margin-top: 20px;
}

.section-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 23.25px;
}

.section-body h3 {
  width: 100%;
  margin-bottom: 20px;
  color: var(--cream);
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-transform: uppercase;
}

.source-list,
.steps-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.source-list li,
.steps-list li {
  position: relative;
  display: grid;
  align-items: start;
  color: var(--muted);
  line-height: 23.25px;
}

.source-list li {
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
}

#programa-vip .source-list:first-of-type {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 18px;
}

.source-list li::before {
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border: 1px solid var(--gold);
  content: "";
  background: var(--peach);
  transform: rotate(45deg);
}

.steps-list {
  counter-reset: steps;
}

.steps-list li {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  min-height: 34px;
  counter-increment: steps;
}

.steps-list li::before {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: #251d19;
  content: counter(steps);
  background: var(--peach);
  font-size: 12px;
  font-weight: 900;
  transform: rotate(-2deg);
}

.steps-list li:not(:last-child)::after {
  position: absolute;
  top: 29px;
  bottom: -12px;
  left: 14px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--gold), rgba(216, 171, 103, 0.12));
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(216, 171, 103, 0.25);
  border-radius: 5px;
  background: var(--ink-850);
  scrollbar-width: thin;
  scrollbar-color: var(--peach) var(--ink-900);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--muted);
  font-size: 13px;
}

th,
td {
  padding: 13px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  text-align: left;
  vertical-align: top;
}

th:last-child,
td:last-child {
  border-right: 0;
}

thead th {
  position: sticky;
  top: 0;
  z-index: 3;
  color: var(--cream);
  background: linear-gradient(180deg, #3a3033, #2b2628);
  font-weight: 800;
}

tbody tr:nth-child(even) td {
  background: linear-gradient(90deg, rgba(255, 173, 116, 0.038), rgba(216, 171, 103, 0.012));
}

thead th:first-child,
tbody td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  min-width: 152px;
  color: var(--cream);
  background: #342c2f;
  box-shadow: 3px 0 0 rgba(255, 173, 116, 0.16);
  font-weight: 700;
}

thead th:first-child {
  z-index: 4;
  background: #2b2427;
}

tbody tr {
  transition: box-shadow 160ms ease, background 160ms ease;
}

tbody tr:hover {
  box-shadow: inset 4px 0 var(--peach), inset 0 0 28px rgba(255, 173, 116, 0.07);
}

.comparison-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.game-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  margin-top: 22px;
}

.game-info-card {
  position: relative;
  display: flex;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(216, 171, 103, 0.24);
  border-radius: 5px;
  background: var(--ink-850);
  box-shadow: 0 12px 26px rgba(7, 5, 6, 0.2);
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.game-info-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  min-height: 350px;
}

.game-info-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 13, 16, 0.04) 8%, rgba(17, 13, 16, 0.54) 48%, rgba(17, 13, 16, 0.97) 100%);
  content: "";
}

.game-info-card:hover {
  border-color: rgba(255, 173, 116, 0.46);
  box-shadow: 0 15px 30px rgba(7, 5, 6, 0.28);
  transform: translateY(-2px);
}

.game-info-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-info-card-copy {
  align-self: end;
  width: 100%;
  padding: 24px;
  color: var(--cream);
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.82);
}

.game-info-card h3 {
  margin: 0 0 12px;
  color: #fff8ef;
  font-size: 20px;
  line-height: 1.35;
}

.game-info-card p {
  font-size: 14px;
  line-height: 1.58;
}

.game-info-card p:last-child {
  margin-bottom: 0;
}

.comparison-card,
.review-card {
  position: relative;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(216, 171, 103, 0.21);
  border-radius: 5px;
  background: var(--ink-850);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.comparison-card::before,
.review-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-top: 2px solid var(--peach);
  border-left: 2px solid var(--gold);
  content: "";
  pointer-events: none;
}

.comparison-card:hover,
.review-card:hover {
  border-color: rgba(255, 173, 116, 0.46);
  box-shadow: 0 13px 28px rgba(7, 5, 6, 0.22);
  transform: translateY(-2px);
}

.comparison-card h3 {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.4;
}

.comparison-card.positive {
  border-left: 3px solid var(--success);
}

.comparison-card.caution {
  border-left: 3px solid var(--warning);
}

.review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.review-carousel {
  min-width: 0;
}

.review-controls {
  display: none;
}

.review-carousel.is-enhanced .review-grid {
  display: flex;
  gap: 16px;
  padding: 3px 3px 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--peach) var(--ink-900);
}

.review-carousel.is-enhanced .review-card {
  flex: 0 0 calc((100% - 16px) / 2);
  grid-column: auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.review-carousel.is-enhanced .review-controls {
  display: grid;
  grid-template-columns: 44px minmax(104px, auto) 44px auto;
  align-items: center;
  justify-content: start;
  gap: 9px;
  margin-top: 12px;
}

.review-control,
.review-autoplay {
  display: inline-grid;
  min-width: 44px;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 173, 116, 0.38);
  border-radius: 5px;
  color: var(--cream);
  background: var(--ink-850);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.review-control:hover,
.review-autoplay:hover,
.review-autoplay[aria-pressed="true"] {
  border-color: var(--peach);
  background: #392f32;
}

.review-control:active,
.review-autoplay:active {
  transform: translateY(1px);
}

.review-control span {
  color: var(--peach);
  font-size: 25px;
  line-height: 1;
}

.review-status {
  color: var(--muted);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.review-autoplay {
  grid-auto-flow: column;
  gap: 8px;
  width: auto;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 800;
}

.review-carousel.is-reduced-motion .review-autoplay {
  display: none;
}

.review-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(216, 171, 103, 0.18);
}

.review-meta strong {
  color: var(--cream);
}

.review-meta span {
  color: var(--gold);
  font-size: 13px;
}

.review-meta span:nth-child(2) {
  color: var(--muted);
}

.review-source-line {
  position: absolute;
  width: 1px !important;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 171, 103, 0.2);
  border-radius: 5px;
  background: var(--ink-850);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-item:hover {
  border-color: rgba(255, 173, 116, 0.48);
  box-shadow: 0 10px 22px rgba(8, 6, 7, 0.2);
  transform: translateY(-1px);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 14px 16px;
  color: var(--cream);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-marker {
  position: relative;
  display: block;
  width: 28px;
  height: 22px;
}

.faq-marker::before,
.faq-marker::after {
  position: absolute;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  content: "";
  background: var(--ink-750);
  transition: transform 200ms ease, background 180ms ease;
}

.faq-marker::before {
  left: 2px;
  transform: rotate(-8deg);
}

.faq-marker::after {
  right: 1px;
  border-color: var(--peach);
  transform: rotate(8deg);
}

.faq-item[open] .faq-marker::before {
  transform: translateX(4px) rotate(-2deg);
}

.faq-item[open] .faq-marker::after {
  background: var(--peach);
  transform: translateX(-4px) rotate(2deg);
}

.faq-answer {
  padding: 0 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.faq-answer > *:first-child {
  margin-top: 14px;
}

.promo-banner {
  min-height: 260px;
}

.promo-overlay {
  background: linear-gradient(90deg, rgba(20, 16, 19, 0.94) 0%, rgba(20, 16, 19, 0.76) 48%, rgba(20, 16, 19, 0.08) 82%);
}

.promo-banner.copy-right .promo-overlay {
  background: linear-gradient(270deg, rgba(20, 16, 19, 0.95) 0%, rgba(20, 16, 19, 0.78) 50%, rgba(20, 16, 19, 0.08) 82%);
}

.promo-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 56%;
  min-height: 260px;
  padding: 26px 28px;
}

.copy-right .promo-copy {
  align-items: flex-start;
  margin-left: auto;
}

.promo-copy h2 {
  width: 100%;
  margin: 0 0 10px;
  color: var(--cream);
  font-size: 26px;
  line-height: 1.25;
}

.promo-copy p {
  width: 100%;
  margin: 0 0 16px;
  color: var(--muted);
}

.promo-cta {
  min-width: 162px;
}

.section-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
}

.salon-callout,
.editorial-callout {
  position: relative;
  border-left: 4px solid var(--gold);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}

.author-byline {
  margin: 0 0 22px;
  padding: 15px 18px;
  border: 1px solid rgba(216, 171, 103, 0.32);
  border-left: 4px solid var(--peach);
  border-radius: 4px;
  background: linear-gradient(105deg, rgba(255, 173, 116, 0.12), rgba(216, 171, 103, 0.035));
  color: var(--cream);
  font-size: 15px;
  line-height: 1.55;
}

.author-meta-card {
  display: grid;
  gap: 0;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(216, 171, 103, 0.32);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  background: rgba(29, 25, 26, 0.52);
  box-shadow: 0 12px 26px rgba(7, 5, 6, 0.18);
}

.author-meta-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 16px;
  margin: 0;
  padding: 14px 17px;
  border-bottom: 1px solid rgba(216, 171, 103, 0.16);
}

.author-meta-row:last-child {
  border-bottom: 0;
}

.author-meta-label {
  color: var(--peach);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.author-meta-value {
  color: var(--cream);
}

.salon-callout::after,
.editorial-callout::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  border-bottom: 1px solid rgba(255, 173, 116, 0.5);
  border-left: 1px solid rgba(255, 173, 116, 0.5);
  content: "";
}

.editorial-callout {
  border-left-color: var(--peach);
  background: linear-gradient(110deg, rgba(111, 35, 58, 0.3), rgba(51, 47, 48, 0.97) 46%);
}

.site-footer {
  margin-top: 34px;
  border-top: 1px solid rgba(216, 171, 103, 0.25);
  background: #201c1e;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: var(--scroll-top-bottom, 20px);
  z-index: 65;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 173, 116, 0.52);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(41, 37, 38, 0.96);
  box-shadow: 0 10px 28px rgba(6, 5, 6, 0.3);
  cursor: pointer;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.scroll-top[hidden] {
  display: none;
}

.scroll-top:hover {
  border-color: var(--peach);
  background: #3a3033;
  transform: translateY(-2px);
}

.scroll-top span {
  color: var(--peach);
  font-size: 21px;
  line-height: 1;
}

.welcome-loader,
.ui-modal {
  position: fixed;
  inset: 0;
  z-index: 190;
}

.welcome-loader {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink-950);
}

.welcome-loader > img,
.welcome-loader-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.welcome-loader > img {
  object-fit: cover;
  object-position: 66% 52%;
}

.welcome-loader-shade {
  background:
    radial-gradient(circle at 68% 48%, transparent 0 18%, rgba(25, 23, 24, 0.22) 48%, rgba(25, 23, 24, 0.93) 100%),
    linear-gradient(90deg, rgba(25, 23, 24, 0.96), rgba(25, 23, 24, 0.38));
}

.welcome-loader-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 15px;
  width: min(calc(100% - 40px), 580px);
  padding: 28px;
  border: 1px solid rgba(255, 173, 116, 0.42);
  border-left: 5px solid var(--peach);
  border-radius: var(--section-radius);
  background: rgba(33, 30, 31, 0.82);
  box-shadow: 0 24px 70px rgba(4, 3, 4, 0.5);
  backdrop-filter: blur(8px);
}

.welcome-loader-copy > span {
  color: var(--peach);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.welcome-loader-copy > strong {
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.12;
}

.welcome-loader-copy::after {
  width: 54%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--peach), var(--gold), transparent);
  content: "";
  animation: welcome-progress 2.2s linear both;
}

@keyframes welcome-progress {
  from {
    width: 0;
  }
}

.ui-modal {
  display: grid;
  place-items: center;
  padding: 20px;
}

.ui-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 7, 8, 0.78);
  backdrop-filter: blur(5px);
}

.ui-modal-panel,
.floating-panel {
  position: relative;
  width: min(100%, 440px);
  padding: 26px;
  overflow: auto;
  border: 1px solid rgba(255, 173, 116, 0.42);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(111, 35, 58, 0.26), transparent 46%),
    var(--ink-850);
  box-shadow: 0 24px 70px rgba(4, 3, 4, 0.56);
}

.ui-modal-panel {
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 12px;
  max-height: calc(100vh - 40px);
}

.welcome-offer-modal .ui-modal-panel {
  justify-items: center;
  padding: 32px clamp(28px, 8vw, 52px) 30px;
  border-top: 4px solid var(--peach);
  text-align: center;
}

.welcome-offer-modal .eyebrow {
  justify-self: center;
}

.welcome-offer-modal .ui-modal-title {
  max-width: 100%;
  padding-right: 0;
}

.welcome-offer-modal .ui-modal-panel p {
  max-width: 340px;
  text-align: center;
}

.welcome-offer-modal .welcome-offer-cta {
  min-width: 160px;
  justify-content: center;
}

.ui-modal-panel p {
  margin: 0;
  color: var(--cream);
  font-size: 19px;
  font-weight: 700;
}

.ui-modal-title,
.floating-panel-title {
  display: block;
  padding-right: 34px;
  color: var(--cream);
  font-size: 24px;
  line-height: 1.25;
}

.ui-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 173, 116, 0.42);
  border-radius: 50%;
  color: var(--cream);
  background: var(--ink-800);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}

.ui-close::before,
.ui-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.ui-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.ui-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.ui-close:hover {
  color: #261d19;
  background: var(--peach);
}

.floating-launcher {
  position: static;
  display: none;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 173, 116, 0.52);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(41, 37, 38, 0.96);
  box-shadow: 0 10px 28px rgba(6, 5, 6, 0.3);
  font-weight: 800;
  cursor: pointer;
}

.has-js .floating-launcher {
  display: flex;
}

.rail-launcher-stack {
  display: grid;
  gap: 8px;
}

.floating-chat-cta {
  display: inline-flex;
  gap: 9px;
  padding: 6px 14px 6px 7px;
  text-decoration: none;
}

.chat-logo {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  filter: drop-shadow(0 3px 7px rgba(4, 3, 4, 0.34));
}

.floating-launcher:hover,
.floating-launcher[aria-expanded="true"] {
  border-color: var(--peach);
  background: #3a3033;
}

.floating-launcher > span:first-child {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: #261d19;
  background: var(--peach);
}

.floating-panel {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 185;
  max-height: calc(100vh - 36px);
}

.preferences-pending .floating-panel {
  bottom: calc(18px + var(--preference-stack-height));
  max-height: calc(100vh - 36px - var(--preference-stack-height));
}

.promo-explorer {
  display: grid;
  justify-items: stretch;
  gap: 12px;
  width: min(100%, 480px);
}

.promo-explorer-overlay {
  z-index: 195;
}

.promo-explorer-overlay .ui-modal-panel {
  max-height: calc(100vh - 40px);
}

.promo-explorer .eyebrow,
.promo-explorer .floating-panel-title,
.promo-explorer-disclaimer {
  justify-self: start;
}

.promo-explorer-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.promo-wheel-stage {
  position: relative;
  width: 264px;
  height: 278px;
  margin: 2px auto 0;
  padding-top: 14px;
}

.promo-wheel-pointer {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 5;
  width: 0;
  height: 0;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 25px solid var(--cream);
  filter: drop-shadow(0 3px 0 var(--peach)) drop-shadow(0 5px 7px rgba(4, 3, 4, 0.68));
  transform: translateX(-50%);
}

.promo-wheel {
  position: relative;
  width: 264px;
  height: 264px;
  overflow: hidden;
  border: 3px solid var(--peach);
  border-radius: 50%;
  background: conic-gradient(from -45deg, var(--burgundy) 0 25%, var(--ink-750) 0 50%, #5f402c 0 75%, var(--ink-800) 0);
  box-shadow: inset 0 0 0 6px rgba(25, 23, 24, 0.7), 0 14px 30px rgba(4, 3, 4, 0.32);
  transform: rotate(var(--wheel-turn, 0deg));
  transition: transform 900ms cubic-bezier(0.18, 0.72, 0.18, 1);
}

.promo-wheel > span {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 104px;
  min-height: 58px;
  margin: -29px 0 0 -52px;
  place-items: center;
  align-content: center;
  gap: 3px;
  padding: 5px;
  color: var(--cream);
  background: transparent;
  box-shadow: none;
  pointer-events: none;
  text-align: center;
  text-shadow: 0 2px 4px rgba(4, 3, 4, 0.85);
  transform: rotate(calc(-1 * var(--wheel-turn, 0deg)));
  transition: transform 900ms cubic-bezier(0.18, 0.72, 0.18, 1);
}

.promo-wheel > span:nth-child(1) {
  top: 25%;
  left: 50%;
}

.promo-wheel > span:nth-child(2) {
  top: 50%;
  left: 75%;
}

.promo-wheel > span:nth-child(3) {
  top: 75%;
  left: 50%;
}

.promo-wheel > span:nth-child(4) {
  top: 50%;
  left: 25%;
}

.promo-wheel > span b {
  font-size: 16px;
  line-height: 1;
}

.promo-wheel > span small {
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
}

.promo-wheel > i {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--peach);
  background: var(--ink-950);
  font-style: normal;
  font-weight: 900;
  transform: translate(-50%, -50%) rotate(calc(-1 * var(--wheel-turn, 0deg)));
  transition: transform 900ms cubic-bezier(0.18, 0.72, 0.18, 1);
}

.promo-wheel-caption {
  justify-self: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.promo-explorer-result {
  display: grid;
  gap: 3px;
  width: 100%;
  min-height: 68px;
  padding: 10px 12px;
  border-left: 3px solid var(--gold);
  background: rgba(25, 23, 24, 0.42);
}

.promo-explorer-result span {
  color: var(--muted);
  font-size: 13px;
}

.promo-explorer .cta {
  width: 100%;
}

.promo-wheel-spin:disabled {
  opacity: 0.72;
  cursor: wait;
}

.preference-notice {
  position: fixed;
  right: 84px;
  bottom: 16px;
  left: 84px;
  z-index: 175;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 168px), 820px);
  margin: 0 auto;
  padding: 15px 17px;
  border: 1px solid rgba(255, 173, 116, 0.46);
  border-radius: 7px;
  background: rgba(41, 37, 38, 0.98);
  box-shadow: 0 18px 54px rgba(4, 3, 4, 0.48);
}

.has-js .preference-notice {
  display: grid;
}

.preference-notice div {
  display: grid;
  gap: 4px;
}

.preference-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.preference-notice a {
  width: fit-content;
  color: var(--peach);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 2fr) minmax(140px, 1fr) minmax(140px, 1fr) minmax(220px, 1.15fr);
  gap: 28px;
  width: min(calc(100% - 60px), var(--container));
  margin: 0 auto;
  padding: 34px 0 20px;
}

.footer-brand img {
  width: 150px;
  height: auto;
}

.footer-brand p,
.responsible-block p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 3px;
  font-size: 16px;
}

.footer-column a {
  width: fit-content;
  font-size: 13px;
}

.responsible-block {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-content: start;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(216, 171, 103, 0.22);
  border-radius: 5px;
  background: var(--ink-850);
}

.responsible-block strong {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--peach);
  border-radius: 50%;
  color: var(--peach);
  font-size: 17px;
}

.responsible-block > span {
  font-weight: 800;
}

.responsible-block p {
  grid-column: 1 / -1;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  color: #ac9fa1;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
  font-size: 12px;
}

.service-main,
.not-found {
  width: min(calc(100% - 60px), 1020px);
  margin: 20px auto 0;
}

.service-block {
  width: 100%;
  padding: 26px;
  border: 1px solid rgba(216, 171, 103, 0.2);
  border-radius: var(--section-radius);
  background: var(--ink-800);
  box-shadow: var(--shadow);
}

.service-block > h1,
.not-found h1 {
  width: 100%;
  margin: 0 0 24px;
  padding: 0;
  font-size: 30px;
  line-height: 36px;
  text-transform: uppercase;
}

.service-qa {
  width: 100%;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.service-qa h2 {
  width: 100%;
  margin: 0 0 8px;
  padding: 0;
  font-size: 19px;
  line-height: 1.45;
}

.service-qa p {
  width: 100%;
  margin: 0;
  color: var(--muted);
}

.not-found {
  min-height: 58vh;
}

.not-found section {
  display: grid;
  justify-items: start;
  padding: 48px 30px;
  border: 1px solid rgba(216, 171, 103, 0.22);
  border-radius: var(--section-radius);
  background: linear-gradient(120deg, rgba(111, 35, 58, 0.38), var(--ink-800));
}

.error-code {
  color: var(--peach);
  font-size: clamp(64px, 14vw, 150px);
  font-weight: 900;
  line-height: 0.9;
}

.not-found p {
  margin-bottom: 20px;
  color: var(--muted);
}

.internal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid var(--peach);
  border-radius: 5px;
  color: #261d19;
  background: var(--peach);
  font-weight: 800;
}

@media (max-width: 1359px) {
  .site-grid {
    display: block;
  }

  .left-rail {
    display: none;
  }

  .right-rail {
    display: contents;
  }

  .right-rail > .rail-card,
  .right-rail > .featured-games-carousel {
    display: none;
  }

  .rail-launcher-stack {
    position: fixed;
    right: 18px;
    bottom: 72px;
    z-index: 64;
    width: max-content;
  }

  .preferences-pending .rail-launcher-stack {
    bottom: calc(72px + var(--preference-stack-height));
  }

  .floating-launcher {
    width: auto;
  }

  .page-main {
    width: 100%;
  }

  .mobile-toc {
    display: block;
  }

}

@media (max-width: 1180px) {
  .has-js .local-clock {
    display: none;
  }
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: 160px minmax(0, 1fr) auto;
    gap: 16px;
  }

  .primary-nav {
    gap: 18px;
  }

  .header-actions .cta {
    min-width: 132px;
    padding-inline: 16px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 60px;
  }

  html {
    scroll-padding-top: 80px;
  }

  body {
    padding-top: var(--header-height);
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    width: min(calc(100% - 32px), var(--container));
  }

  .brand-link img {
    width: 122px;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-shell,
  .footer-inner,
  .service-main,
  .not-found {
    width: min(calc(100% - 32px), var(--container));
  }

  .game-marquee {
    grid-template-columns: minmax(0, 1fr);
    width: min(calc(100% - 32px), var(--container));
  }

  .hero-copy {
    width: 78%;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand,
  .responsible-block,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  .preference-notice {
    right: 16px;
    left: 16px;
    width: auto;
  }
}

@media (max-width: 638px) {
  #programa-vip .source-list:first-of-type {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: 430px;
  }

  .hero-copy {
    width: 100%;
    min-height: 430px;
    padding: 34px 20px 28px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(20, 17, 22, 0.12) 0%, rgba(20, 17, 22, 0.7) 46%, rgba(20, 17, 22, 0.98) 100%);
  }

  .hero h1,
  .content-section > h2,
  .service-block > h1,
  .not-found h1 {
    font-size: 26px;
    line-height: 32px;
  }

  .content-section,
  .service-block {
    padding: 18px;
  }

  .store-buttons {
    display: grid;
    width: 100%;
    max-width: 290px;
  }

  .store-buttons .store-button {
    width: 100%;
    min-width: 0;
  }

  .app-download-banner {
    min-height: 430px;
  }

  .app-download-banner > img {
    object-position: 50% 50%;
  }

  .app-download-banner-overlay {
    background: linear-gradient(180deg, rgba(17, 14, 16, 0.48), rgba(17, 14, 16, 0.76) 46%, rgba(17, 14, 16, 0.92));
  }

  .app-download-banner-copy {
    width: 100%;
    padding: 38px 18px;
  }

  .app-download-banner-copy h2 {
    font-size: 25px;
    line-height: 1.2;
  }

  .app-download-banner-buttons {
    margin-inline: auto;
  }

  .promo-banner {
    min-height: 330px;
  }

  .promo-overlay,
  .promo-banner.copy-right .promo-overlay {
    background: linear-gradient(180deg, rgba(20, 16, 19, 0.13) 0%, rgba(20, 16, 19, 0.65) 42%, rgba(20, 16, 19, 0.97) 100%);
  }

  .promo-copy,
  .copy-right .promo-copy {
    width: 100%;
    min-height: 330px;
    margin: 0;
    padding: 24px 20px;
  }

  .promo-copy h2 {
    font-size: 23px;
  }

  .comparison-grid,
  .review-grid,
  .game-info-grid {
    grid-template-columns: 1fr;
  }

  .mobile-toc nav {
    grid-template-columns: 1fr;
  }

  .has-js .game-category-explorer {
    align-items: flex-start;
    flex-direction: column;
  }

  .inline-game-slider {
    padding: 15px;
  }

  .inline-game-slider-head {
    align-items: stretch;
    flex-direction: column;
    gap: 11px;
  }

  .inline-game-slider-title > strong {
    font-size: 18px;
  }

  .inline-game-slider-controls {
    grid-template-columns: 38px minmax(0, 1fr) 38px 38px;
  }

  .game-category-status {
    width: 100%;
  }

  .review-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .review-carousel.is-enhanced .review-card {
    flex-basis: 88%;
  }

  .review-carousel.is-enhanced .review-controls {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .review-autoplay {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .game-info-card,
  .game-info-card:last-child:nth-child(odd) {
    grid-column: auto;
    min-height: 390px;
  }

  .author-meta-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand,
  .footer-column,
  .responsible-block,
  .footer-bottom {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .preference-notice {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .preference-notice button {
    width: 100%;
  }

  .rail-launcher-stack {
    right: 12px;
  }

  .promo-explorer-launcher > span:last-child {
    display: none;
  }

  .floating-launcher {
    width: 46px;
    padding: 8px;
    justify-content: center;
  }

  .help-launcher {
    min-width: 46px;
    max-width: 46px;
    gap: 0;
    overflow: hidden;
    padding: 6px 7px;
    justify-content: flex-start;
    transition: width 180ms ease, max-width 180ms ease, gap 180ms ease, padding 180ms ease;
  }

  .help-launcher > span:last-child {
    display: block;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    white-space: nowrap;
    transform: translateX(5px);
    transition: max-width 180ms ease, opacity 140ms ease, transform 180ms ease;
  }

  .help-launcher:hover,
  .help-launcher:focus-visible,
  .help-launcher.is-mobile-expanded {
    width: 148px;
    max-width: 148px;
    gap: 9px;
    padding: 6px 14px 6px 7px;
  }

  .help-launcher:hover > span:last-child,
  .help-launcher:focus-visible > span:last-child,
  .help-launcher.is-mobile-expanded > span:last-child {
    max-width: 92px;
    opacity: 1;
    transform: translateX(0);
  }

  .floating-panel {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    max-height: calc(100vh - 24px);
  }

  .preferences-pending .floating-panel {
    bottom: calc(12px + var(--preference-stack-height));
    max-height: calc(100vh - 24px - var(--preference-stack-height));
  }

  .welcome-loader-copy,
  .ui-modal-panel,
  .floating-panel {
    padding: 21px;
  }
}

@media (max-width: 390px) {
  #programa-vip .source-list:first-of-type {
    grid-template-columns: 1fr;
  }

  .mobile-actions {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .content-section > h2,
  .service-block > h1,
  .not-found h1 {
    font-size: 23px;
    line-height: 29px;
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .cta:not(.store-button) {
    max-width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .hero-cta,
  .promo-cta,
  .section-cta {
    width: fit-content;
  }

  .faq-item summary {
    grid-template-columns: minmax(0, 1fr) 30px;
    padding-inline: 13px;
  }

  .review-carousel.is-enhanced .review-card {
    flex-basis: 92%;
  }

  .scroll-top {
    right: 12px;
    bottom: var(--scroll-top-bottom, 12px);
  }

  .game-category-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .promo-wheel-stage {
    width: 228px;
    height: 242px;
  }

  .promo-wheel {
    width: 228px;
    height: 228px;
  }

  .promo-wheel > span {
    width: 90px;
    min-height: 52px;
    margin: -26px 0 0 -45px;
    padding: 6px;
  }

  .promo-wheel > span b {
    font-size: 14px;
  }

  .promo-wheel > span small {
    font-size: 9px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .game-marquee-track {
    transform: none !important;
  }
}
