:root {
  color-scheme: dark;
  --bg: #07080a;
  --bg-deep: #050609;
  --surface: #0f1217;
  --surface-2: #13161b;
  --surface-3: #191d23;
  --border: #2a3037;
  --border-soft: rgba(255, 255, 255, 0.12);
  --text: #f4f4f3;
  --muted: #a8acb7;
  --subdued: #777d87;
  --gold: #e4b65a;
  --gold-soft: #ddb875;
  --gold-hover: #f0c66c;
  --red: #d9212b;
  --red-hover: #c81b24;
  --focus: #f2c15e;
  --font-display: Bahnschrift, "Avenir Next", "Segoe UI", sans-serif;
  --font-body: Aptos, Inter, "Segoe UI", sans-serif;
  --container: 1240px;
  --header-height: 82px;
  --radius: 16px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

html.menu-scroll-locked {
  overscroll-behavior: none;
}

body.menu-scroll-locked {
  position: fixed;
  width: 100%;
  overflow: hidden;
  inset-inline: 0;
  overscroll-behavior: none;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 5%, rgba(228, 182, 90, 0.055), transparent 29rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html[lang^="zh"] {
  --font-display: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Aptos, "Segoe UI", sans-serif;
  --font-body: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Aptos, "Segoe UI", sans-serif;
}

html[lang^="zh"] body {
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Aptos, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container,
.header-inner,
.footer-inner {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 8, 10, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.header-logo {
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
}

.header-logo img {
  width: 164px;
  height: auto;
  object-fit: contain;
}

.brand > span:last-child > span {
  color: var(--gold);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(228, 182, 90, 0.5);
  border-radius: 9px;
  color: var(--gold);
  background: rgba(228, 182, 90, 0.07);
}

.brand-mark .icon {
  width: 20px;
  height: 20px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 36px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--text);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0;
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-switcher.has-cta {
  margin-right: 12px;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.language-switcher summary {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  gap: 7px;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  list-style: none;
  white-space: nowrap;
  transition: color 160ms ease;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary:hover,
.language-switcher[open] summary {
  color: var(--text);
}

.language-switcher summary .icon {
  width: 18px;
  height: 18px;
}

.language-switcher summary .icon:last-child {
  width: 15px;
  height: 15px;
  transition: transform 160ms ease;
}

.language-switcher[open] summary .icon:last-child {
  transform: rotate(90deg);
}

.language-options {
  position: absolute;
  z-index: 120;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 190px;
  padding: 7px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.language-options a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.language-options a:hover,
.language-options a[aria-current="page"] {
  background: rgba(228, 182, 90, 0.09);
  color: var(--gold-hover);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 11px;
  gap: 10px;
  font-size: 15px;
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button .icon {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover .icon {
  transform: translateX(3px);
}

.button-primary {
  border-color: var(--red);
  background: var(--red);
  color: white;
  box-shadow: 0 10px 30px rgba(217, 33, 43, 0.18);
}

.button-primary:hover {
  border-color: var(--red-hover);
  background: var(--red-hover);
}

.external-cta.button-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% -20%, rgba(255, 255, 255, 0.56), transparent 38%),
    linear-gradient(135deg, rgba(246, 54, 68, 0.96) 0%, rgba(204, 19, 37, 0.92) 52%, rgba(124, 5, 21, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(66, 0, 11, 0.62),
    0 14px 34px rgba(217, 33, 43, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.28);
  color: #fff;
  text-shadow: 0 1px 2px rgba(59, 0, 8, 0.45);
  -webkit-backdrop-filter: blur(18px) saturate(1.45);
  backdrop-filter: blur(18px) saturate(1.45);
}

.external-cta.button-primary::before {
  position: absolute;
  z-index: 0;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 46%);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.06);
  content: "";
  pointer-events: none;
}

.external-cta.button-primary::after {
  position: absolute;
  z-index: 1;
  top: -90%;
  left: -42%;
  width: 34%;
  height: 280%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  content: "";
  filter: blur(1px);
  opacity: 0.7;
  pointer-events: none;
  transform: rotate(18deg) translateX(-250%);
  transition: transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.external-cta.button-primary > span,
.external-cta.button-primary > .icon {
  position: relative;
  z-index: 2;
}

.external-cta.button-primary:hover {
  border-color: rgba(255, 255, 255, 0.46);
  background:
    radial-gradient(circle at 22% -18%, rgba(255, 255, 255, 0.66), transparent 40%),
    linear-gradient(135deg, rgba(255, 66, 79, 0.98) 0%, rgba(218, 23, 42, 0.94) 50%, rgba(142, 6, 24, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(66, 0, 11, 0.58),
    0 18px 42px rgba(217, 33, 43, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.32);
}

.external-cta.button-primary:hover::after,
.external-cta.button-primary:focus-visible::after {
  transform: rotate(18deg) translateX(620%);
}

.external-cta.button-primary:active {
  box-shadow:
    inset 0 2px 8px rgba(76, 0, 12, 0.38),
    0 8px 22px rgba(217, 33, 43, 0.24);
  transform: translateY(0) scale(0.985);
}

.button-outline {
  border-color: rgba(228, 182, 90, 0.72);
  background: rgba(228, 182, 90, 0.03);
  color: var(--gold-hover);
}

.button-outline:hover {
  border-color: var(--gold-hover);
  background: rgba(228, 182, 90, 0.09);
}

.button-neutral {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.button-neutral:hover {
  border-color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
}

.button-gold {
  min-height: 48px;
  border-color: var(--gold);
  background: var(--gold);
  color: #17120a;
  box-shadow: 0 10px 28px rgba(228, 182, 90, 0.12);
}

.button-gold:hover {
  border-color: var(--gold-hover);
  background: var(--gold-hover);
}

.header-cta {
  min-height: 46px;
  padding-inline: 19px;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle .close-icon {
  display: none;
}

.nav-open .menu-toggle .menu-icon {
  display: none;
}

.nav-open .menu-toggle .close-icon {
  display: block;
}

.mobile-menu {
  display: none;
}

.mobile-menu[hidden] {
  display: none !important;
}

.home-hero {
  position: relative;
  min-height: calc(720px - var(--header-height));
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}

.hero-backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-backdrop::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.99) 0%, rgba(5, 6, 9, 0.93) 36%, rgba(5, 6, 9, 0.58) 56%, rgba(5, 6, 9, 0.12) 80%),
    linear-gradient(0deg, var(--bg-deep) 0%, transparent 26%);
  content: "";
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  filter: saturate(0.88) contrast(1.04);
}

.hero-grid {
  display: grid;
  min-height: 590px;
  align-items: center;
  grid-template-columns: minmax(0, 7fr) minmax(260px, 5fr);
  padding-block: 72px 88px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  margin-right: 12px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

h1 span {
  color: var(--gold-soft);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 730;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-lead,
.page-lead {
  max-width: 690px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.52;
}

.button-row,
.section-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.trust-strip {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(8, 10, 13, 0.82);
  backdrop-filter: blur(12px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > a {
  display: flex;
  min-height: 98px;
  align-items: center;
  padding: 18px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  gap: 14px;
  transition: background-color 160ms ease;
}

.trust-grid > a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-grid > a:hover {
  background: rgba(228, 182, 90, 0.05);
}

.trust-grid .icon {
  color: var(--gold);
}

.trust-grid span {
  display: grid;
}

.trust-grid strong {
  font-size: 14px;
  line-height: 1.35;
}

.trust-grid small {
  margin-top: 3px;
  color: var(--subdued);
  font-size: 12px;
  line-height: 1.35;
}

.section {
  position: relative;
  padding-block: 104px;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 36px;
}

.section-heading > div:first-child {
  max-width: 740px;
}

.section-heading h2,
.section-heading p {
  margin-top: 0;
}

.section-heading > div:first-child > p:last-child,
.help-copy > p:not(.eyebrow),
.feature-band p,
.text-section p,
.split-grid p,
.info-grid p,
.footer-brand p {
  color: var(--muted);
}

.section-heading > div:first-child > p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 18px;
}

.games-section {
  background: linear-gradient(180deg, #090b0e 0%, var(--bg) 100%);
}

.games-grid {
  display: grid;
  min-height: 700px;
  grid-auto-flow: row dense;
  grid-template-columns: 1.45fr repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(330px, 1fr));
  gap: 18px;
}

.game-card,
.promotion-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  isolation: isolate;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.game-card:hover,
.promotion-card:hover {
  border-color: rgba(228, 182, 90, 0.7);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

.game-card-featured {
  grid-row: 1 / 3;
}

.games-grid .game-card:last-child {
  grid-column: span 2;
}

.game-card > img,
.promotion-card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.game-card:hover > img,
.promotion-card:hover > img {
  transform: scale(1.035);
}

.card-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 9, 0.05) 16%, rgba(5, 6, 9, 0.48) 52%, rgba(5, 6, 9, 0.98) 100%);
}

.game-card-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
}

.games-grid .game-card:not(.game-card-featured) .game-card-content {
  padding: 22px;
}

.game-card-featured .game-card-content {
  padding: 40px;
}

.card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgba(228, 182, 90, 0.5);
  border-radius: 12px;
  background: rgba(8, 9, 11, 0.65);
  color: var(--gold);
  backdrop-filter: blur(8px);
}

.game-card-featured h3 {
  font-size: clamp(36px, 3.5vw, 48px);
}

.game-card-content p {
  max-width: 420px;
  margin: 0 0 16px;
  color: #c7cad0;
  font-size: 14px;
}

.inline-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid var(--gold);
  gap: 10px;
  color: var(--gold-hover);
  font-size: 15px;
  font-weight: 750;
}

.inline-link .icon {
  width: 17px;
  height: 17px;
}

.game-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.game-cta {
  min-height: 40px;
  padding-inline: 12px;
  border-radius: 11px;
  gap: 7px;
  font-size: 12px;
}

.game-cta .icon {
  width: 16px;
  height: 16px;
}

.game-cta.external-cta.button-primary::before {
  border-radius: 9px;
}

.promotions-section {
  border-block: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--surface);
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: minmax(300px, auto) minmax(330px, auto);
  gap: 18px;
}

.promotion-card-featured {
  min-height: 360px;
  grid-column: 1 / 3;
}

.promotion-card .card-shade {
  background: linear-gradient(90deg, rgba(5, 6, 9, 0.97) 0%, rgba(5, 6, 9, 0.82) 38%, rgba(5, 6, 9, 0.1) 86%);
}

.promotion-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(620px, 73%);
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 42px;
}

.promotion-card h3 {
  margin-bottom: 16px;
  font-size: clamp(31px, 3vw, 45px);
}

.card-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-meta {
  display: flex;
  align-items: center;
  margin: 0 0 24px;
  gap: 8px;
  color: #c9ccd2;
  font-size: 14px;
}

.offer-meta .icon {
  width: 17px;
  height: 17px;
  color: var(--gold);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.terms-link {
  min-height: 44px;
  padding-top: 10px;
  border-bottom: 1px solid var(--muted);
  color: var(--muted);
  font-size: 14px;
}

.terms-link:hover {
  color: var(--text);
}

.guides-section {
  overflow: hidden;
  border-block: 1px solid rgba(228, 182, 90, 0.16);
  background:
    radial-gradient(circle at 70% 12%, rgba(228, 182, 90, 0.07), transparent 30rem),
    #090b0e;
}

.guides-kicker {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  gap: 18px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.guides-kicker > span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--gold), rgba(228, 182, 90, 0.08));
}

.guides-kicker p {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 9px;
}

.guides-kicker p::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(228, 182, 90, 0.65);
  content: "";
}

.guides-layout {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.35fr) minmax(390px, 0.95fr);
  gap: 18px;
}

.guide-feature,
.guide-row {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #12161b, #0c0f13);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.guide-feature:hover,
.guide-row:hover {
  border-color: rgba(228, 182, 90, 0.7);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.33);
  transform: translateY(-3px);
}

.guide-feature {
  min-height: 610px;
  border-color: rgba(228, 182, 90, 0.55);
  isolation: isolate;
}

.guide-feature > img,
.guide-feature > .guide-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.guide-feature > img {
  z-index: -2;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.guide-feature:hover > img {
  transform: scale(1.035);
}

.guide-shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 6, 9, 0.08), rgba(5, 6, 9, 0.2) 34%, rgba(5, 6, 9, 0.98) 86%);
}

.guide-feature-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(30px, 4vw, 48px);
}

.guide-feature h3 {
  max-width: 740px;
  margin-bottom: 14px;
  font-size: clamp(34px, 3.5vw, 50px);
}

.guide-feature-copy > p:not(.guide-meta),
.guide-row > div > p:not(.guide-meta) {
  margin: 0 0 20px;
  color: #c7cad0;
}

.guide-feature-copy > p:not(.guide-meta) {
  max-width: 680px;
  font-size: 17px;
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 14px;
  gap: 7px 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.guide-meta > span:first-child {
  color: var(--gold);
}

.guide-meta > * + *::before {
  margin-right: 12px;
  color: #59606a;
  content: "|";
}

.guide-list {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.guide-row {
  display: grid;
  min-height: 296px;
  align-items: stretch;
  grid-template-columns: minmax(150px, 0.72fr) minmax(0, 1.3fr);
}

.guide-row > img {
  width: 100%;
  height: 100%;
  min-height: 296px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.guide-row > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px;
}

.guide-row h3 {
  margin-bottom: 10px;
  font-size: clamp(25px, 2.25vw, 34px);
}

.guide-row > div > p:not(.guide-meta) {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.guides-hub-section {
  border-top: 0;
}

.help-section {
  background:
    radial-gradient(circle at 4% 40%, rgba(228, 182, 90, 0.08), transparent 25rem),
    var(--bg);
}

.help-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(135deg, #15191f, #0c0f13 70%);
  box-shadow: var(--shadow);
  grid-template-columns: 1.05fr 0.95fr;
}

.help-copy {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(48px, 6vw, 88px);
}

.help-copy h2 {
  max-width: 600px;
}

.help-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 0 32px;
  font-size: 19px;
}

.help-links {
  display: grid;
  align-content: center;
  padding: 42px clamp(28px, 4vw, 58px);
  border-left: 1px solid rgba(228, 182, 90, 0.35);
}

.help-links > a,
.link-panel > a {
  display: grid;
  min-height: 92px;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
  gap: 16px;
  grid-template-columns: auto 1fr auto;
  transition: color 160ms ease, background-color 160ms ease;
}

.help-links > a:last-child,
.link-panel > a:last-child {
  border-bottom: 0;
}

.help-links > a:hover,
.link-panel > a:hover {
  color: var(--gold-hover);
}

.help-links > a > .icon:first-child,
.link-panel > a > .icon:first-child {
  color: var(--gold);
}

.help-links > a > .icon:last-child,
.link-panel > a > .icon:last-child {
  width: 18px;
  color: var(--subdued);
}

.help-links span,
.link-panel span {
  display: grid;
}

.help-links strong,
.link-panel strong {
  font-size: 16px;
}

.help-links small,
.link-panel small {
  color: var(--subdued);
  font-size: 13px;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 540px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  background:
    radial-gradient(circle at 78% 35%, rgba(228, 182, 90, 0.09), transparent 30rem),
    linear-gradient(160deg, #11141a, var(--bg-deep));
  isolation: isolate;
}

.page-hero.has-image::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 6, 9, 0.99) 0%, rgba(5, 6, 9, 0.92) 45%, rgba(5, 6, 9, 0.33) 75%, rgba(5, 6, 9, 0.12) 100%);
  content: "";
}

.page-hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.page-hero-inner {
  padding-block: 86px;
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(44px, 5vw, 70px);
}

.page-note {
  display: flex;
  max-width: 700px;
  align-items: flex-start;
  margin: 26px 0 0;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.page-note .icon {
  width: 19px;
  color: var(--gold);
}

.category-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.category-list .game-card {
  min-height: 430px;
}

.category-list .game-card-featured {
  grid-row: auto;
}

.category-list .game-card-featured h3 {
  font-size: 28px;
}

.compact-section {
  padding-block: 0 104px;
}

.feature-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: 20px;
  gap: 36px;
  background:
    linear-gradient(110deg, rgba(228, 182, 90, 0.08), transparent 48%),
    var(--surface);
}

.feature-band h2 {
  max-width: 650px;
  font-size: clamp(34px, 4vw, 52px);
}

.feature-band p {
  max-width: 620px;
  margin-bottom: 0;
}

.text-section {
  min-height: 410px;
  display: grid;
  align-items: center;
}

.text-section .page-lead {
  max-width: 800px;
}

.surface-section {
  border-block: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--surface);
}

.split-section {
  border-block: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--surface);
}

.split-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(52px, 8vw, 110px);
}

.split-grid h2 {
  font-size: clamp(36px, 4vw, 52px);
}

.check-list {
  display: grid;
  gap: 4px;
}

.check-list p {
  display: flex;
  min-height: 58px;
  align-items: center;
  margin: 0;
  border-bottom: 1px solid var(--border-soft);
  gap: 12px;
}

.check-list .icon {
  color: var(--gold);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-grid article {
  min-height: 330px;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
}

.info-grid article > span {
  display: block;
  margin-bottom: 62px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 750;
}

.info-grid h2 {
  font-size: 29px;
}

.center-actions {
  justify-content: center;
  margin-top: 44px;
}

.link-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.link-panel > a {
  padding: 20px 26px;
}

.link-panel > a:nth-child(odd) {
  border-right: 1px solid var(--border-soft);
}

.link-panel > a:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--surface);
}

.faq-list summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  gap: 16px;
  cursor: pointer;
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary .icon {
  width: 19px;
  color: var(--gold);
  transition: transform 160ms ease;
}

.faq-list details[open] summary .icon {
  transform: rotate(90deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 24px;
  color: var(--muted);
}

.game-explanation .inline-link {
  margin-top: 8px;
}

.article-byline {
  border-bottom: 1px solid var(--border-soft);
  background: #090b0e;
}

.article-byline .container > div {
  display: flex;
  min-height: 76px;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 20px;
  color: var(--muted);
  font-size: 13px;
}

.article-byline .container > div > * + *::before {
  margin-right: 20px;
  color: #565c65;
  content: "|";
}

.article-byline span:first-child {
  color: var(--gold-soft);
  font-weight: 720;
}

.article-section {
  min-height: auto;
  padding-block: 88px;
}

.article-section h2,
.article-related h2 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 50px);
}

.article-section .container > p:not(.eyebrow) {
  max-width: 780px;
  margin: 0 0 18px;
  color: #c5c9d0;
  font-size: 18px;
  line-height: 1.78;
}

.article-section .container > p:last-child {
  margin-bottom: 0;
}

.article-related {
  border-top: 1px solid rgba(228, 182, 90, 0.2);
  background:
    radial-gradient(circle at 80% 20%, rgba(228, 182, 90, 0.08), transparent 24rem),
    #090b0e;
}

.article-related-links {
  display: grid;
  margin-top: 34px;
  border: 1px solid var(--border);
  border-radius: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--surface);
}

.article-related-links a {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-soft);
  gap: 14px;
  color: var(--gold-hover);
  font-weight: 700;
}

.article-related-links a:nth-child(odd) {
  border-right: 1px solid var(--border-soft);
}

.article-related-links a:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.article-related-links .icon {
  width: 18px;
  height: 18px;
}

.article-end-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(228, 182, 90, 0.3);
  border-radius: 16px;
  gap: 24px;
  background: rgba(228, 182, 90, 0.04);
}

.article-end-cta p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: #060709;
}

.footer-top {
  display: grid;
  padding-block: 72px 56px;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 44px;
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 26px;
  font-size: 14px;
}

.footer-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-group h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-group a {
  min-height: 34px;
  color: var(--muted);
  font-size: 14px;
  transition: color 160ms ease;
}

.footer-group a:hover {
  color: var(--gold-hover);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-block: 24px 32px;
  border-top: 1px solid var(--border-soft);
  color: var(--subdued);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.mobile-sticky-cta {
  display: none;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.error-card {
  width: min(680px, 100%);
  padding: 58px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.error-card h1 {
  font-size: clamp(42px, 7vw, 68px);
}

.error-card > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 550ms ease, transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .container,
  .header-inner,
  .footer-inner {
    width: min(var(--container), calc(100% - 48px));
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .games-grid {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .game-card-featured {
    min-height: 520px;
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .games-grid .game-card:not(.game-card-featured) {
    min-height: 400px;
  }

  .guides-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  }

  .guide-row {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .guide-row > div {
    padding: 22px;
  }

  .footer-top {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 66px;
  }

  .desktop-nav,
  .header-actions .language-switcher,
  .header-actions .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-header {
    height: var(--header-height);
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: rgba(7, 8, 10, 0.98);
    opacity: 0;
    transition: max-height 220ms ease, opacity 180ms ease;
  }

  .nav-open .mobile-menu {
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    opacity: 1;
  }

  .mobile-menu-inner {
    display: grid;
    width: min(100% - 40px, 720px);
    margin-inline: auto;
    padding-block: 18px 26px;
  }

  .mobile-menu-inner > a:not(.button) {
    display: flex;
    min-height: 54px;
    align-items: center;
    border-bottom: 1px solid var(--border-soft);
    color: var(--muted);
    font-weight: 680;
  }

  .mobile-menu-inner > a[aria-current="page"] {
    color: var(--gold);
  }

  .mobile-menu-inner .button {
    margin-top: 18px;
  }

  .mobile-language-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border-soft);
    gap: 8px;
  }

  .mobile-language-group > span {
    grid-column: 1 / -1;
    color: var(--subdued);
    font-size: 13px;
    font-weight: 720;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .mobile-language-group a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    border: 1px solid var(--border);
    border-radius: 9px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 680;
    line-height: 1.25;
    text-align: center;
  }

  .mobile-language-group a[aria-current="page"] {
    border-color: rgba(228, 182, 90, 0.55);
    background: rgba(228, 182, 90, 0.08);
    color: var(--gold-hover);
  }

  .hero-grid {
    min-height: 570px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 670px;
  }

  .hero-backdrop::before {
    background:
      linear-gradient(90deg, rgba(5, 6, 9, 0.98), rgba(5, 6, 9, 0.78) 66%, rgba(5, 6, 9, 0.3)),
      linear-gradient(0deg, var(--bg-deep) 0%, transparent 35%);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid > a:nth-child(3) {
    border-top: 1px solid var(--border-soft);
  }

  .trust-grid > a:nth-child(4) {
    border-top: 1px solid var(--border-soft);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }

  .game-card,
  .game-card-featured {
    min-height: 390px;
    grid-row: auto;
  }

  .game-card-featured {
    grid-column: 1 / 3;
  }

  .guides-layout {
    grid-template-columns: 1fr;
  }

  .guide-feature {
    min-height: 540px;
  }

  .guide-row {
    grid-template-columns: minmax(180px, 0.65fr) minmax(0, 1.35fr);
  }

  .promotion-card-content {
    width: 84%;
  }

  .help-panel {
    grid-template-columns: 1fr;
  }

  .help-copy {
    min-height: auto;
  }

  .help-links {
    border-top: 1px solid rgba(228, 182, 90, 0.35);
    border-left: 0;
  }

  .category-list,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

}

@media (max-width: 680px) {
  .container,
  .header-inner,
  .footer-inner {
    width: min(var(--container), calc(100% - 36px));
  }

  body:not([data-safe-page="true"]) {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .brand {
    font-size: 20px;
  }

  .header-logo img {
    width: 138px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  h1 {
    font-size: clamp(41px, 12vw, 56px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(35px, 10vw, 46px);
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 11px;
  }

  .home-hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: 560px;
    align-items: end;
    padding-block: 80px 54px;
  }

  .hero-backdrop img {
    object-position: 64% center;
  }

  .hero-backdrop::before {
    background:
      linear-gradient(180deg, rgba(5, 6, 9, 0.32) 0%, rgba(5, 6, 9, 0.72) 38%, rgba(5, 6, 9, 0.99) 88%),
      linear-gradient(90deg, rgba(5, 6, 9, 0.9), rgba(5, 6, 9, 0.2));
  }

  .hero-lead,
  .page-lead {
    font-size: 18px;
  }

  .button-row,
  .section-actions,
  .center-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button,
  .section-actions .button,
  .center-actions .button {
    width: 100%;
  }

  .trust-grid {
    width: 100%;
  }

  .trust-grid > a {
    min-height: 92px;
    padding: 14px 12px;
    gap: 10px;
  }

  .trust-grid > a:nth-child(odd) {
    border-left: 0;
  }

  .trust-grid > a:nth-child(even) {
    border-right: 0;
  }

  .trust-grid small {
    display: none;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading {
    margin-bottom: 32px;
    gap: 24px;
  }

  .games-grid,
  .category-list {
    grid-template-columns: 1fr;
  }

  .game-card,
  .game-card-featured,
  .category-list .game-card {
    min-height: 430px;
    grid-column: auto;
  }

  .games-grid .game-card:last-child {
    grid-column: auto;
  }

  .game-card-featured .game-card-content,
  .game-card-content {
    padding: 26px;
  }

  .game-card-featured h3,
  .game-card h3 {
    font-size: 32px;
  }

  .promotions-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .promotion-card,
  .promotion-card-featured {
    min-height: 420px;
    grid-column: auto;
  }

  .promotion-card .card-shade {
    background: linear-gradient(180deg, rgba(5, 6, 9, 0.1) 5%, rgba(5, 6, 9, 0.92) 64%, rgba(5, 6, 9, 0.99) 100%);
  }

  .promotion-card-content {
    width: 100%;
    min-height: 420px;
    justify-content: flex-end;
    padding: 28px;
  }

  .promotion-card h3 {
    font-size: 34px;
  }

  .guides-kicker {
    margin-bottom: 18px;
  }

  .guide-feature {
    min-height: 520px;
  }

  .guide-feature-copy {
    padding: 28px;
  }

  .guide-feature h3 {
    font-size: 34px;
  }

  .guide-row {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .guide-row > img {
    height: 190px;
    min-height: 0;
  }

  .guide-row > div {
    padding: 26px;
  }

  .guide-row h3 {
    font-size: 30px;
  }

  .article-byline .container > div {
    padding-block: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .article-byline .container > div > * + *::before {
    display: none;
  }

  .article-section {
    padding-block: 66px;
  }

  .article-section .container > p:not(.eyebrow) {
    font-size: 17px;
  }

  .article-related-links {
    grid-template-columns: 1fr;
  }

  .article-related-links a,
  .article-related-links a:nth-child(odd),
  .article-related-links a:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--border-soft);
  }

  .article-related-links a:last-child {
    border-bottom: 0;
  }

  .article-end-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .help-copy {
    padding: 44px 26px;
  }

  .help-links {
    padding: 18px 24px 24px;
  }

  .help-links > a {
    min-height: 80px;
  }

  .help-links small {
    display: none;
  }

  .page-hero {
    min-height: 500px;
  }

  .page-hero.has-image::after {
    background: linear-gradient(180deg, rgba(5, 6, 9, 0.38), rgba(5, 6, 9, 0.92) 56%, var(--bg-deep));
  }

  .page-hero-image img {
    object-position: 64% center;
  }

  .page-hero-inner {
    align-self: end;
    padding-block: 100px 54px;
  }

  .page-hero h1 {
    font-size: clamp(39px, 11vw, 53px);
  }

  .compact-section {
    padding-top: 0;
  }

  .feature-band {
    padding: 32px 24px;
  }

  .split-grid,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .info-grid article {
    min-height: 270px;
    padding: 30px;
  }

  .info-grid article > span {
    margin-bottom: 42px;
  }

  .link-panel {
    grid-template-columns: 1fr;
  }

  .link-panel > a,
  .link-panel > a:nth-child(odd),
  .link-panel > a:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--border-soft);
  }

  .link-panel > a:last-child {
    border-bottom: 0;
  }

  .footer-top {
    padding-block: 58px 40px;
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-group h2 {
    font-size: 12px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(7, 8, 10, 0.94);
    backdrop-filter: blur(16px);
  }

  .mobile-sticky-cta .button {
    width: 100%;
    min-height: 54px;
  }

  .error-card {
    padding: 38px 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .external-cta.button-primary::after {
    display: none;
  }
}

@media (forced-colors: active) {
  .button,
  .game-card,
  .promotion-card,
  .help-panel {
    border: 1px solid CanvasText;
  }
}
