:root {
  --bg: #080910;
  --bg-deep: #05060b;
  --surface: #10121c;
  --surface-raised: #171a27;
  --surface-soft: #1d2130;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f8f8fb;
  --muted: #9da2b4;
  --muted-bright: #c5c8d2;
  --red: #ef3340;
  --red-bright: #ff5d5f;
  --red-dark: #7d0c18;
  --red-secondary: #b20f25;
  --red-soft: #ff9296;
  --gold: #f6c755;
  --shell: 1240px;
  --shell-wide: 1500px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

/* Static HTML runtime helpers */

[hidden] {
  display: none !important;
}

.static-site .language-menu {
  z-index: 260;
}

.static-site .mobile-navigation {
  z-index: 210;
}

.static-site .account-card input,
.static-site .account-card button,
.static-site .support-grid button,
.static-site .results-toolbar button,
.static-site .fd-dashboard button {
  pointer-events: none;
}

.static-page-note {
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(239, 51, 64, 0.22);
  border-radius: 12px;
  color: #858b9c;
  background: rgba(239, 51, 64, 0.045);
  font-size: 0.69rem;
}

.static-page-note strong {
  color: var(--red-soft);
}

.legal-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.legal-link-row a {
  color: #777d8e;
  font-size: 0.62rem;
  font-weight: 700;
}

.legal-link-row a:hover {
  color: var(--red-soft);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(239, 51, 64, 0.1), transparent 30rem),
    radial-gradient(circle at 92% 22%, rgba(239, 51, 64, 0.07), transparent 28rem),
    var(--bg);
  font-family: Inter, "Noto Sans", "Noto Sans Thai", "Noto Sans SC", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 76%);
  pointer-events: none;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

button:disabled,
input:disabled {
  cursor: not-allowed;
}

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

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

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

h1,
h2,
h3 {
  max-width: 100%;
  letter-spacing: -0.035em;
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-align: start;
  text-wrap: balance;
}

:lang(zh) h1,
:lang(zh) h2,
:lang(zh) h3 {
  letter-spacing: -0.02em;
  line-height: 1.06;
}

:lang(th) h1,
:lang(th) h2,
:lang(th) h3 {
  letter-spacing: 0;
  line-height: 1.2;
}

:lang(vi) h1,
:lang(vi) h2,
:lang(vi) h3 {
  letter-spacing: -0.02em;
  line-height: 1.14;
}

:lang(zh) .subpage-hero h1,
:lang(vi) .subpage-hero h1 {
  line-height: 1.04;
}

:lang(th) .subpage-hero h1 {
  line-height: 1.14;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 850;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.25rem);
  font-weight: 820;
}

h3 {
  font-size: 1.15rem;
}

p {
  color: var(--muted);
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid var(--red-soft);
  outline-offset: 3px;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.shell-wide {
  width: min(calc(100% - 28px), var(--shell-wide));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
  border-bottom: 1px solid var(--line);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  background: var(--red);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--muted-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-secondary));
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid var(--red-bright);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--red-bright), #d71936);
  box-shadow: 0 12px 34px rgba(239, 51, 64, 0.25);
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  box-shadow: 0 16px 42px rgba(239, 51, 64, 0.36);
  transform: translateY(-2px);
}

.button-outline {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.button-outline:hover {
  border-color: var(--red-secondary);
  box-shadow: 0 14px 40px rgba(239, 51, 64, 0.12);
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.72rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.text-link span {
  color: var(--red-bright);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Header */

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

.topbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand-link {
  flex: 0 0 auto;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  width: 132px;
  height: auto;
  max-width: none;
}

.footer-brand .brand-logo {
  width: 168px;
}

.account-card-header .brand-logo {
  width: 122px;
}

.desktop-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.15vw, 21px);
  flex: 1 1 auto;
}

.desktop-nav > a,
.help-summary,
.games-summary {
  position: relative;
  padding: 28px 0 26px;
  color: #aeb2c2;
  font-size: clamp(0.63rem, 0.68vw, 0.72rem);
  font-weight: 760;
  white-space: nowrap;
  transition: color 160ms ease;
}

.desktop-nav > a::after,
.help-summary::after,
.games-summary::after {
  position: absolute;
  right: 50%;
  bottom: 17px;
  left: 50%;
  height: 2px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--red), var(--red-secondary));
  content: "";
  transition: right 160ms ease, left 160ms ease;
}

.desktop-nav > a:hover,
.desktop-nav > a.is-active,
.help-summary:hover,
.help-summary.is-active,
.help-menu:hover .help-summary,
.help-menu:focus-within .help-summary,
.games-summary:hover,
.games-summary.is-active,
.games-menu:hover .games-summary,
.games-menu:focus-within .games-summary {
  color: #fff;
}

.desktop-nav > a:hover::after,
.desktop-nav > a.is-active::after,
.help-summary:hover::after,
.help-summary.is-active::after,
.help-menu:hover .help-summary::after,
.help-menu:focus-within .help-summary::after,
.games-summary:hover::after,
.games-summary.is-active::after,
.games-menu:hover .games-summary::after,
.games-menu:focus-within .games-summary::after {
  right: 0;
  left: 0;
}

.help-menu,
.games-menu {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.help-summary,
.games-summary {
  display: flex;
  align-items: center;
  gap: 7px;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.help-summary > span,
.games-summary > span {
  color: var(--red-soft);
  font-size: 0.78rem;
  transition: transform 180ms ease;
}

.help-menu:hover .help-summary > span,
.help-menu:focus-within .help-summary > span,
.games-menu:hover .games-summary > span,
.games-menu:focus-within .games-summary > span {
  transform: rotate(180deg);
}

.help-panel {
  position: absolute;
  z-index: 250;
  top: calc(100% - 5px);
  right: 0;
  width: min(1030px, calc(100vw - 44px));
  display: grid;
  grid-template-columns: 0.78fr repeat(3, 1.08fr);
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(239, 51, 64, 0.32);
  border-radius: 18px;
  background: rgba(17, 18, 24, 0.98);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.58), 0 0 36px rgba(239, 51, 64, 0.09);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.help-panel::before {
  position: absolute;
  top: -1px;
  right: 22px;
  left: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
  content: "";
}

.games-panel {
  position: absolute;
  z-index: 250;
  top: calc(100% - 5px);
  left: -18px;
  width: 292px;
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(239, 51, 64, 0.3);
  border-radius: 17px;
  background: rgba(17, 18, 24, 0.985);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.54), 0 0 28px rgba(239, 51, 64, 0.075);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.help-menu:hover .help-panel,
.help-menu:focus-within .help-panel,
.games-menu:hover .games-panel,
.games-menu:focus-within .games-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.games-panel::before {
  position: absolute;
  top: -1px;
  right: 18px;
  left: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
  content: "";
}

.games-panel > p {
  margin: 0 0 5px;
  padding: 4px 7px 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.games-panel > a {
  min-height: 48px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #aeb2c2;
  font-size: 0.73rem;
  font-weight: 740;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.games-menu-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.games-menu-icon img {
  width: 23px;
  height: 23px;
  display: block;
}

.games-menu-icon-lottery {
  color: var(--red-soft);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.games-panel > a b {
  color: var(--red-soft);
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 160ms ease;
}

.games-panel > a:hover,
.games-panel > a:focus-visible,
.games-panel > a.is-active {
  border-color: rgba(239, 51, 64, 0.2);
  color: #fff;
  background: linear-gradient(90deg, rgba(239, 51, 64, 0.145), rgba(239, 51, 64, 0.025));
  transform: translateX(2px);
}

.games-panel > a:hover b,
.games-panel > a:focus-visible b {
  transform: translateX(2px);
}

.games-panel > a.is-active .games-menu-icon {
  background: #fff;
  box-shadow: 0 5px 14px rgba(239, 51, 64, 0.2);
}

.games-panel > a:focus-visible,
.games-summary:focus-visible {
  outline: 2px solid var(--red-soft);
  outline-offset: 2px;
}

.help-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.02);
}

.help-column p {
  margin: 0 0 7px;
  padding: 0 8px 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #fff;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.help-column a {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  color: #aeb2c2;
  font-size: 0.72rem;
  font-weight: 720;
  line-height: 1.35;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.help-column a span {
  flex: 0 0 auto;
  color: var(--red-soft);
}

.help-column a:hover,
.help-column a:focus-visible,
.help-column a.is-active {
  color: #fff;
  background: linear-gradient(90deg, rgba(239, 51, 64, 0.18), rgba(239, 51, 64, 0.035));
  transform: translateX(3px);
}

.help-column a:focus-visible,
.help-summary:focus-visible {
  outline: 2px solid var(--red-soft);
  outline-offset: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
}

.language-picker {
  position: relative;
}

.language-trigger {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.language-trigger:hover,
.language-trigger[aria-expanded="true"] {
  border-color: rgba(239, 51, 64, 0.72);
  background: rgba(239, 51, 64, 0.1);
  box-shadow: 0 8px 22px rgba(239, 51, 64, 0.16);
  transform: translateY(-1px);
}

.language-trigger:focus-visible {
  outline: 2px solid var(--red-soft);
  outline-offset: 3px;
}

.language-active-name {
  max-width: 76px;
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chevron {
  color: var(--muted);
  font-size: 0.8rem;
  transition: color 160ms ease, transform 160ms ease;
}

.language-trigger:hover .chevron,
.language-trigger[aria-expanded="true"] .chevron {
  color: var(--red-soft);
}

.language-trigger[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.language-flag {
  width: 24px;
  height: 16px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.28);
}

.language-menu .language-flag {
  width: 26px;
  height: 18px;
}

.language-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 12px);
  right: 0;
  width: 205px;
  overflow: hidden;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #2b2b2e;
  box-shadow: var(--shadow);
}

.language-menu a {
  min-height: 48px;
  display: grid;
  grid-template-columns: 28px 1fr 16px;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #fff;
  font-size: 0.82rem;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.language-menu a:last-child {
  border-bottom: 0;
}

.language-menu a.is-current {
  color: var(--red-soft);
  background: rgba(239, 51, 64, 0.06);
}

.language-menu a:hover,
.language-menu a:focus-visible {
  color: #fff;
  background: linear-gradient(90deg, rgba(239, 51, 64, 0.2), rgba(239, 51, 64, 0.06));
  box-shadow: inset 3px 0 0 var(--red-bright);
  transform: translateX(3px);
}

.language-menu a:focus-visible {
  outline: 2px solid var(--red-soft);
  outline-offset: -2px;
}

.language-menu a:hover .language-flag,
.language-menu a:focus-visible .language-flag {
  border-color: var(--red-soft);
  box-shadow: 0 4px 12px rgba(239, 51, 64, 0.28);
}

.language-check {
  color: var(--red-bright);
  font-weight: 900;
}

.menu-toggle {
  width: 44px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 2px auto;
  border-radius: 4px;
  background: #fff;
}

.mobile-navigation {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 14, 0.98);
  box-shadow: var(--shadow);
  max-height: calc(100vh - 76px);
  overflow-y: auto;
}

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

.mobile-nav-grid a {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-bright);
  font-size: 0.82rem;
  font-weight: 750;
}

.mobile-nav-grid a.is-active {
  color: var(--red-soft);
}

.mobile-nav-grid .mobile-register {
  color: #fff;
  background: linear-gradient(90deg, rgba(239, 51, 64, 0.2), transparent);
}

.mobile-help-menu,
.mobile-games-menu {
  grid-column: 1 / -1;
  border: 1px solid rgba(239, 51, 64, 0.22);
  border-radius: 12px;
  background: rgba(239, 51, 64, 0.045);
}

.mobile-help-menu summary,
.mobile-games-menu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 13px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 820;
  list-style: none;
  cursor: pointer;
}

.mobile-help-menu summary::-webkit-details-marker,
.mobile-games-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-help-menu summary > span,
.mobile-games-menu summary > span {
  color: var(--red-soft);
  transition: transform 180ms ease;
}

.mobile-help-menu[open] summary > span,
.mobile-games-menu[open] summary > span {
  transform: rotate(45deg);
}

.mobile-games-menu summary.is-active {
  color: var(--red-soft);
}

.mobile-help-links,
.mobile-games-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0 8px 9px;
}

.mobile-help-links a,
.mobile-games-links a {
  padding: 11px 9px;
  font-size: 0.72rem;
}

.mobile-games-links a {
  min-width: 0;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border-radius: 8px;
}

.mobile-games-links a b {
  display: none;
}

.mobile-games-links a.is-active {
  color: #fff;
  background: linear-gradient(90deg, rgba(239, 51, 64, 0.17), transparent);
}

.mobile-games-links .games-menu-icon {
  width: 26px;
  height: 26px;
}

.mobile-games-links .games-menu-icon img {
  width: 19px;
  height: 19px;
}

/* Hero */

.hero {
  border-bottom: 1px solid var(--line);
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #02030a;
}

.hero-track {
  display: flex;
  transition: transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero-slide {
  min-width: 100%;
  margin: 0;
}

.hero-slide img {
  width: 100%;
  min-height: 220px;
  max-height: 360px;
  object-fit: cover;
}

.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(5, 6, 12, 0.68);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  font-size: 1.7rem;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-prev { left: 22px; }
.carousel-next { right: 22px; }

.carousel-dots {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 18px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;
}

.carousel-dots button.is-active {
  width: 28px;
  border-radius: 6px;
  background: var(--red-bright);
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: clamp(50px, 9vw, 130px);
  padding-top: 82px;
  padding-bottom: 86px;
}

.hero-intro h1 {
  max-width: 790px;
  margin: 0;
  background: linear-gradient(120deg, #fff 0 62%, #aeb9c9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p {
  margin-bottom: 27px;
  font-size: 1rem;
  line-height: 1.75;
}

.hero-copy small {
  display: block;
  margin-top: 16px;
  color: #717789;
  font-size: 0.7rem;
}

.status-ribbon {
  overflow: hidden;
  padding: 11px 0;
  color: #fff;
  background: linear-gradient(90deg, #8d0b18, var(--red), #b20f25);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-track {
  width: max-content;
  display: flex;
  animation: ribbon 42s linear infinite;
  will-change: transform;
}

.status-copy {
  flex: 0 0 auto;
  padding-right: 72px;
}

@keyframes ribbon {
  to { transform: translateX(-50%); }
}

/* Homepage */

.quick-section {
  padding: 44px 0;
  background: rgba(255, 255, 255, 0.012);
}

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

.quick-card {
  min-height: 172px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: start;
  gap: 18px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.quick-card::after {
  position: absolute;
  right: -35px;
  bottom: -60px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 51, 64, 0.15), transparent 65%);
  content: "";
}

.quick-card:hover {
  border-color: rgba(239, 51, 64, 0.35);
  background: linear-gradient(145deg, rgba(239, 51, 64, 0.08), rgba(239, 51, 64, 0.03));
  transform: translateY(-4px);
}

.quick-card > span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 51, 64, 0.34);
  border-radius: 50%;
  color: var(--red-bright);
  background: rgba(239, 51, 64, 0.07);
  font-size: 0.65rem;
  font-weight: 900;
}

.quick-card h2 {
  margin: 1px 0 10px;
  font-size: 1.03rem;
}

.quick-card p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
}

.quick-card b {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: var(--red-soft);
  font-size: 0.85rem;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 42px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 60px;
}

.section-heading > *,
.split-heading > * {
  min-width: 0;
}

.split-heading h2 {
  max-width: 780px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 3px;
  font-size: 0.9rem;
  line-height: 1.75;
}

.games-section,
.library-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(239, 51, 64, 0.07), transparent 24rem),
    var(--bg);
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.category-pill {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-bright);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.75rem;
  font-weight: 760;
}

button.category-pill,
.category-row a.category-pill {
  cursor: pointer;
  touch-action: manipulation;
}

button.category-pill:hover,
.category-row a.category-pill:hover {
  border-color: rgba(239, 51, 64, 0.46);
  color: #fff;
}

.category-pill > span {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.category-pill .category-icon img {
  width: 23px;
  height: 23px;
  display: block;
}

.category-pill .category-icon-lottery {
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.category-pill.is-active {
  border-color: var(--red-bright);
  color: #fff;
  background: linear-gradient(135deg, rgba(239, 51, 64, 0.26), rgba(239, 51, 64, 0.08));
}

.category-pill.is-active > span {
  background: #fff;
  box-shadow: 0 5px 15px rgba(239, 51, 64, 0.24);
}

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

.game-card {
  min-width: 0;
}

.game-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 256 / 330;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.game-card:hover .game-art {
  border-color: rgba(239, 51, 64, 0.36);
  box-shadow: 0 9px 23px rgba(0, 0, 0, 0.24), 0 0 16px rgba(239, 51, 64, 0.045);
  transform: translateY(-2px);
}

.game-art::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(5, 6, 11, 0.88));
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.game-card:hover .game-art::after {
  opacity: 0.68;
}

.game-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-art > span {
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 9px;
  padding: 4px 8px;
  border-radius: 6px;
  color: #fff;
  background: var(--red);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.game-art button {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(5, 6, 11, 0.7);
  cursor: not-allowed;
  opacity: 0;
  transition: opacity 180ms ease;
}

.game-card:hover .game-art button {
  opacity: 0.86;
}

.game-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding: 13px 4px 0;
}

.game-meta strong {
  overflow: hidden;
  font-size: 0.74rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-meta small {
  color: #73798b;
  font-size: 0.62rem;
  white-space: nowrap;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.feature-band {
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(239, 51, 64, 0.08), transparent 42%),
    radial-gradient(circle at 85% 70%, rgba(239, 51, 64, 0.1), transparent 30rem),
    #0b0d15;
}

.feature-band::before {
  position: absolute;
  top: -130px;
  left: -130px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(239, 51, 64, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 54px rgba(239, 51, 64, 0.025), 0 0 0 110px rgba(239, 51, 64, 0.018);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 80px;
}

.feature-copy h2 {
  margin-bottom: 24px;
}

.feature-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 28px;
  line-height: 1.8;
}

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

.feature-cards article {
  min-height: 210px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.feature-cards article:nth-child(2),
.feature-cards article:nth-child(3) {
  background: linear-gradient(145deg, rgba(239, 51, 64, 0.075), rgba(255, 255, 255, 0.025));
}

.feature-cards article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--red-bright);
  font-size: 0.7rem;
  font-weight: 900;
}

.feature-cards h3 {
  margin-bottom: 10px;
}

.feature-cards p {
  margin: 0;
  font-size: 0.78rem;
}

.news-section {
  background: var(--bg-deep);
}

.news-section .split-heading > .text-link {
  justify-self: end;
  align-self: center;
}

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

.news-card {
  min-height: 355px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 10%, rgba(239, 51, 64, 0.2), transparent 35%),
    linear-gradient(145deg, #171a27, #0e1018);
}

.news-card::before {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.news-card-2 {
  background: radial-gradient(circle at 80% 10%, rgba(239, 51, 64, 0.2), transparent 35%), linear-gradient(145deg, #1c131b, #0e1018);
}

.news-card-3 {
  background: radial-gradient(circle at 80% 10%, rgba(246, 199, 85, 0.15), transparent 35%), linear-gradient(145deg, #191816, #0e1018);
}

.news-index {
  position: absolute;
  top: 24px;
  left: 28px;
  color: rgba(255, 255, 255, 0.12);
  font-size: 4.4rem;
  font-weight: 950;
  line-height: 1;
}

.news-card > span {
  position: relative;
  z-index: 2;
  margin-bottom: 13px;
  color: var(--red-soft);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.news-card h3,
.news-card p,
.news-card a {
  position: relative;
  z-index: 2;
}

.news-card h3 {
  max-width: 300px;
  margin-bottom: 13px;
  font-size: 1.45rem;
}

.news-card p {
  font-size: 0.78rem;
}

.news-card a {
  margin-top: 10px;
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 800;
}

.faq-section {
  background: #0b0c13;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 115px;
  align-self: start;
}

.faq-intro h2 {
  margin-bottom: 20px;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 420px;
  margin-bottom: 28px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 2px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 760;
  list-style: none;
}

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

.faq-list summary b {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--red-bright);
  font-weight: 500;
  transition: transform 180ms ease;
}

.faq-list details[open] summary b {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 720px;
  margin: -4px 0 24px;
  padding-right: 50px;
  font-size: 0.82rem;
  line-height: 1.75;
}

.faq-topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -8px 0 28px;
}

.faq-topic-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(239, 51, 64, 0.22);
  border-radius: 7px;
  color: #7d8495;
  background: rgba(239, 51, 64, 0.045);
  font-size: 0.57rem;
  font-weight: 750;
}

.faq-list-full summary {
  min-height: 92px;
  align-items: flex-start;
  padding-top: 25px;
  padding-bottom: 25px;
}

.faq-question {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 2px;
}

.faq-question em {
  width: 38px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--red-soft);
  background: rgba(239, 51, 64, 0.1);
  font-size: 0.57rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.faq-question > span {
  max-width: 730px;
  line-height: 1.55;
}

.faq-answer {
  max-width: 840px;
  margin: -2px 0 34px;
  padding: 0 50px 0 54px;
}

.faq-answer > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.78;
}

.faq-answer strong {
  color: var(--text);
}

.faq-answer h3 {
  margin: 28px 0 14px;
  font-size: 0.95rem;
}

.faq-tutorial-section {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 8%, rgba(239, 51, 64, 0.12), transparent 30rem),
    #080910;
}

.faq-guide-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.45fr);
  align-items: end;
  gap: clamp(38px, 7vw, 100px);
  margin-bottom: 35px;
}

.faq-guide-overview h2 {
  max-width: 880px;
  margin: 0 0 22px;
  font-size: clamp(3.2rem, 6.6vw, 7.2rem);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.faq-guide-overview > div:first-child > p:last-child {
  max-width: 690px;
  margin: 0;
  color: var(--muted-bright);
  font-size: 0.92rem;
  line-height: 1.8;
}

.faq-guide-count {
  display: grid;
  padding: 26px;
  border: 1px solid rgba(239, 51, 64, 0.24);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(239, 51, 64, 0.09), rgba(255, 255, 255, 0.018));
}

.faq-guide-count strong {
  color: #fff;
  font-size: clamp(3.7rem, 7vw, 6.5rem);
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.faq-guide-count span {
  margin-top: 17px;
  color: var(--red-soft);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq-guide-count small {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.55;
}

.faq-guide-jump {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: clamp(72px, 9vw, 124px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.faq-guide-jump a {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.faq-guide-jump span {
  color: var(--red-soft);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.faq-guide-jump strong {
  color: #fff;
  font-size: 0.82rem;
}

.faq-guide-jump a:hover,
.faq-guide-jump a:focus-visible {
  border-color: rgba(239, 51, 64, 0.42);
  background: rgba(239, 51, 64, 0.06);
  transform: translateY(-2px);
}

.faq-guide-groups {
  display: grid;
  gap: clamp(76px, 10vw, 140px);
}

.faq-guide-group {
  display: grid;
  grid-template-columns: minmax(250px, 0.5fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(42px, 7vw, 100px);
  scroll-margin-top: 110px;
}

.faq-guide-group-heading {
  position: sticky;
  top: 112px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  gap: 19px;
}

.faq-guide-group-heading > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 51, 64, 0.28);
  border-radius: 50%;
  color: var(--red-soft);
  background: rgba(239, 51, 64, 0.07);
  font-size: 0.66rem;
  font-weight: 900;
}

.faq-guide-group-heading p:first-child {
  margin: 3px 0 10px;
  color: var(--red-soft);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.faq-guide-group-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.8vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.faq-guide-group-heading div > p:last-child {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.7;
}

.faq-tutorial-list {
  min-width: 0;
}

.faq-tutorial-list details:first-child {
  border-top: 0;
}

.faq-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 4px;
  padding: 10px 14px;
  border: 1px solid rgba(239, 51, 64, 0.3);
  border-radius: 999px;
  color: #fff;
  background: rgba(239, 51, 64, 0.075);
  font-size: 0.68rem;
  font-weight: 820;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.faq-guide-link span {
  color: var(--red-soft);
  transition: transform 180ms ease;
}

.faq-guide-link:hover,
.faq-guide-link:focus-visible {
  border-color: var(--red-bright);
  background: rgba(239, 51, 64, 0.14);
  transform: translateY(-1px);
}

.faq-guide-link:hover span,
.faq-guide-link:focus-visible span {
  transform: translateX(3px);
}

@media (max-width: 840px) {
  .faq-guide-overview,
  .faq-guide-group {
    grid-template-columns: 1fr;
  }

  .faq-guide-overview h2 {
    font-size: clamp(2.75rem, 13vw, 4.7rem);
  }

  .faq-guide-count {
    max-width: 390px;
  }

  .faq-guide-jump {
    grid-template-columns: 1fr;
    margin-bottom: 76px;
  }

  .faq-guide-group-heading {
    position: static;
  }
}

@media (max-width: 560px) {
  .faq-guide-group-heading {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .faq-guide-group-heading > span {
    width: 42px;
    height: 42px;
  }

  .faq-guide-jump a {
    min-height: 72px;
  }
}

.faq-steps,
.faq-checks {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.faq-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
}

.faq-steps li > span,
.faq-checks li > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-secondary));
  font-size: 0.61rem;
  font-weight: 900;
}

.faq-steps li p {
  margin: 3px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.7;
}

.faq-steps-compact {
  grid-template-columns: 1fr 1fr;
}

.faq-checks li {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.76rem;
}

.faq-checks li > span {
  color: var(--red-soft);
  background: rgba(239, 51, 64, 0.1);
}

.faq-guide-media {
  max-width: 700px;
  overflow: hidden;
  margin: 28px 0 0;
  border: 1px solid rgba(239, 51, 64, 0.18);
  border-radius: 18px;
  background: #f7f8fb;
}

.faq-guide-media img {
  width: 100%;
  height: auto;
  display: block;
}

.faq-guide-media figcaption {
  padding: 13px 16px;
  border-top: 1px solid #e1e5ee;
  color: #545b6b;
  background: #fff;
  font-size: 0.59rem;
  font-weight: 750;
  text-align: center;
}

.faq-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faq-solution-grid article {
  min-width: 0;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background:
    radial-gradient(circle at 50% 20%, rgba(239, 51, 64, 0.1), transparent 14rem),
    rgba(255, 255, 255, 0.025);
}

.faq-solution-grid article > span {
  display: block;
  margin-bottom: 20px;
  color: var(--red-soft);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-solution-grid img {
  width: 100%;
  height: 74px;
  display: block;
  margin-bottom: 18px;
  object-fit: contain;
}

.faq-solution-grid p {
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.7;
}

.faq-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 13px;
  padding: 15px 17px;
  border: 1px solid rgba(239, 51, 64, 0.22);
  border-radius: 11px;
  background: rgba(239, 51, 64, 0.045);
}

.faq-note strong {
  color: var(--red-bright);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-note p {
  margin: 0;
  padding: 0;
  color: #7c8292;
  font-size: 0.66rem;
  line-height: 1.6;
}

/* Subpages */

.subpage-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background: #06080d;
}

.subpage-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 7, 12, 0.98) 0%, rgba(4, 7, 12, 0.91) 28%, rgba(4, 7, 12, 0.56) 51%, rgba(4, 7, 12, 0.1) 78%),
    linear-gradient(0deg, rgba(4, 6, 10, 0.78) 0%, transparent 36%),
    linear-gradient(118deg, rgba(239, 51, 64, 0.25) 0%, rgba(125, 12, 24, 0.1) 52%, transparent 82%);
  content: "";
  pointer-events: none;
}

.subpage-hero::after {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red-bright), var(--red-soft) 58%, transparent 90%);
  content: "";
  opacity: 0.72;
}

.subpage-hero-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.04);
}

.subpage-hero-inner {
  min-height: 520px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 70px;
  padding-top: 92px;
  padding-bottom: 82px;
}

.subpage-hero-inner > div:first-child {
  min-width: 0;
  max-width: 680px;
}

.subpage-hero h1 {
  max-width: 720px;
  margin: 0 0 22px;
  font-size: clamp(3.45rem, 6.7vw, 7rem);
  line-height: 0.92;
}

.subpage-hero-inner > div:first-child > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.subpage-monogram {
  display: none;
  width: 260px;
  height: 260px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.012), 0 0 0 70px rgba(255, 255, 255, 0.008);
  transform: rotate(-8deg);
}

.subpage-orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.subpage-orb-one {
  top: -180px;
  right: 18%;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(239, 51, 64, 0.15);
  box-shadow: 0 0 110px rgba(239, 51, 64, 0.08) inset;
}

.subpage-orb-two {
  right: -70px;
  bottom: -140px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(239, 51, 64, 0.16);
  box-shadow: 0 0 120px rgba(239, 51, 64, 0.08) inset;
}

.pending-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 28px 0;
  padding: 17px 20px;
  border: 1px solid rgba(246, 199, 85, 0.26);
  border-radius: 14px;
  background: rgba(246, 199, 85, 0.055);
}

.pending-notice strong {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pending-notice p {
  margin: 0;
  font-size: 0.77rem;
}

.account-section {
  background: radial-gradient(circle at 82% 20%, rgba(239, 51, 64, 0.08), transparent 26rem);
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 0.65fr);
  align-items: center;
  gap: 100px;
}

.account-copy h2 {
  max-width: 650px;
  margin-bottom: 22px;
}

.account-copy > p:not(.eyebrow) {
  max-width: 640px;
  line-height: 1.8;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-bright);
  font-size: 0.82rem;
}

.check-list span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--red-soft);
  background: rgba(239, 51, 64, 0.1);
  font-size: 0.7rem;
}

.account-card {
  padding: 35px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow);
}

.account-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.account-card-header > span {
  color: var(--gold);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-card label {
  display: block;
  margin-bottom: 16px;
  color: var(--muted-bright);
  font-size: 0.72rem;
  font-weight: 750;
}

.account-card label small {
  color: #6d7282;
  font-size: 0.62rem;
}

.account-card input {
  width: 100%;
  height: 49px;
  display: block;
  margin-top: 7px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: #888e9e;
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.78rem;
}

.account-submit {
  width: 100%;
  margin-top: 10px;
  opacity: 0.62;
}

.account-card > p {
  margin: 18px 0 0;
  font-size: 0.68rem;
  text-align: left;
}

.account-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.account-card .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.account-card .button-row .button {
  flex: 1 1 180px;
  justify-content: center;
  text-align: center;
}

.story-section {
  background: #0a0b12;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.7fr);
  gap: 100px;
}

.story-grid h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.prose p {
  font-size: 0.95rem;
  line-height: 1.85;
}

.values-section {
  padding-top: 50px;
  background: var(--bg-deep);
}

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

.values-grid article,
.steps-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.values-grid article > span,
.steps-grid article > span {
  display: block;
  margin-bottom: 72px;
  color: var(--red-bright);
  font-size: 0.68rem;
  font-weight: 900;
}

.values-grid h3,
.steps-grid h3 {
  margin-bottom: 12px;
}

.values-grid p,
.steps-grid p {
  margin: 0;
  font-size: 0.78rem;
}

.agent-section {
  background: radial-gradient(circle at 14% 74%, rgba(239, 51, 64, 0.08), transparent 26rem);
}

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

.steps-grid article:nth-child(even) {
  transform: translateY(28px);
}

.agent-section .pending-notice {
  margin-top: 65px;
}

.results-embed-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(239, 51, 64, 0.08), transparent 30rem),
    #090a11;
}

.results-embed-heading {
  margin-bottom: 36px;
}

.results-embed-shell {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: #10131a;
  box-shadow: var(--shadow);
}

.results-embed-bar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(90deg, rgba(239, 51, 64, 0.12), rgba(239, 51, 64, 0.08)),
    #0d1017;
}

.results-embed-status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.results-live-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #65d691;
  box-shadow: 0 0 0 5px rgba(101, 214, 145, 0.12);
}

.results-embed-status strong {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.results-embed-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-soft);
  font-size: 0.72rem;
  font-weight: 800;
}

.results-embed-bar a:hover {
  color: #fff;
}

.results-embed-shell iframe {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
  background: #fff;
}

.results-source-note {
  max-width: 920px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px auto 0;
  color: #72798a;
  font-size: 0.68rem;
  line-height: 1.7;
  text-align: center;
}

.results-source-note > span {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 51, 64, 0.34);
  border-radius: 50%;
  color: var(--red-soft);
  font-size: 0.62rem;
  font-weight: 900;
}

.library-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 8px;
}

.search-preview {
  min-width: 280px;
  height: 43px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #6e7484;
  background: rgba(255, 255, 255, 0.025);
}

.search-preview input {
  min-width: 0;
  border: 0;
  color: #6e7484;
  background: transparent;
  font-size: 0.7rem;
  outline: 0;
}

.library-section .pending-notice {
  margin-bottom: 36px;
}

.library-section .game-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.library-section .game-art {
  aspect-ratio: 256 / 330;
}

.news-index-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(239, 51, 64, 0.12), transparent 29rem),
    #090a11;
}

.news-story-grid {
  display: grid;
  gap: clamp(24px, 3.2vw, 42px);
}

.news-story {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  background:
    linear-gradient(118deg, rgba(239, 51, 64, 0.075), transparent 52%),
    var(--surface);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.news-story:nth-child(even) {
  grid-template-columns: minmax(0, 1.28fr) minmax(310px, 0.72fr);
}

.news-story:nth-child(even) .news-story-poster {
  order: 2;
  border-right: 0;
  border-left: 1px solid var(--line);
}

.news-story-poster {
  min-height: 640px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 0;
  padding: 28px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 93, 95, 0.25), transparent 42%),
    linear-gradient(155deg, #2d0a10, #0b0c13 74%);
}

.news-story-poster::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  content: "";
  pointer-events: none;
}

.news-story-poster img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 584px;
  display: block;
  border-radius: 11px;
  object-fit: contain;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.42);
}

.news-story-copy {
  min-height: 640px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 82px);
}

.news-story-index {
  position: absolute;
  top: 20px;
  right: 30px;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(4.7rem, 9vw, 8.2rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
}

.news-story-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: var(--red-soft);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-story-copy h2 {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 0 24px;
  font-size: clamp(2.55rem, 5vw, 5.35rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.news-story-copy > p:not(.news-story-kicker) {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin: 0;
  color: var(--muted-bright);
  font-size: clamp(0.82rem, 1.3vw, 0.96rem);
  line-height: 1.82;
}

.news-story-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin-top: 34px;
}

.news-story-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(239, 51, 64, 0.25);
  border-radius: 999px;
  color: var(--red-soft);
  background: rgba(239, 51, 64, 0.06);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Promotions */

.subpage-promotions .subpage-hero-art {
  object-position: center;
  filter: saturate(1.02) contrast(1.04);
}

.subpage-promotions::before {
  background:
    linear-gradient(90deg, rgba(4, 4, 7, 0.99) 0%, rgba(8, 3, 5, 0.94) 32%, rgba(13, 3, 5, 0.48) 55%, rgba(8, 2, 4, 0.08) 82%),
    linear-gradient(0deg, rgba(5, 3, 5, 0.62), transparent 55%);
}

.promotion-feature-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(239, 51, 64, 0.13), transparent 32rem),
    #090a11;
}

.promotion-feature-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(42px, 7vw, 98px);
}

.promotion-poster-card {
  position: sticky;
  top: 104px;
  margin: 0;
}

.promotion-poster-card > div {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(239, 51, 64, 0.32);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(239, 51, 64, 0.12), rgba(255, 199, 96, 0.035));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42), 0 0 42px rgba(239, 51, 64, 0.08);
}

.promotion-poster-card > div::after {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  content: "";
  pointer-events: none;
}

.promotion-poster-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.promotion-poster-card figcaption {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.promotion-feature-copy {
  padding-top: clamp(8px, 2vw, 28px);
}

.promotion-feature-copy h2 {
  max-width: 790px;
  margin: 0 0 25px;
  font-size: clamp(3rem, 5.8vw, 6.3rem);
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.promotion-lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted-bright);
  font-size: clamp(0.9rem, 1.35vw, 1.02rem);
  line-height: 1.85;
}

.promotion-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.promotion-stat-grid article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(239, 51, 64, 0.095), transparent 62%),
    var(--surface);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.promotion-stat-grid small {
  margin-bottom: 28px;
  color: var(--red-soft);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promotion-stat-grid strong {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(1.05rem, 1.7vw, 1.42rem);
  line-height: 1.15;
}

.promotion-stat-grid p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
}

.promotion-actions {
  margin-top: 34px;
}

.promotion-steps-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 180, 65, 0.07), transparent 28rem),
    #07080d;
}

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

.promotion-step-grid article {
  min-height: 310px;
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.promotion-step-grid article::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(239, 51, 64, 0.12);
  border-radius: 50%;
  content: "";
}

.promotion-step-grid article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 68px;
  border: 1px solid rgba(239, 51, 64, 0.32);
  border-radius: 50%;
  color: var(--red-soft);
  background: rgba(239, 51, 64, 0.07);
  font-size: 0.68rem;
  font-weight: 900;
}

.promotion-step-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: clamp(1.28rem, 2vw, 1.72rem);
}

.promotion-step-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.72;
}

.promotion-terms-section {
  border-top: 1px solid var(--line);
  background: #0b0c12;
}

.promotion-terms-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(44px, 8vw, 120px);
}

.promotion-terms-grid h2 {
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.promotion-terms-grid > div > p:last-child {
  margin: 0;
  color: var(--muted-bright);
  line-height: 1.8;
}

.promotion-terms-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promotion-terms-grid li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 13px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.promotion-terms-grid li > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 0.66rem;
  font-weight: 900;
}

.promotion-terms-grid li p {
  margin: 3px 0 0;
  color: var(--muted-bright);
  font-size: 0.78rem;
  line-height: 1.65;
}

@media (hover: hover) and (pointer: fine) {
  .promotion-stat-grid article:hover,
  .promotion-step-grid article:hover {
    border-color: rgba(239, 51, 64, 0.42);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(239, 51, 64, 0.07);
    transform: translateY(-4px);
  }
}

@media (max-width: 1080px) {
  .promotion-feature-grid {
    grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
    gap: 38px;
  }

  .promotion-stat-grid {
    grid-template-columns: 1fr;
  }

  .promotion-stat-grid article {
    min-height: 0;
  }
}

@media (max-width: 840px) {
  .subpage-promotions .subpage-hero-art {
    object-position: 72% center;
  }

  .promotion-feature-grid,
  .promotion-terms-grid {
    grid-template-columns: 1fr;
  }

  .promotion-poster-card {
    position: static;
    width: min(100%, 480px);
    margin: 0 auto;
  }

  .promotion-feature-copy {
    padding-top: 8px;
  }

  .promotion-feature-copy h2 {
    font-size: clamp(2.65rem, 12vw, 4.5rem);
  }

  .promotion-step-grid {
    grid-template-columns: 1fr;
  }

  .promotion-step-grid article {
    min-height: 250px;
  }

  .promotion-step-grid article > span {
    margin-bottom: 44px;
  }
}

@media (max-width: 560px) {
  .promotion-poster-card > div {
    padding: 7px;
    border-radius: 18px;
  }

  .promotion-poster-card img,
  .promotion-poster-card > div::after {
    border-radius: 11px;
  }

  .promotion-stat-grid article,
  .promotion-step-grid article {
    padding: 24px;
  }
}

.support-section {
  background: radial-gradient(circle at 50% 0%, rgba(239, 51, 64, 0.08), transparent 32rem);
}

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

.support-grid article {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.support-grid article > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 52px;
  border: 1px solid rgba(239, 51, 64, 0.28);
  border-radius: 50%;
  color: var(--red-soft);
  background: rgba(239, 51, 64, 0.07);
  font-size: 0.72rem;
  font-weight: 900;
}

.support-grid h3 {
  margin-bottom: 8px;
}

.support-grid p {
  font-size: 0.76rem;
}

.support-grid .text-link {
  margin-top: 18px;
  color: var(--red-soft);
}

.support-grid button {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #727788;
  background: transparent;
  font-size: 0.65rem;
}

.support-safety {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 80px;
  margin-top: 60px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(239, 51, 64, 0.08), rgba(239, 51, 64, 0.04));
}

.support-safety h2 {
  margin-bottom: 0;
}

.support-safety ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted-bright);
  font-size: 0.8rem;
}

/* User agreement */

.agreement-section {
  background:
    radial-gradient(circle at 12% 9%, rgba(239, 51, 64, 0.075), transparent 30rem),
    radial-gradient(circle at 88% 42%, rgba(239, 51, 64, 0.065), transparent 34rem),
    var(--bg-deep);
}

.agreement-layout {
  display: grid;
  grid-template-columns: minmax(245px, 0.42fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 7vw, 105px);
}

.agreement-aside {
  position: sticky;
  top: 112px;
}

.agreement-aside h2 {
  max-width: 300px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 3.5vw, 3.4rem);
}

.agreement-aside > p:not(.eyebrow) {
  max-width: 350px;
  margin-bottom: 28px;
  font-size: 0.78rem;
}

.agreement-aside nav {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.agreement-aside nav a {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted-bright);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.7rem;
  font-weight: 750;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.agreement-aside nav a:hover {
  border-color: rgba(239, 51, 64, 0.35);
  color: var(--red-soft);
  transform: translateX(3px);
}

.agreement-aside nav span {
  color: var(--red-bright);
  font-size: 0.58rem;
  font-weight: 900;
}

.agreement-callouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.agreement-callouts span {
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #717788;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.56rem;
  line-height: 1.45;
}

.agreement-callouts strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.agreement-content {
  display: grid;
  gap: 22px;
}

.agreement-card {
  scroll-margin-top: 110px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    #0b0c13;
  box-shadow: var(--shadow);
}

.agreement-card-game {
  background:
    linear-gradient(145deg, rgba(239, 51, 64, 0.055), rgba(239, 51, 64, 0.025)),
    #0b0c13;
}

.agreement-card > header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.agreement-card > header > span {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 51, 64, 0.28);
  border-radius: 50%;
  color: var(--red-soft);
  background: rgba(239, 51, 64, 0.075);
  font-size: 0.67rem;
  font-weight: 900;
}

.agreement-card > header p {
  margin: 0 0 4px;
  color: #6f7585;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.agreement-card > header h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.agreement-lead {
  max-width: 780px;
  margin-bottom: 28px;
  padding: 17px 19px;
  border-left: 2px solid var(--red);
  color: var(--muted-bright);
  background: rgba(239, 51, 64, 0.045);
  font-size: 0.78rem;
  line-height: 1.75;
}

.agreement-card > h3 {
  margin: 5px 0 20px;
  font-size: 1.15rem;
}

.agreement-list {
  counter-reset: agreement-term;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.agreement-list li {
  counter-increment: agreement-term;
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
}

.agreement-list li::before {
  content: counter(agreement-term, decimal-leading-zero);
  width: 38px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--red-bright);
  background: rgba(239, 51, 64, 0.08);
  font-size: 0.57rem;
  font-weight: 900;
}

.agreement-list p {
  margin: 2px 0 0;
  color: #9298a8;
  font-size: 0.75rem;
  line-height: 1.78;
}

/* Interest FD */

.interest-fd-hero {
  position: relative;
  padding: clamp(28px, 3.5vw, 48px) 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 18%, rgba(239, 51, 64, 0.16), transparent 25rem),
    linear-gradient(180deg, #090c14, #0c111c);
}

.interest-fd-carousel {
  position: relative;
  width: min(calc(100% - 40px), var(--shell));
  overflow: hidden;
  margin-inline: auto;
  border: 1px solid rgba(239, 51, 64, 0.24);
  border-radius: 18px;
  background: #fff2f3;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.interest-fd-track {
  display: flex;
  transition: transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.interest-fd-slide {
  min-width: 100%;
  aspect-ratio: 6 / 1;
  margin: 0;
}

.interest-fd-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interest-fd-intro {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(239, 51, 64, 0.2);
  color: #2d1d20;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 211, 59, 0.3), transparent 21rem),
    linear-gradient(135deg, #fff8f8, #f7e4e6 58%, #fff3f4);
}

.interest-fd-intro::after {
  position: absolute;
  top: -160px;
  right: -80px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(239, 51, 64, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(239, 51, 64, 0.035), 0 0 0 96px rgba(239, 51, 64, 0.02);
  content: "";
}

.interest-fd-intro-inner {
  min-height: 380px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: 90px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.interest-fd-intro .eyebrow {
  color: #9a3541;
}

.interest-fd-intro h1,
.interest-fd-intro h2 {
  margin: 0;
  color: #7d0c18;
}

.interest-fd-intro-inner > div:last-child > p:first-child {
  margin-bottom: 18px;
  color: #5f4145;
  font-size: 1rem;
  line-height: 1.75;
}

.interest-fd-intro .fd-source-note {
  margin: 0;
  padding: 15px 17px;
  border: 1px solid rgba(239, 51, 64, 0.2);
  border-radius: 12px;
  color: #76565b;
  background: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
  line-height: 1.65;
}

.interest-fd-section {
  color: #252a35;
  background: #edf2f7;
}

.fd-dashboard {
  overflow: hidden;
  border: 1px solid #d7e0ea;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(125, 12, 24, 0.13);
}

.fd-dashboard-header {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 28px;
  border-bottom: 1px solid #e1e7ee;
}

.fd-dashboard-header > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.fd-percent {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #ef3340, #9c1020);
  box-shadow: 0 10px 24px rgba(239, 51, 64, 0.22);
  font-size: 1.25rem;
  font-weight: 900;
}

.fd-dashboard-header small {
  display: block;
  margin-bottom: 3px;
  color: #7c8798;
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fd-dashboard-header h2 {
  margin: 0;
  color: #272c36;
  font-size: 1.35rem;
}

.fd-status {
  padding: 7px 11px;
  border: 1px solid rgba(235, 151, 0, 0.28);
  border-radius: 999px;
  color: #aa6a00;
  background: #fff8e5;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fd-balance-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px 220px;
  gap: 14px;
  padding: 24px 28px;
  background: #f7f9fc;
}

.fd-balance {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 0 20px;
  border: 1px solid #dce4ef;
  border-radius: 11px;
  background: #fff;
}

.fd-balance span {
  color: #b20f25;
  font-size: 0.75rem;
  font-weight: 800;
}

.fd-balance strong {
  color: #313641;
  letter-spacing: 0.14em;
}

.fd-balance small {
  color: #8a93a1;
  font-size: 0.62rem;
}

.fd-balance-row > button {
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(180deg, #ef3340, #a10f21);
  box-shadow: 0 9px 20px rgba(177, 15, 36, 0.16);
  font-size: 0.77rem;
  opacity: 0.76;
}

.fd-balance-row > button.fd-topup {
  color: #4c3900;
  background: linear-gradient(135deg, #ffd400, #ff9d00);
}

.fd-product-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 20px 20px;
  color: #b20f25;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fd-product-heading span {
  width: 66px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ef6c76);
}

.fd-product-heading span:last-child {
  background: linear-gradient(90deg, #ef6c76, transparent);
}

.fd-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 28px 28px;
}

.fd-product-card {
  overflow: hidden;
  border: 1px solid #efc8cc;
  border-radius: 15px;
  background: linear-gradient(145deg, #fffdfd, #fff5f6);
}

.fd-product-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 22px 15px;
}

.fd-product-title > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fd-product-title h3 {
  margin: 0;
  color: #282d37;
  font-size: 1rem;
}

.fd-product-title span {
  color: #77808e;
  font-size: 0.75rem;
}

.fd-product-title button {
  padding: 7px 14px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: #d71936;
  font-size: 0.68rem;
  opacity: 0.65;
}

.fd-product-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 15px 22px 22px;
}

.fd-product-stats > div {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding-right: 12px;
  border-right: 1px solid #d9e1eb;
}

.fd-product-stats > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.fd-product-stats strong {
  color: #292e38;
  font-size: 1rem;
}

.fd-product-stats .fd-rate strong {
  color: #ef2039;
  font-size: 1.85rem;
}

.fd-product-stats small {
  color: #858d9a;
  font-size: 0.66rem;
  line-height: 1.4;
}

.fd-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 22px 19px;
}

.fd-product-tags span {
  padding: 5px 8px;
  border-radius: 5px;
  color: #526173;
  background: #e9eef4;
  font-size: 0.6rem;
}

.fd-product-foot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 22px;
  border-top: 1px dashed #ced9e6;
  color: #697586;
  background: rgba(249, 233, 235, 0.58);
  font-size: 0.63rem;
}

.fd-legal {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 18px;
  margin: 0 28px 28px;
  padding: 18px 20px;
  border: 1px solid #f2d184;
  border-radius: 12px;
  background: #fff9e9;
}

.fd-legal strong {
  color: #9c6400;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fd-legal p {
  margin: 0;
  color: #765f34;
  font-size: 0.69rem;
  line-height: 1.65;
}

.fd-guide-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(239, 51, 64, 0.1), transparent 25rem),
    #0b0c13;
}

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

.fd-guide-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(239, 51, 64, 0.075), rgba(255, 255, 255, 0.025));
}

.fd-guide-grid article > span {
  display: block;
  margin-bottom: 64px;
  color: var(--red-soft);
  font-size: 0.68rem;
  font-weight: 900;
}

.fd-guide-grid h3 {
  margin-bottom: 11px;
}

.fd-guide-grid p {
  margin: 0;
  font-size: 0.76rem;
}

.fd-faq {
  display: grid;
  grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1fr);
  align-items: start;
  gap: 80px;
  margin-top: 90px;
}

.fd-faq h2 {
  position: sticky;
  top: 110px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

/* Footer */

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 12% 22%, rgba(239, 51, 64, 0.1), transparent 28rem),
    radial-gradient(circle at 88% 58%, rgba(239, 51, 64, 0.09), transparent 30rem),
    #05060a;
}

.site-footer::before {
  position: absolute;
  z-index: -1;
  right: -0.03em;
  bottom: 8%;
  content: "ATAS3";
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(11rem, 28vw, 31rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.7;
  opacity: 0.12;
  pointer-events: none;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
}

.site-footer::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--red), var(--red-soft), transparent);
}

.footer-cta {
  padding: 94px 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(239, 51, 64, 0.08), transparent 42%),
    radial-gradient(circle at 82% 15%, rgba(239, 51, 64, 0.13), transparent 24rem),
    rgba(11, 12, 19, 0.86);
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.footer-cta h2 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
  letter-spacing: -0.045em;
}

.footer-cta p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
}

.footer-cta .button-row {
  flex: 0 0 auto;
}

.footer-signature {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: #777d8e;
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.footer-signature a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 51, 64, 0.35);
  border-radius: 50%;
  color: var(--red-soft);
  font-size: 1rem;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.footer-signature a:hover {
  border-color: var(--red-soft);
  background: rgba(239, 51, 64, 0.1);
  transform: translateY(-3px);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(290px, 1.6fr) repeat(3, minmax(135px, 0.62fr));
  gap: clamp(34px, 4vw, 72px);
  padding-top: 82px;
  padding-bottom: 76px;
}

.footer-brand p {
  max-width: 420px;
  margin: 24px 0 26px;
  color: #858b9c;
  font-size: 0.78rem;
}

.footer-trust-grid {
  max-width: 420px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.footer-trust-grid span {
  min-width: 0;
  padding: 15px 13px;
  border-right: 1px solid var(--line);
}

.footer-trust-grid span:last-child {
  border-right: 0;
}

.footer-trust-grid strong,
.footer-trust-grid small {
  display: block;
}

.footer-trust-grid strong {
  margin-bottom: 3px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.footer-trust-grid small {
  overflow: hidden;
  color: #686e7e;
  font-size: 0.55rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-main h3 {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-main h3 span {
  color: var(--red-bright);
  font-size: 0.55rem;
}

.footer-column > a {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column > a:hover {
  color: var(--red-soft);
  transform: translateX(3px);
}

.footer-link-status {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid rgba(239, 51, 64, 0.2);
  border-radius: 8px;
  color: #777d8e;
  font-size: 0.56rem;
  line-height: 1.4;
}

.footer-link-status i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(239, 51, 64, 0.65);
}

.footer-payments {
  padding-top: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.footer-payments-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 27px;
}

.footer-payments-heading .eyebrow {
  margin-bottom: 9px;
}

.footer-payments-heading h3 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  line-height: 1.08;
}

.footer-payments-heading > p {
  max-width: 660px;
  margin: 0;
  color: #747a8b;
  font-size: 0.68rem;
  line-height: 1.7;
}

.footer-payment-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 10px;
}

.footer-payment-item {
  min-width: 0;
  min-height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  color: #777d8d;
  background: rgba(255, 255, 255, 0.022);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.footer-payment-item img {
  width: 58px;
  height: 58px;
  display: block;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.28);
  object-fit: cover;
}

.footer-payment-item small {
  width: 100%;
  overflow: hidden;
  font-size: 0.5rem;
  font-weight: 720;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-payment-item:hover {
  border-color: rgba(239, 51, 64, 0.42);
  color: #fff;
  background: rgba(239, 51, 64, 0.065);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.26), 0 0 22px rgba(239, 51, 64, 0.07);
  transform: translateY(-4px);
}

.footer-bottom-band {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.34);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 21px;
  padding-right: clamp(120px, 12vw, 175px);
  padding-bottom: 23px;
  color: #686d7c;
  font-size: 0.64rem;
}

.mobile-dock {
  display: none;
}

.floating-mascot {
  position: fixed;
  z-index: 170;
  right: clamp(10px, 1.4vw, 24px);
  bottom: max(12px, env(safe-area-inset-bottom));
  width: clamp(110px, 8.75vw, 150px);
  pointer-events: none;
  filter: drop-shadow(0 14px 18px rgba(4, 8, 20, 0.26));
  transform-origin: 50% 100%;
  animation: mascot-float 4.8s ease-in-out infinite;
}

.floating-mascot img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0) rotate(-0.3deg); }
  50% { transform: translateY(-8px) rotate(0.5deg); }
}

/* Tutorials */

.tutorial-hero .subpage-hero-art {
  object-position: center;
  filter: saturate(0.94) contrast(1.06);
}

.tutorial-hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 0.96;
  text-wrap: balance;
}

:lang(th) .tutorial-hero h1 {
  font-size: clamp(2.6rem, 3.5vw, 2.85rem);
}

:lang(id) .tutorial-hero h1,
:lang(vi) .tutorial-hero h1 {
  font-size: clamp(2.8rem, 4vw, 3rem);
}

.tutorial-hero-meta {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 24px;
  padding: 9px 15px;
  border: 1px solid rgba(239, 51, 64, 0.32);
  border-radius: 999px;
  color: #aeb2c2;
  background: rgba(239, 51, 64, 0.08);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tutorial-hero-meta span {
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.tutorial-overview,
.tutorials-hub-intro {
  padding-bottom: 48px;
}

.tutorial-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: 80px;
}

.tutorial-overview-grid h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.tutorial-overview-grid > p {
  max-width: 590px;
  margin: 0 0 8px;
}

.tutorial-guide-section,
.tutorials-library-section {
  padding-top: 56px;
  background:
    radial-gradient(circle at 50% 20%, rgba(239, 51, 64, 0.09), transparent 38%),
    #080910;
}

.tutorial-guide-heading {
  margin-bottom: 44px;
}

.tutorial-carousel {
  max-width: 1180px;
  margin: 0 auto;
}

.tutorial-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #111218;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48), 0 0 45px rgba(239, 51, 64, 0.07);
}

.tutorial-stage::before {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 24px;
  left: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
  content: "";
  pointer-events: none;
}

.tutorial-track {
  display: flex;
  transition: transform 520ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.tutorial-slide {
  min-width: 100%;
  margin: 0;
  padding: 18px;
}

.tutorial-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
}

.tutorial-image-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: contain;
}

.tutorial-image-frame > span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 9, 14, 0.82);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.tutorial-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  background: rgba(12, 13, 19, 0.88);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.36);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.tutorial-arrow:hover,
.tutorial-arrow:focus-visible {
  border-color: var(--red-soft);
  background: var(--red);
}

.tutorial-arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.tutorial-prev {
  left: 34px;
}

.tutorial-next {
  right: 34px;
}

.tutorial-counter {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 34px;
  padding: 9px 13px;
  border: 1px solid rgba(239, 51, 64, 0.32);
  border-radius: 999px;
  color: #fff;
  background: rgba(9, 10, 15, 0.86);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.tutorial-notes-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

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

.tutorial-notes-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tutorial-notes-grid article:hover {
  border-color: rgba(239, 51, 64, 0.34);
  background: rgba(239, 51, 64, 0.055);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

.tutorial-notes-grid article > span {
  display: block;
  margin-bottom: 28px;
  color: var(--red-soft);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.tutorial-notes-grid h3 {
  margin-bottom: 11px;
}

.tutorial-notes-grid p {
  margin: 0;
  font-size: 0.82rem;
}

/* SEO editorial content */

.seo-editorial-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  background:
    radial-gradient(circle at 12% 18%, rgba(239, 51, 64, 0.11), transparent 28%),
    linear-gradient(180deg, #0a0b11, #07080d);
}

.seo-editorial-shell {
  display: grid;
  gap: 42px;
}

.seo-editorial-intro {
  display: grid;
  max-width: 900px;
  gap: 18px;
}

.seo-editorial-intro h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.35rem, 4.5vw, 4.65rem);
  line-height: 0.98;
  text-wrap: balance;
}

.seo-editorial-intro > p:last-child {
  max-width: 780px;
  margin: 0;
  color: #a2a8b8;
  font-size: 0.88rem;
  line-height: 1.78;
}

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

.seo-editorial-grid article {
  min-height: 238px;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.seo-editorial-grid article > span {
  display: block;
  margin-bottom: 31px;
  color: var(--red-soft);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.seo-editorial-grid h3 {
  margin: 0 0 13px;
  font-size: 1.08rem;
  line-height: 1.18;
}

.seo-editorial-grid p {
  margin: 0;
  color: #8c92a2;
  font-size: 0.7rem;
  line-height: 1.72;
}

.seo-editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (hover: hover) and (pointer: fine) {
  .seo-editorial-grid article:hover {
    border-color: rgba(239, 51, 64, 0.25);
    background: linear-gradient(145deg, rgba(239, 51, 64, 0.06), rgba(255, 255, 255, 0.018));
    transform: translateY(-3px);
  }
}

.tutorial-back-section {
  padding-top: 0;
  padding-bottom: 76px;
  text-align: center;
}

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

.tutorial-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  color: inherit;
  background: #101118;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tutorial-card:hover,
.tutorial-card:focus-visible {
  border-color: rgba(239, 51, 64, 0.42);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34), 0 0 30px rgba(239, 51, 64, 0.08);
  transform: translateY(-6px);
}

.tutorial-card:focus-visible {
  outline: 2px solid var(--red-soft);
  outline-offset: 3px;
}

.tutorial-card-cover {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #fff;
}

.tutorial-card-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.tutorial-card:hover .tutorial-card-cover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.tutorial-card-cover span {
  position: absolute;
  right: 13px;
  bottom: 13px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 9, 14, 0.82);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
}

.tutorial-card-copy {
  padding: 24px;
}

.tutorial-card-copy small {
  display: block;
  margin-bottom: 11px;
  color: var(--red-soft);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tutorial-card-copy h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.tutorial-card-copy p {
  display: -webkit-box;
  min-height: 4.7em;
  overflow: hidden;
  margin-bottom: 19px;
  font-size: 0.75rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.tutorial-card-copy b {
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.03em;
}

/* Homepage long-form brand guide */

.home-guide-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(239, 51, 64, 0.18);
  background:
    radial-gradient(circle at 12% 8%, rgba(239, 51, 64, 0.13), transparent 28%),
    radial-gradient(circle at 88% 48%, rgba(146, 18, 31, 0.1), transparent 30%),
    #08090f;
}

.home-guide-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
  content: "";
}

.home-guide-shell {
  position: relative;
  display: grid;
  gap: 92px;
}

.home-guide-topic {
  max-width: 1180px;
}

.home-guide-topic > h2 {
  max-width: 900px;
  margin-bottom: 24px;
}

.home-guide-topic > p:not(.eyebrow) {
  max-width: 900px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.82;
}

.home-guide-grid {
  display: grid;
  gap: 16px;
  margin-top: 38px;
}

.home-guide-trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-guide-resource-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.home-guide-card {
  position: relative;
  min-width: 0;
  min-height: 205px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  color: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.012)),
    #0d0e15;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-guide-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red-bright), transparent 72%);
  content: "";
  opacity: 0.68;
}

.home-guide-card:hover,
.home-guide-card:focus-visible {
  border-color: rgba(239, 51, 64, 0.42);
  background:
    linear-gradient(145deg, rgba(239, 51, 64, 0.105), rgba(255, 255, 255, 0.015)),
    #101117;
  box-shadow: 0 25px 58px rgba(0, 0, 0, 0.32), 0 0 32px rgba(239, 51, 64, 0.07);
  transform: translateY(-5px);
}

.home-guide-card:focus-visible {
  outline: 2px solid var(--red-soft);
  outline-offset: 3px;
}

.home-guide-card h3 {
  max-width: 280px;
  margin-bottom: 14px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.home-guide-card p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.72;
}

.home-guide-link {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.home-guide-link > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-top: auto;
  border: 1px solid rgba(239, 51, 64, 0.4);
  border-radius: 50%;
  color: #fff;
  background: rgba(239, 51, 64, 0.09);
  font-size: 1rem;
  transition: background 180ms ease, transform 180ms ease;
}

.home-guide-link:hover > span,
.home-guide-link:focus-visible > span {
  background: var(--red);
  transform: translateX(4px);
}

.home-guide-responsible {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  max-width: 920px;
  margin-top: -36px;
  padding: 22px 26px;
  border: 1px solid rgba(239, 51, 64, 0.26);
  border-radius: 15px;
  background: rgba(239, 51, 64, 0.055);
}

.home-guide-responsible > span {
  min-width: 56px;
  color: var(--red-soft);
  font-size: 1.5rem;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.home-guide-responsible p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.65;
}

/* Responsive */

@media (max-width: 1280px) {
  .topbar {
    gap: 14px;
  }

  .brand-logo {
    width: 118px;
  }

  .desktop-nav {
    gap: 8px;
  }

  .desktop-nav > a,
  .help-summary,
  .games-summary {
    font-size: 0.57rem;
  }

  .header-actions {
    gap: 6px;
  }

  .desktop-account {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 0.64rem;
  }

  .language-trigger {
    min-height: 36px;
    padding-inline: 10px;
  }

  .language-active-name {
    display: none;
  }

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

@media (max-width: 1080px) {
  .desktop-nav,
  .desktop-account {
    display: none;
  }

  .topbar {
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .language-active-name {
    display: inline;
  }

  .quick-grid,
  .values-grid,
  .steps-grid,
  .support-grid,
  .fd-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fd-balance-row {
    grid-template-columns: minmax(0, 1fr) 180px 180px;
  }

  .feature-grid {
    gap: 45px;
  }

  .news-story,
  .news-story:nth-child(even) {
    grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  }

  .news-story:nth-child(even) {
    grid-template-columns: minmax(0, 1.26fr) minmax(280px, 0.74fr);
  }

  .news-story-poster,
  .news-story-copy {
    min-height: 570px;
  }

  .news-story-poster img {
    max-height: 518px;
  }

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

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

@media (max-width: 840px) {
  .section {
    padding: 78px 0;
  }

  .hero-intro,
  .split-heading,
  .feature-grid,
  .faq-layout,
  .account-layout,
  .story-grid,
  .support-safety,
  .interest-fd-intro-inner,
  .fd-faq,
  .tutorial-overview-grid {
    grid-template-columns: 1fr;
  }

  .tutorial-overview-grid {
    gap: 28px;
  }

  .tutorial-notes-grid {
    grid-template-columns: 1fr;
  }

  .tutorial-notes-grid article {
    min-height: 0;
  }

  .seo-editorial-grid {
    grid-template-columns: 1fr;
  }

  .seo-editorial-grid article {
    min-height: 0;
  }

  .interest-fd-intro-inner {
    gap: 30px;
  }

  .fd-balance-row {
    grid-template-columns: 1fr 1fr;
  }

  .fd-balance {
    grid-column: 1 / -1;
  }

  .fd-products {
    grid-template-columns: 1fr;
  }

  .fd-faq {
    gap: 36px;
  }

  .fd-faq h2 {
    position: static;
  }

  .hero-intro {
    align-items: start;
    gap: 34px;
    padding-top: 62px;
    padding-bottom: 68px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .split-heading {
    align-items: start;
    gap: 18px;
  }

  .section-heading,
  .split-heading {
    text-align: start;
  }

  .section-heading h2,
  .split-heading h2 {
    width: 100%;
    max-width: 100%;
  }

  .results-embed-shell iframe {
    height: 840px;
  }

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

  .feature-grid {
    gap: 54px;
  }

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

  .news-card {
    min-height: 310px;
  }

  .faq-layout {
    gap: 48px;
  }

  .faq-intro {
    position: static;
  }

  .home-guide-shell {
    gap: 72px;
  }

  .home-guide-trust-grid {
    grid-template-columns: 1fr;
  }

  .home-guide-card {
    min-height: 0;
  }

  .home-guide-safety-grid {
    grid-template-columns: 1fr;
  }

  .agreement-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .agreement-aside {
    position: static;
  }

  .agreement-aside nav {
    max-width: 620px;
    grid-template-columns: 1fr 1fr;
  }

  .agreement-callouts {
    max-width: 480px;
  }

  .subpage-hero-inner {
    min-height: 460px;
    grid-template-columns: minmax(0, 0.95fr) minmax(190px, 0.55fr);
    padding-top: 108px;
    padding-bottom: 68px;
  }

  .subpage-hero {
    min-height: 460px;
  }

  .tutorial-hero,
  .tutorial-hero .subpage-hero-inner {
    min-height: 500px;
  }

  .subpage-hero::before {
    background:
      linear-gradient(90deg, rgba(4, 7, 12, 0.98) 0%, rgba(4, 7, 12, 0.9) 44%, rgba(4, 7, 12, 0.38) 78%),
      linear-gradient(0deg, rgba(4, 6, 10, 0.84) 0%, transparent 48%),
      linear-gradient(118deg, rgba(239, 51, 64, 0.24) 0%, rgba(125, 12, 24, 0.1) 55%, transparent 84%);
  }

  .subpage-hero-art {
    object-position: 62% center;
  }

  .subpage-monogram {
    width: 175px;
    height: 175px;
  }

  .account-layout,
  .story-grid,
  .support-safety {
    gap: 48px;
  }

  .account-card {
    max-width: 620px;
  }

  .steps-grid article:nth-child(even) {
    transform: none;
  }

  .library-toolbar {
    flex-direction: column;
  }

  .search-preview {
    width: 100%;
  }

  .library-section .game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-story,
  .news-story:nth-child(even) {
    grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  }

  .news-story:nth-child(even) {
    grid-template-columns: minmax(0, 1.18fr) minmax(240px, 0.82fr);
  }

  .news-story-poster,
  .news-story-copy {
    min-height: 510px;
  }

  .news-story-poster {
    padding: 20px;
  }

  .news-story-poster img {
    max-height: 468px;
  }

  .news-story-copy {
    padding: 36px;
  }

  .support-safety {
    padding: 36px;
  }

  .footer-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 34px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section {
    padding: 66px 0;
  }

  .topbar {
    min-height: 66px;
  }

  .brand-logo {
    width: 114px;
  }

  .language-trigger {
    min-height: 38px;
    padding: 0 8px;
  }

  .language-active-name {
    display: none;
  }

  .language-menu {
    position: fixed;
    top: 76px;
    right: 14px;
    left: 14px;
    width: auto;
  }

  .language-menu a {
    min-height: 45px;
  }

  .mobile-help-links,
  .mobile-games-links {
    grid-template-columns: 1fr;
  }

  .hero-slide img {
    min-height: 185px;
    object-position: center;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.35rem;
  }

  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }

  .carousel-dots {
    bottom: 10px;
  }

  .hero-intro {
    gap: 28px;
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .hero-intro h1 {
    font-size: clamp(2.9rem, 15vw, 4.4rem);
  }

  .hero-copy > p {
    font-size: 0.88rem;
  }

  .button {
    min-height: 47px;
    padding: 0 20px;
  }

  .quick-grid,
  .feature-cards,
  .values-grid,
  .steps-grid,
  .support-grid,
  .fd-guide-grid {
    grid-template-columns: 1fr;
  }

  .interest-fd-hero {
    padding: 22px 0;
  }

  .interest-fd-carousel {
    width: calc(100% - 20px);
    border-radius: 13px;
  }

  .interest-fd-slide {
    aspect-ratio: 1.92 / 1;
  }

  .interest-fd-slide img {
    min-height: 0;
    object-position: center;
  }

  .interest-fd-intro-inner {
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .interest-fd-intro h1,
  .interest-fd-intro h2 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .fd-dashboard-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .fd-balance-row {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .fd-balance {
    min-height: 86px;
    grid-column: auto;
    grid-template-columns: 1fr auto;
    gap: 6px 15px;
  }

  .fd-balance small {
    grid-column: 1 / -1;
  }

  .fd-balance-row > button {
    min-height: 48px;
  }

  .fd-products {
    padding-right: 20px;
    padding-left: 20px;
  }

  .fd-product-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .fd-product-stats {
    grid-template-columns: 1fr;
  }

  .fd-product-stats > div {
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid #d9e1eb;
  }

  .fd-product-stats > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .fd-product-foot {
    flex-direction: column;
    gap: 5px;
  }

  .fd-legal {
    grid-template-columns: 1fr;
    margin-right: 20px;
    margin-left: 20px;
  }

  .fd-guide-grid article {
    min-height: 215px;
  }

  .fd-guide-grid article > span {
    margin-bottom: 45px;
  }

  .quick-card {
    min-height: 138px;
  }

  .category-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .category-row::-webkit-scrollbar { display: none; }

  .category-pill {
    flex: 0 0 auto;
  }

  .game-grid,
  .library-section .game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .game-art,
  .library-section .game-art {
    aspect-ratio: 256 / 330;
    border-radius: 10px;
  }

  .game-art > span {
    top: 6px;
    left: 6px;
    padding: 3px 5px;
    border-radius: 4px;
    font-size: 0.42rem;
  }

  .game-art button {
    display: none;
  }

  .game-meta {
    display: block;
    padding: 8px 1px 0;
  }

  .game-meta strong {
    display: block;
    font-size: 0.61rem;
  }

  .game-meta small {
    display: block;
    overflow: hidden;
    margin-top: 3px;
    font-size: 0.49rem;
    text-overflow: ellipsis;
  }

  .feature-copy h2 {
    font-size: 2.55rem;
  }

  .news-card {
    min-height: 340px;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 0.82rem;
  }

  .faq-list details > p {
    padding-right: 20px;
  }

  .home-guide-shell {
    gap: 58px;
  }

  .home-guide-topic > h2 {
    margin-bottom: 19px;
  }

  .home-guide-topic > p:not(.eyebrow) {
    font-size: 0.82rem;
  }

  .home-guide-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .home-guide-card,
  .home-guide-link {
    min-height: 0;
    padding: 23px;
  }

  .home-guide-link > span {
    margin-top: 28px;
  }

  .home-guide-responsible {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: -20px;
    padding: 21px;
  }

  .faq-list-full summary {
    min-height: 84px;
    padding-top: 21px;
    padding-bottom: 21px;
  }

  .faq-question {
    gap: 11px;
  }

  .faq-question em {
    width: 34px;
    height: 26px;
  }

  .faq-answer {
    margin-bottom: 30px;
    padding-right: 0;
    padding-left: 0;
  }

  .faq-answer > p {
    font-size: 0.77rem;
  }

  .faq-steps-compact,
  .faq-solution-grid {
    grid-template-columns: 1fr;
  }

  .faq-guide-media {
    margin-top: 22px;
    border-radius: 13px;
  }

  .faq-solution-grid article {
    padding: 19px;
  }

  .faq-note {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .results-embed-heading {
    margin-bottom: 28px;
  }

  .results-embed-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .results-embed-shell {
    border-radius: 16px;
  }

  .results-embed-shell iframe {
    height: 940px;
  }

  .results-source-note {
    margin-top: 14px;
    text-align: start;
  }

  .subpage-hero-inner {
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    padding-top: 132px;
    padding-bottom: 52px;
  }

  .subpage-hero h1 {
    margin-bottom: 17px;
    font-size: clamp(2.75rem, 14vw, 4.25rem);
    letter-spacing: -0.05em;
    line-height: 0.96;
  }

  .subpage-hero {
    min-height: 420px;
  }

  .subpage-hero::before {
    background:
      linear-gradient(90deg, rgba(4, 7, 12, 0.96) 0%, rgba(4, 7, 12, 0.8) 54%, rgba(4, 7, 12, 0.34) 100%),
      linear-gradient(0deg, rgba(4, 6, 10, 0.94) 0%, rgba(4, 6, 10, 0.38) 64%, rgba(4, 6, 10, 0.08) 100%),
      linear-gradient(118deg, rgba(239, 51, 64, 0.28) 0%, rgba(125, 12, 24, 0.11) 58%, transparent 86%);
  }

  .subpage-hero-art {
    object-position: 69% center;
  }

  .subpage-hero-inner > div:first-child > p:last-child {
    max-width: 34rem;
    font-size: 0.88rem;
    line-height: 1.65;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
    line-height: 1;
  }

  .subpage-monogram {
    display: none;
  }

  .pending-notice {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .account-card {
    padding: 25px;
  }

  .values-grid article,
  .steps-grid article {
    min-height: 220px;
  }

  .values-grid article > span,
  .steps-grid article > span {
    margin-bottom: 48px;
  }

  .results-card-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 23px;
  }

  .results-empty {
    padding: 44px 20px;
  }

  .results-balls span {
    width: 43px;
    height: 43px;
  }

  .results-table > div {
    padding-right: 20px;
    padding-left: 20px;
  }

  .news-story,
  .news-story:nth-child(even) {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .news-story:nth-child(even) .news-story-poster {
    order: initial;
    border-left: 0;
  }

  .news-story-poster,
  .news-story-copy {
    min-height: 0;
  }

  .news-story-poster {
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .news-story-poster img {
    width: 100%;
    max-height: none;
  }

  .news-story-copy {
    padding: 42px 25px 46px;
  }

  .news-story-index {
    top: 15px;
    right: 24px;
    font-size: 4.6rem;
  }

  .news-story-copy h2 {
    max-width: 90%;
    font-size: clamp(2.35rem, 12vw, 3.65rem);
  }

  .news-story-meta {
    margin-top: 28px;
  }

  .support-grid article {
    min-height: 230px;
  }

  .support-grid article > span {
    margin-bottom: 35px;
  }

  .support-safety {
    padding: 27px;
  }

  .agreement-aside nav {
    grid-template-columns: 1fr;
  }

  .agreement-card {
    padding: 22px;
    border-radius: 18px;
  }

  .agreement-card > header {
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 22px;
    padding-bottom: 20px;
  }

  .agreement-card > header > span {
    width: 42px;
    height: 42px;
  }

  .agreement-lead {
    margin-bottom: 22px;
    padding: 14px 15px;
    font-size: 0.73rem;
  }

  .agreement-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 14px;
  }

  .agreement-list li::before {
    width: 32px;
    height: 28px;
  }

  .agreement-list p {
    font-size: 0.7rem;
  }

  .tutorial-hero h1 {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }

  .tutorial-hero,
  .tutorial-hero .subpage-hero-inner {
    min-height: 560px;
  }

  .tutorial-hero-meta {
    margin-top: 16px;
  }

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

  .tutorial-guide-heading {
    margin-bottom: 30px;
  }

  .tutorial-stage {
    border-radius: 14px;
  }

  .tutorial-slide {
    padding: 7px;
  }

  .tutorial-image-frame {
    border-radius: 9px;
  }

  .tutorial-image-frame > span {
    bottom: 9px;
    left: 9px;
    padding: 6px 8px;
    font-size: 0.56rem;
  }

  .tutorial-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .tutorial-prev {
    left: 14px;
  }

  .tutorial-next {
    right: 14px;
  }

  .tutorial-counter {
    right: 14px;
    bottom: 14px;
    padding: 6px 9px;
    font-size: 0.56rem;
  }

  .tutorial-card-copy {
    padding: 21px;
  }

  .footer-cta {
    padding: 67px 0;
  }

  .footer-cta h2 {
    font-size: clamp(2.4rem, 13vw, 3.5rem);
  }

  .footer-cta .button-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-cta .button {
    width: 100%;
  }

  .footer-signature {
    min-height: 61px;
    font-size: 0.52rem;
    letter-spacing: 0.11em;
  }

  .footer-signature a {
    width: 36px;
    height: 36px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 28px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-help {
    grid-column: 1 / -1;
  }

  .footer-trust-grid span {
    padding: 13px 9px;
  }

  .footer-trust-grid strong {
    font-size: 1.08rem;
  }

  .footer-payments {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .footer-payments-heading {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-bottom: 22px;
  }

  .footer-payment-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .footer-payment-item {
    min-height: 82px;
    padding: 8px 6px;
  }

  .footer-payment-item img {
    width: 50px;
    height: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
    padding-right: 0;
  }

  .mobile-dock {
    position: fixed;
    z-index: 180;
    right: 10px;
    bottom: 8px;
    left: 10px;
    height: 66px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    background: rgba(17, 20, 31, 0.94);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(20px);
  }

  .floating-mascot {
    right: 4px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    width: 112px;
    filter: drop-shadow(0 12px 15px rgba(4, 8, 20, 0.24));
  }

  .mobile-dock a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    color: #9ca2b2;
  }

  .mobile-dock a > span {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 800;
  }

  .mobile-dock a > .mobile-dock-logo {
    width: 48px;
    height: 48px;
    margin-top: -12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: #fff;
    box-shadow: 0 7px 18px rgba(239, 51, 64, 0.28);
  }

  .mobile-dock-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }

  .mobile-dock a small {
    max-width: 62px;
    overflow: hidden;
    font-size: 0.54rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dock a.is-active {
    color: var(--red-soft);
  }

  .mobile-dock a.is-active > span {
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--red-secondary));
    box-shadow: 0 6px 18px rgba(239, 51, 64, 0.26);
  }

.mobile-dock a.is-active > .mobile-dock-logo {
    background: #fff;
    box-shadow: 0 7px 20px rgba(239, 51, 64, 0.38), 0 0 0 2px rgba(255, 140, 145, 0.3);
  }
}

/* Shared card hover system */

.feature-cards article,
.news-card,
.faq-solution-grid article,
.faq-guide-media,
.account-card,
.values-grid article,
.news-story,
.support-grid article,
.support-safety,
.agreement-card,
.agreement-callouts span,
.fd-dashboard,
.fd-product-card,
.fd-guide-grid article,
.footer-trust-grid {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.steps-grid article,
.faq-list details,
.faq-steps li,
.faq-checks li,
.agreement-list li {
  transition: border-color 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.feature-cards article > span,
.support-grid article > span,
.fd-guide-grid article > span {
  transition: color 200ms ease, transform 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .feature-cards article:hover,
  .news-card:hover,
  .faq-solution-grid article:hover,
  .faq-guide-media:hover,
  .account-card:hover,
  .values-grid article:hover,
  .news-story:hover,
  .support-grid article:hover,
  .support-safety:hover,
  .agreement-card:hover,
  .agreement-callouts span:hover,
  .fd-dashboard:hover,
  .fd-product-card:hover,
  .fd-guide-grid article:hover,
  .footer-trust-grid:hover {
    border-color: rgba(239, 51, 64, 0.46);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(239, 51, 64, 0.1);
    transform: translateY(-5px);
  }

  .steps-grid article:hover,
  .faq-list details:hover,
  .faq-steps li:hover,
  .faq-checks li:hover,
  .agreement-list li:hover {
    border-color: rgba(239, 51, 64, 0.38);
    background-color: rgba(239, 51, 64, 0.035);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  }

  .feature-cards article:hover > span,
  .support-grid article:hover > span,
  .fd-guide-grid article:hover > span {
    color: var(--red-soft);
    transform: translateX(3px);
  }
}

@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;
  }
}
