:root {
  --ink: #07080c;
  --ink-soft: #0d1016;
  --surface: #14171e;
  --surface-raised: #1b1f28;
  --surface-muted: #222730;
  --line: rgba(255, 255, 255, 0.1);
  --line-gold: rgba(201, 245, 0, 0.24);
  --text: #f5f2ea;
  --muted: #a5a7b0;
  --muted-strong: #c9cad0;
  /* Legacy gold tokens now follow HOB's neon-green brand accent. */
  --gold: #9fc700;
  --gold-bright: #ddff57;
  --lime: #c9f500;
  --lime-dark: #202900;
  --teal: #35e2d0;
  --purple: #5e3be1;
  --font-display: Inter, "SF Pro Display", "Noto Sans", system-ui, sans-serif;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
  --shell: min(1240px, calc(100% - 48px));
}

/* Hengongbet registration guide */

.content-register .page-hero-copy .hero-actions,
.content-login .page-hero-copy .hero-actions {
  margin-top: 26px;
}

.registration-alert {
  max-width: 760px;
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--lime);
  border-radius: 0 14px 14px 0;
  background: rgba(201, 245, 0, 0.075);
}

.registration-alert strong {
  display: block;
  margin-bottom: 5px;
  color: var(--lime);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.registration-alert p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.78rem;
  line-height: 1.65;
}

.content-register .feature-checklist i,
.content-login .feature-checklist i {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  font-size: 0.58rem;
  font-weight: 900;
}

.registration-steps-section .section-heading {
  max-width: 820px;
  margin-right: auto;
  margin-bottom: 38px;
  margin-left: auto;
}

.registration-checklist-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 10%, rgba(94, 59, 225, 0.13), transparent 30%),
    rgba(255, 255, 255, 0.012);
}

.registration-checklist-section .section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

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

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

.registration-check-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.registration-check-card:hover {
  border-color: var(--line-gold);
  background: rgba(201, 245, 0, 0.045);
  transform: translateY(-4px);
}

.registration-check-card > span {
  display: block;
  margin-bottom: 24px;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.registration-check-card h3 {
  margin-bottom: 22px;
  font-size: 1.2rem;
}

.registration-check-card strong {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  color: var(--gold-bright);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.registration-check-card p {
  margin: 0;
  font-size: 0.82rem;
}

.registration-numbered-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.registration-numbered-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.registration-numbered-list article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--lime);
  font-size: 0.64rem;
  font-weight: 900;
}

.registration-numbered-list h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.registration-numbered-list p {
  margin: 0;
  font-size: 0.84rem;
}

.registration-plain-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.registration-plain-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
  font-size: 0.82rem;
  line-height: 1.65;
}

.registration-plain-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.registration-plain-list strong {
  color: var(--text);
}

.registration-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.registration-guidance-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  transition: transform 180ms ease, border-color 180ms ease;
}

.registration-guidance-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-4px);
}

.registration-guidance-card h2 {
  max-width: 620px;
  margin-top: 12px;
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.registration-guidance-card p {
  color: var(--muted-strong);
}

.registration-guidance-card .text-link {
  display: inline-flex;
  margin-top: 6px;
}

.registration-security-card {
  background:
    radial-gradient(circle at 88% 12%, rgba(201, 245, 0, 0.09), transparent 34%),
    var(--surface);
}

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

@media (max-width: 960px) {
  .registration-checklist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .content-register .page-hero-copy .hero-actions,
  .content-login .page-hero-copy .hero-actions {
    align-items: stretch;
  }

  .content-register .page-hero-copy .hero-actions .button,
  .content-login .page-hero-copy .hero-actions .button {
    justify-content: center;
  }

  .registration-checklist-grid,
  .registration-split-grid {
    grid-template-columns: 1fr;
  }

  .registration-check-card,
  .registration-guidance-card {
    padding: 24px;
  }

  .registration-alert {
    padding: 15px;
  }
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 90% 8%, rgba(94, 59, 225, 0.08), transparent 30%),
    var(--ink);
  color: var(--text);
  font-family:
    Inter, "SF Pro Display", "Noto Sans", "Noto Sans Thai", "Noto Sans Myanmar",
    "Noto Sans Bengali", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.65rem);
}

h3 {
  font-size: 1.2rem;
}

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

::selection {
  background: var(--lime);
  color: #101400;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--lime);
  color: #101400;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

/* The header starts directly with the primary navigation. */
.responsible-bar,
.preview-status {
  display: none !important;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 10, 14, 0.88);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 186px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}

.desktop-nav a,
.mobile-section-nav a {
  position: relative;
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--lime);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--text);
}

.desktop-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--muted-strong);
}

.button-ghost:hover {
  border-color: var(--gold);
  color: var(--text);
}

.button-lime {
  background: var(--lime);
  box-shadow: 0 0 0 rgba(201, 245, 0, 0);
  color: #111600;
}

.button-lime:hover {
  box-shadow: 0 10px 34px rgba(201, 245, 0, 0.22);
}

.button-gold {
  min-height: 52px;
  padding-inline: 27px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 12px 32px rgba(201, 245, 0, 0.24);
  color: #161009;
}

.button-dark {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
}

.language-menu {
  position: relative;
}

.language-menu > summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: var(--muted-strong);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  list-style: none;
  user-select: none;
}

.language-menu > summary::-webkit-details-marker {
  display: none;
}

.language-menu[open] > summary {
  border-color: var(--gold);
}

.chevron {
  color: var(--gold);
  transition: transform 180ms ease;
}

.language-menu[open] .chevron {
  transform: rotate(180deg);
}

.language-panel {
  position: absolute;
  top: calc(100% + 13px);
  right: 0;
  width: 310px;
  max-height: min(70vh, 520px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(17, 20, 28, 0.98);
  box-shadow: var(--shadow);
}

.language-panel::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(201, 245, 0, 0.08), transparent 35%);
  content: "";
  pointer-events: none;
}

.language-panel p {
  position: relative;
  margin: 4px 8px 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.language-panel a {
  position: relative;
  min-height: 44px;
  display: grid;
  grid-template-columns: 26px 1fr 18px;
  align-items: center;
  gap: 9px;
  padding: 0 11px;
  border-radius: 10px;
  color: var(--muted-strong);
  font-size: 0.84rem;
}

.language-panel a:hover,
.language-panel a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.language-check {
  color: var(--lime);
  font-size: 0.68rem;
}

.mobile-section-nav {
  display: none;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0 68px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 35%),
    radial-gradient(circle at 73% 42%, rgba(94, 59, 225, 0.18), transparent 30%),
    radial-gradient(circle at 14% 18%, rgba(201, 245, 0, 0.1), transparent 26%);
}

.hero-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(201, 245, 0, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: -390px;
  left: -260px;
  width: 750px;
  height: 750px;
}

.hero-orbit-two {
  right: -100px;
  bottom: -390px;
  width: 720px;
  height: 720px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
  align-items: center;
  gap: 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.hero-copy h1 {
  max-width: 610px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 5.7vw, 6.4rem);
  font-weight: 900;
  letter-spacing: -0.065em;
}

.hero-copy h1 span {
  display: block;
  color: var(--lime);
}

.hero-copy > p {
  max-width: 590px;
  margin-bottom: 32px;
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 850;
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  color: var(--lime);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 40px;
}

.proof-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: rgba(201, 245, 0, 0.08);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-proof p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.hero-proof strong {
  color: var(--text);
  font-size: 0.84rem;
}

.hero-proof p span {
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: #121525;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-visual::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.32), transparent 35%),
    linear-gradient(180deg, transparent 55%, rgba(6, 7, 11, 0.74));
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  z-index: 0;
  top: 12%;
  left: 44%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(100, 67, 255, 0.5);
  filter: blur(90px);
}

.hero-slide {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 800ms ease,
    transform 6.5s linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-controls {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(5, 6, 9, 0.52);
  color: var(--text);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.hero-controls > button:hover {
  border-color: var(--gold);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dots button {
  width: 19px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition:
    width 180ms ease,
    background-color 180ms ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: var(--lime);
}

.trust-rail {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(90deg, #6f9000, var(--gold-bright), #6f9000);
  color: #161109;
}

.trust-track {
  width: max-content;
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 52px;
  padding-inline: 28px;
  animation: rail 32s linear infinite;
}

.trust-track span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-track i {
  font-size: 0.55rem;
}

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

.section {
  position: relative;
  padding: 108px 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 46px;
}

.section-heading h2 {
  margin-bottom: 15px;
}

.section-heading p {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 0.98rem;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 70px;
}

.split-heading > p {
  padding-bottom: 6px;
}

.centered-heading {
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

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

.promotion-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition:
    transform 230ms ease,
    border-color 230ms ease,
    box-shadow 230ms ease;
}

.promotion-card:hover {
  border-color: var(--line-gold);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(-6px);
}

.promotion-card > img {
  width: 100%;
  aspect-ratio: 640 / 207;
  object-fit: contain;
}

.promotion-card-body {
  min-height: 72px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
}

.promotion-card-body > span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
}

.promotion-card-body strong {
  overflow: hidden;
  font-size: 0.84rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.promotion-card-body a {
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 800;
}

.promotion-card-body a i {
  color: var(--lime);
  font-style: normal;
}

.promotion-card-body a:hover {
  color: var(--text);
}

.section-hot {
  padding-top: 34px;
}

.hot-scroller {
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  gap: 18px;
}

.hot-card {
  min-width: 0;
  text-align: center;
}

.hot-art {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(201, 245, 0, 0.08), transparent),
    var(--surface);
}

.hot-art::after {
  position: absolute;
  right: 12%;
  bottom: -20px;
  left: 12%;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 245, 0, 0.2);
  content: "";
  filter: blur(22px);
}

.hot-art img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  transition: transform 280ms ease;
}

.hot-card:hover img {
  transform: scale(1.045);
}

.hot-art > span {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 4px 7px;
  border-radius: 6px;
  background: var(--lime);
  color: #131900;
  font-size: 0.56rem;
  font-weight: 950;
}

.hot-card > strong,
.hot-card > small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hot-card > strong {
  font-size: 0.86rem;
}

.hot-card > small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.section-games {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 50% 0, rgba(94, 59, 225, 0.12), transparent 38%),
    var(--ink-soft);
}

.game-tabs {
  max-width: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 auto 32px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.game-tabs button {
  min-height: 40px;
  flex: 1;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.game-tabs button:hover {
  color: var(--text);
}

.game-tabs button.is-active {
  background: var(--lime);
  color: #131900;
}

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

.provider-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  isolation: isolate;
}

.provider-card::after {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(transparent, rgba(5, 6, 9, 0.9));
  content: "";
}

.provider-card img {
  width: 100%;
  aspect-ratio: 256 / 330;
  object-fit: contain;
  transition: transform 250ms ease;
}

.provider-card:hover img {
  transform: scale(1.045);
}

.provider-card-shine {
  position: absolute;
  z-index: 3;
  top: -100%;
  left: -60%;
  width: 40%;
  height: 240%;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(18px);
  opacity: 0;
  transform: rotate(28deg);
  transition:
    left 520ms ease,
    opacity 180ms ease;
}

.provider-card:hover .provider-card-shine {
  left: 130%;
  opacity: 0.35;
}

.provider-card strong,
.provider-card-category {
  position: absolute;
  z-index: 4;
  right: 12px;
  left: 12px;
}

.provider-card-category {
  bottom: 33px;
  color: var(--gold-bright);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.provider-card strong {
  bottom: 11px;
  overflow: hidden;
  font-size: 0.79rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section-why {
  overflow: hidden;
}

.section-why::before {
  position: absolute;
  top: 0;
  left: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(201, 245, 0, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(201, 245, 0, 0.022),
    0 0 0 160px rgba(201, 245, 0, 0.015);
  content: "";
  pointer-events: none;
}

.why-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: 80px;
}

.why-intro {
  position: sticky;
  top: 140px;
}

.why-intro > p {
  max-width: 410px;
}

.why-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.why-stat strong {
  color: var(--lime);
  font-size: 4.5rem;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.why-stat span {
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.why-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(201, 245, 0, 0.06), transparent 40%),
    var(--surface);
}

.why-card:nth-child(2),
.why-card:nth-child(4) {
  transform: translateY(44px);
}

.why-card-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
  font-weight: 900;
}

.why-card > i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: rgba(201, 245, 0, 0.08);
  color: var(--gold-bright);
  font-size: 1.35rem;
  font-style: normal;
}

.why-card h3 {
  margin-bottom: 12px;
}

.why-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.section-guide {
  padding-top: 150px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.018), transparent);
}

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

.step-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.step-number {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-bright);
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.step-line {
  position: absolute;
  top: 76px;
  right: 24px;
  left: 24px;
  height: 1px;
  background: var(--line);
}

.step-line i {
  position: absolute;
  top: -4px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(201, 245, 0, 0.55);
}

.step-card h3 {
  margin-bottom: 13px;
}

.step-card p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.step-arrow {
  position: absolute;
  z-index: 2;
  top: 66px;
  right: -25px;
  width: 34px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold);
}

.section-device {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 52%, rgba(201, 245, 0, 0.09), transparent 27%),
    radial-gradient(circle at 74% 52%, rgba(94, 59, 225, 0.13), transparent 43%),
    var(--ink-soft);
}

.device-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.device-copy > p {
  max-width: 570px;
  font-size: 1.03rem;
}

.device-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 23px;
}

.device-points span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 750;
}

.device-points i {
  margin-right: 6px;
  color: var(--lime);
  font-style: normal;
}

.device-copy small {
  color: var(--gold-bright);
  font-size: 0.73rem;
}

.phone-scene {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.phone-orbit {
  position: absolute;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(201, 245, 0, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(201, 245, 0, 0.025),
    0 0 0 140px rgba(201, 245, 0, 0.012);
}

.phone {
  position: relative;
  z-index: 2;
  width: 282px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 40px;
  background: linear-gradient(145deg, #343943, #111318 55%);
  box-shadow:
    0 42px 90px rgba(0, 0, 0, 0.56),
    inset 0 0 0 2px rgba(255, 255, 255, 0.04);
  transform: rotate(4deg);
}

.phone-top {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.phone-top span {
  width: 72px;
  height: 19px;
  border-radius: 999px;
  background: #030407;
}

.phone-top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111827;
  box-shadow: inset 0 0 0 1px #26334b;
}

.phone-screen {
  position: relative;
  min-height: 556px;
  overflow: hidden;
  padding: 52px 12px 68px;
  border-radius: 32px;
  background: #0b0e14;
}

.phone-screen > img {
  width: calc(100% + 24px);
  max-width: none;
  height: 116px;
  margin: -52px -12px 18px;
  object-fit: contain;
  object-position: center;
}

.phone-screen > strong {
  display: block;
  margin-bottom: 15px;
  color: var(--gold-bright);
  font-size: 0.78rem;
}

.phone-cards {
  display: grid;
  gap: 10px;
}

.phone-cards img {
  width: 100%;
  border-radius: 9px;
}

.phone-nav {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  min-height: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(22, 27, 36, 0.95);
  color: var(--muted-strong);
  text-align: center;
}

.phone-nav span:nth-child(2) {
  color: var(--lime);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  align-items: start;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 140px;
}

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

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

.faq-list summary {
  min-height: 86px;
  display: grid;
  grid-template-columns: 42px 1fr 32px;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary > span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
}

.faq-list summary strong {
  font-size: 1.02rem;
}

.faq-list summary i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--lime);
  font-style: normal;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.faq-list details[open] summary i {
  background: var(--lime);
  color: #111600;
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 760px;
  margin: -6px 45px 28px 56px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.72;
}

.faq-answer > :last-child {
  margin-bottom: 0;
}

.faq-answer p {
  margin-bottom: 14px;
}

.faq-answer ul,
.faq-answer ol {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding-left: 22px;
}

.faq-answer li::marker {
  color: var(--lime);
  font-weight: 900;
}

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

.faq-answer-media {
  width: max-content;
  max-width: 100%;
  margin: 0 0 20px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #202126;
}

.faq-answer-media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.faq-answer-media figcaption {
  padding: 9px 3px 1px;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.45;
}

.faq-example {
  padding: 15px 17px;
  border: 1px solid rgba(201, 245, 0, 0.16);
  border-radius: 13px;
  background: rgba(201, 245, 0, 0.05);
}

.seo-section {
  border-top: 1px solid var(--line);
  background: #090b10;
}

.seo-layout {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 70px;
}

.seo-layout > aside {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  background: rgba(201, 245, 0, 0.04);
}

.seo-layout > aside > span {
  color: var(--gold-bright);
  font-size: 2.7rem;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.seo-layout > aside small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 750;
  line-height: 1.35;
  text-transform: uppercase;
}

.seo-copy > p {
  max-width: 920px;
  color: var(--muted-strong);
  font-size: 1.02rem;
}

.seo-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 45px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.seo-columns h3 {
  margin-bottom: 15px;
  color: var(--gold-bright);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.seo-columns p {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.cta-section {
  padding-top: 28px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 90px 40px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 120%, rgba(201, 245, 0, 0.14), transparent 40%),
    linear-gradient(135deg, rgba(201, 245, 0, 0.1), rgba(94, 59, 225, 0.11)),
    var(--surface);
  text-align: center;
}

.cta-panel::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  mask-image: radial-gradient(circle at center, black, transparent 70%);
  opacity: 0.3;
}

.cta-panel > *:not(.cta-ring) {
  position: relative;
  z-index: 2;
}

.cta-kicker {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.cta-panel h2 {
  max-width: 760px;
  margin-inline: auto;
}

.cta-panel p {
  max-width: 670px;
  margin: 0 auto 30px;
  color: var(--muted-strong);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.cta-ring {
  position: absolute;
  border: 1px solid rgba(201, 245, 0, 0.16);
  border-radius: 50%;
}

.cta-ring-one {
  top: -160px;
  left: -110px;
  width: 410px;
  height: 410px;
}

.cta-ring-two {
  right: -120px;
  bottom: -230px;
  width: 520px;
  height: 520px;
}

.site-footer {
  padding: 68px 0 0;
  border-top: 2px solid var(--gold);
  background:
    radial-gradient(circle at 18% 8%, rgba(94, 59, 225, 0.12), transparent 28rem),
    #030305;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.15fr) minmax(145px, 0.72fr) minmax(250px, 1.2fr) minmax(220px, 0.95fr);
  align-items: start;
  gap: 46px;
}

.footer-brand img {
  width: 190px;
  height: auto;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 360px;
  margin-bottom: 22px;
  color: #aaa5b1;
  font-size: 0.84rem;
  line-height: 1.8;
}

.age-mark {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(255, 113, 137, 0.38);
  border-radius: 7px;
  color: #ff7189;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-column,
.footer-information {
  display: flex;
  flex-direction: column;
}

.footer-grid h2,
.footer-subnav h2 {
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold);
  color: #f3f0f8;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-information > a {
  padding: 6px 0;
  color: #99949f;
  font-size: 0.8rem;
  font-weight: 680;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-information > a:hover {
  color: var(--gold-bright);
  transform: translateX(3px);
}

.payment-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 54px);
  gap: 9px;
}

.footer-payment-logo {
  width: 54px;
  height: 54px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.footer-payment-logo:hover {
  border-color: var(--lime);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38), 0 0 16px rgba(201, 245, 0, 0.12);
  transform: translateY(-3px);
}

.footer-payment-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-support > p {
  margin-bottom: 0;
  color: #99949f;
  font-size: 0.76rem;
  line-height: 1.65;
}

.footer-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 20px 0 18px;
}

.footer-action-grid .button {
  width: 100%;
  min-height: 42px;
  padding-inline: 12px;
}

.footer-social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  padding-top: 2px;
}

.footer-social-link {
  --social-color: var(--gold);
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-direction: column;
  color: #8f8a96;
}

.footer-social-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--social-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.footer-social-icon img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.footer-social-link small {
  width: 100%;
  overflow: hidden;
  font-size: 0.55rem;
  font-weight: 750;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-social-facebook {
  --social-color: #1877f2;
}

.footer-social-instagram {
  --social-color: #d9468f;
}

.footer-social-whatsapp {
  --social-color: #173321;
}

.footer-social-telegram {
  --social-color: #229ed9;
}

.footer-subnav {
  display: flex;
  align-items: flex-start;
  gap: 34px;
  margin-top: 46px;
  padding: 27px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-subnav h2 {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  border: 0;
}

.footer-subnav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-subnav a {
  color: #8f8a96;
  font-size: 0.74rem;
}

.footer-subnav a:hover {
  color: var(--lime);
}

.footer-bottom-band {
  background: linear-gradient(90deg, var(--gold), var(--gold-bright) 66%, var(--lime));
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  padding: 9px 0;
}

.footer-bottom p {
  margin-bottom: 0;
  color: #0a0805;
  font-size: 0.68rem;
  font-weight: 850;
}

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 36px, 1050px);
  }

  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a {
    font-size: 0.78rem;
  }

  .header-login {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
    gap: 34px;
  }

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

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

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

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

  .header-actions {
    margin-left: auto;
  }

  .mobile-section-nav {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 0 max(18px, calc((100vw - 920px) / 2)) 11px;
    scrollbar-width: none;
  }

  .mobile-section-nav::-webkit-scrollbar {
    display: none;
  }

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

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

  .hero-copy h1 {
    max-width: 780px;
  }

  .hero-visual {
    min-height: 440px;
  }

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

  .hot-scroller {
    grid-template-columns: repeat(6, minmax(170px, 1fr));
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--gold) transparent;
  }

  .hot-card {
    scroll-snap-align: start;
  }

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

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

  .why-intro,
  .faq-intro {
    position: static;
  }

  .why-intro > p {
    max-width: 650px;
  }

  .why-stat {
    max-width: 390px;
  }

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

  .step-arrow {
    display: none;
  }

  .device-layout {
    grid-template-columns: 1fr 0.8fr;
    gap: 30px;
  }

  .phone-scene {
    min-height: 520px;
  }

  .phone-orbit {
    width: 370px;
    height: 370px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .seo-layout {
    grid-template-columns: 100px 1fr;
    gap: 40px;
  }

  .seo-columns {
    grid-template-columns: 1fr;
    gap: 23px;
  }

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

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-lg: 24px;
  }

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

  body {
    padding-bottom: 72px;
    font-size: 15px;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .header-inner {
    min-height: 66px;
    gap: 12px;
  }

  .brand img {
    width: 144px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions > .button {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 0.72rem;
  }

  .language-menu > summary {
    min-height: 38px;
    padding: 0 10px;
  }

  .language-menu > summary span:nth-child(2),
  .chevron {
    display: none;
  }

  .language-panel {
    position: fixed;
    top: 103px;
    right: 14px;
    left: 14px;
    width: auto;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
  }

  .mobile-section-nav {
    gap: 20px;
    padding: 0 14px 9px;
  }

  .mobile-section-nav a {
    font-size: 0.72rem;
  }

  .hero-section {
    padding: 54px 0 44px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(3rem, 16vw, 4.65rem);
  }

  .hero-copy > p {
    margin-bottom: 25px;
    font-size: 0.96rem;
  }

  .hero-actions {
    gap: 18px;
  }

  .button-gold {
    min-height: 48px;
    padding-inline: 21px;
  }

  .hero-proof {
    margin-top: 28px;
  }

  .hero-visual {
    min-height: 285px;
    border-radius: 22px;
  }

  .hero-controls {
    right: 14px;
    bottom: 13px;
    left: 14px;
  }

  .hero-controls > button {
    width: 36px;
    height: 36px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .split-heading {
    display: block;
  }

  .split-heading > p {
    padding-bottom: 0;
  }

  .promotion-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    margin-right: -14px;
    padding-right: 14px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .promotion-grid::-webkit-scrollbar {
    display: none;
  }

  .promotion-card {
    min-width: 84vw;
    scroll-snap-align: start;
  }

  .section-hot {
    padding-top: 15px;
  }

  .hot-scroller {
    grid-template-columns: repeat(6, 142px);
    gap: 12px;
    margin-right: -14px;
    padding-right: 14px;
  }

  .hot-art {
    border-radius: 22px;
  }

  .game-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    margin-right: -14px;
    margin-left: -14px;
    padding-right: 14px;
    padding-left: 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    scrollbar-width: none;
  }

  .game-tabs::-webkit-scrollbar {
    display: none;
  }

  .game-tabs button {
    min-width: max-content;
    flex: 0 0 auto;
    padding-inline: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
  }

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

  .home-page-v2 .provider-card {
    border-radius: 13px;
  }

  .home-page-v2 .provider-card-category,
  .home-page-v2 .provider-card strong {
    padding-inline: 9px;
  }

  .home-page-v2 .provider-card-category {
    margin-top: 8px;
    font-size: 0.52rem;
  }

  .home-page-v2 .provider-card strong {
    padding-bottom: 10px;
    font-size: 0.72rem;
  }

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

  .why-card,
  .why-card:nth-child(2),
  .why-card:nth-child(4) {
    min-height: 230px;
    padding: 25px;
    transform: none;
  }

  .why-card > i {
    margin-bottom: 25px;
  }

  .section-guide {
    padding-top: 76px;
  }

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

  .step-card {
    min-height: 220px;
  }

  .device-layout {
    grid-template-columns: 1fr;
  }

  .device-points {
    gap: 7px;
  }

  .phone-scene {
    min-height: 560px;
  }

  .phone {
    transform: rotate(2deg);
  }

  .faq-list summary {
    min-height: 74px;
    grid-template-columns: 30px 1fr 28px;
    gap: 8px;
  }

  .faq-list summary strong {
    font-size: 0.9rem;
  }

  .faq-answer {
    margin: 0 36px 25px 38px;
    font-size: 0.82rem;
  }

  .faq-answer-media {
    padding: 7px;
  }

  .seo-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .seo-layout > aside {
    min-height: auto;
    flex-direction: row;
    align-items: center;
  }

  .seo-layout > aside small {
    text-align: right;
  }

  .seo-columns {
    margin-top: 32px;
    padding-top: 28px;
  }

  .cta-panel {
    padding: 68px 20px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .footer-subnav {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding-block: 12px;
  }

  .mobile-bottom-nav {
    position: fixed;
    z-index: 70;
    right: 10px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 10px;
    min-height: 64px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(18, 23, 32, 0.92);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
  }

  .mobile-bottom-nav > a {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.56rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-bottom-nav > a > span {
    color: var(--muted-strong);
    font-size: 1rem;
  }

  .mobile-bottom-nav .mobile-play {
    align-self: end;
    overflow: visible;
  }

  .mobile-bottom-nav .mobile-play > span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-top: -25px;
    border: 4px solid #111620;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--gold-bright), var(--gold));
    box-shadow: 0 8px 26px rgba(201, 245, 0, 0.28);
    color: #161009;
    font-size: 0.7rem;
    font-weight: 950;
  }
}

/* Home game-card hover feedback */

.section-hot .hot-card,
.section-games .provider-card,
.section-hot .hot-art {
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.section-hot .hot-art,
.section-games .provider-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body .section-games .provider-card-shine {
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .section-hot .hot-card:hover,
  .section-games .provider-card:hover {
    transform: translateY(-8px) scale(1.012);
  }

  .section-hot .hot-card:hover .hot-art,
  .section-games .provider-card:hover {
    border-color: rgba(201, 245, 0, 0.58);
    background-color: rgba(201, 245, 0, 0.045);
    box-shadow:
      0 18px 38px rgba(0, 0, 0, 0.4),
      0 0 24px rgba(201, 245, 0, 0.1);
  }

  body .section-hot .hot-card:hover img,
  body .section-games .provider-card:hover img {
    filter: saturate(1.08) contrast(1.035);
    transform: scale(1.045);
  }

  .section-hot .hot-card:hover > strong,
  .section-games .provider-card:hover > strong {
    color: var(--lime);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-hot .hot-card,
  .section-games .provider-card,
  .section-hot .hot-art,
  .section-hot .hot-card img,
  .section-games .provider-card img {
    transition: none;
  }

  .section-hot .hot-card:hover,
  .section-games .provider-card:hover,
  body .section-hot .hot-card:hover img,
  body .section-games .provider-card:hover img {
    transform: none;
  }
}

/* Mobile header page navigation states */

.site-header .mobile-section-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 160ms ease;
}

body .site-header .mobile-section-nav a[aria-current="page"] {
  border-color: rgba(201, 245, 0, 0.28);
  background: rgba(201, 245, 0, 0.1);
  box-shadow: inset 0 -2px 0 var(--lime), 0 6px 18px rgba(0, 0, 0, 0.16);
  color: var(--lime);
}

.site-header .mobile-section-nav a:active {
  border-color: var(--lime);
  background: var(--lime);
  color: #111700;
  transform: scale(0.96);
}

@media (hover: hover) and (pointer: fine) {
  .site-header .mobile-section-nav a:hover {
    border-color: rgba(53, 226, 208, 0.28);
    background: rgba(53, 226, 208, 0.1);
    color: var(--text);
    transform: translateY(-1px);
  }

  body .site-header .mobile-section-nav a[aria-current="page"]:hover {
    border-color: rgba(201, 245, 0, 0.46);
    background: rgba(201, 245, 0, 0.15);
    color: var(--lime);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header .mobile-section-nav a {
    transition: none;
  }
}

/* Homepage editorial guide */
.home-editorial-section {
  position: relative;
  overflow: clip;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background:
    radial-gradient(circle at 7% 12%, rgba(53, 226, 208, 0.11), transparent 27rem),
    radial-gradient(circle at 94% 78%, rgba(192, 255, 0, 0.055), transparent 24rem),
    #0b1015;
}

.home-editorial-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 88%);
  pointer-events: none;
}

.home-editorial-section > .shell {
  position: relative;
  z-index: 1;
}

.home-editorial-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.home-editorial-heading h2 {
  max-width: 720px;
  margin: 9px 0 0;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  line-height: 1.04;
}

.home-editorial-heading > p {
  max-width: 570px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.91rem;
  line-height: 1.85;
}

.home-editorial-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(38px, 6vw, 86px);
  padding-top: 46px;
}

.home-editorial-index {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(17, 24, 31, 0.82);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.home-editorial-monogram {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(53, 226, 208, 0.48);
  border-radius: 50%;
  background: rgba(53, 226, 208, 0.08);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 850;
  letter-spacing: 0.07em;
}

.home-editorial-index > p {
  margin: 14px 0 20px;
  color: #f3f6f8;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-editorial-index nav {
  display: grid;
  gap: 2px;
}

.home-editorial-index a {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
  color: var(--muted-strong);
  font-size: 0.72rem;
}

.home-editorial-index a:hover {
  color: var(--teal);
}

.home-editorial-index a span {
  color: var(--teal);
  font-size: 0.61rem;
  font-weight: 850;
}

.home-editorial-content {
  min-width: 0;
}

.home-editorial-topic {
  scroll-margin-top: 120px;
  padding: 0 0 clamp(52px, 7vw, 84px);
}

.home-editorial-topic + .home-editorial-topic {
  padding-top: clamp(50px, 7vw, 82px);
  border-top: 1px solid var(--line);
}

.home-topic-heading {
  display: flex;
  gap: 17px;
  align-items: flex-start;
}

.home-topic-heading > span {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(53, 226, 208, 0.35);
  border-radius: 12px;
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 850;
}

.home-topic-heading p {
  margin: 1px 0 6px;
  color: var(--teal);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.home-topic-heading h3 {
  margin: 0;
  color: #f5f7f9;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.12;
}

.home-topic-lead {
  max-width: 900px;
  margin: 22px 0 28px 59px;
  color: var(--muted-strong);
  font-size: 0.87rem;
  line-height: 1.9;
}

.home-editorial-grid,
.home-guide-links {
  display: grid;
  gap: 15px;
  margin-left: 59px;
}

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

.home-editorial-card,
.home-guide-links a {
  position: relative;
  min-height: 210px;
  padding: 23px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(24, 33, 42, 0.94), rgba(14, 20, 26, 0.94));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.home-editorial-card::after,
.home-guide-links a::after {
  position: absolute;
  right: -35px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(53, 226, 208, 0.12);
  border-radius: 50%;
  content: "";
}

.home-editorial-card:hover,
.home-guide-links a:hover,
.home-category-links a:hover {
  border-color: rgba(53, 226, 208, 0.48);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26), 0 0 25px rgba(53, 226, 208, 0.07);
  transform: translateY(-5px);
}

.home-card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 12px;
  background: rgba(53, 226, 208, 0.1);
  color: var(--teal);
  font-size: 1.15rem;
}

.home-editorial-card h4,
.home-category-links h4,
.home-guide-links h4 {
  margin: 0 0 9px;
  color: #f4f6f8;
  font-size: 1rem;
}

.home-editorial-card p,
.home-category-links p,
.home-guide-links p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.75;
}

.home-category-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-left: 59px;
}

.home-category-links a {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(18, 26, 33, 0.88);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.home-category-links a > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 14px;
  background: rgba(53, 226, 208, 0.1);
  color: var(--teal);
  font-size: 0.95rem;
  font-weight: 850;
}

.home-category-links a > b {
  color: #68737b;
  font-size: 0.95rem;
  transition: color 180ms ease, transform 180ms ease;
}

.home-category-links a:hover > b {
  color: var(--teal);
  transform: translate(2px, -2px);
}

.home-guide-links a {
  display: flex;
  min-height: 235px;
  flex-direction: column;
}

.home-guide-links small {
  color: var(--teal);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.home-guide-links h4 {
  margin-top: 23px;
}

.home-guide-links a > span {
  margin-top: auto;
  padding-top: 23px;
  color: var(--lime);
  font-size: 0.69rem;
  font-weight: 800;
}

.home-safety-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 40px;
  margin: 24px 0 0 59px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(18, 26, 33, 0.88);
}

.home-safety-layout p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.8rem;
  line-height: 1.85;
}

.home-safety-layout p + p {
  margin-top: 14px;
}

.home-safety-layout ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.home-safety-layout li {
  position: relative;
  padding-left: 22px;
  color: #d4dadd;
  font-size: 0.73rem;
  line-height: 1.55;
}

.home-safety-layout li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.home-responsible-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: 14px 0 0 59px;
  padding: 15px 18px;
  border: 1px solid rgba(192, 255, 0, 0.18);
  border-radius: 16px;
  background: rgba(192, 255, 0, 0.045);
}

.home-responsible-bar > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: #091006;
  font-size: 0.72rem;
  font-weight: 950;
}

.home-responsible-bar p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.73rem;
}

.home-responsible-bar a {
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 850;
}

@media (max-width: 1040px) {
  .home-editorial-layout {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 34px;
  }

  .home-editorial-index {
    padding: 18px;
  }

  .home-editorial-grid-three,
  .home-guide-links {
    grid-template-columns: 1fr;
  }

  .home-editorial-card,
  .home-guide-links a {
    min-height: 0;
  }
}

@media (max-width: 780px) {
  .home-editorial-heading,
  .home-editorial-layout,
  .home-safety-layout {
    grid-template-columns: 1fr;
  }

  .home-editorial-heading {
    gap: 18px;
  }

  .home-editorial-index {
    position: relative;
    top: auto;
  }

  .home-editorial-index nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .home-editorial-index a {
    display: grid;
    gap: 4px;
    padding: 10px 6px;
    text-align: center;
  }

  .home-topic-lead,
  .home-editorial-grid,
  .home-category-links,
  .home-guide-links,
  .home-safety-layout,
  .home-responsible-bar {
    margin-left: 0;
  }

  .home-category-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .home-editorial-heading h2 {
    font-size: 1.9rem;
  }

  .home-editorial-index {
    padding: 16px;
  }

  .home-editorial-monogram {
    width: 58px;
    height: 58px;
  }

  .home-topic-heading {
    gap: 12px;
  }

  .home-topic-heading > span {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .home-topic-heading h3 {
    font-size: 1.42rem;
  }

  .home-editorial-card,
  .home-guide-links a,
  .home-safety-layout {
    padding: 20px;
  }

  .home-category-links a {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 17px;
  }

  .home-category-links a > span {
    width: 44px;
    height: 44px;
  }

  .home-responsible-bar {
    grid-template-columns: auto 1fr;
  }

  .home-responsible-bar a {
    grid-column: 1 / -1;
    padding-top: 11px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-editorial-card,
  .home-guide-links a,
  .home-category-links a {
    transition: none;
  }

  .home-editorial-card:hover,
  .home-guide-links a:hover,
  .home-category-links a:hover {
    transform: none;
  }
}

/* Games mega menu */

.games-mega-menu {
  position: static;
}

.games-mega-menu > summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted-strong);
  font-size: clamp(0.72rem, 0.72vw, 0.82rem);
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
}

.games-mega-menu > summary::-webkit-details-marker {
  display: none;
}

.games-mega-menu > summary::before {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--lime);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.games-mega-menu > summary:hover,
.games-mega-menu > summary:focus-visible,
.games-mega-menu[open] > summary,
.games-mega-menu.is-current > summary {
  color: var(--text);
}

.games-mega-menu > summary:hover::before,
.games-mega-menu > summary:focus-visible::before,
.games-mega-menu[open] > summary::before,
.games-mega-menu.is-current > summary::before {
  opacity: 1;
  transform: scaleX(1);
}

.games-mega-chevron {
  color: var(--lime);
  font-size: 0.72rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.games-mega-menu[open] .games-mega-chevron {
  transform: rotate(180deg);
}

.games-mega-scrim {
  position: fixed;
  z-index: 48;
  top: 76px;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(2, 4, 8, 0.68);
  content: "";
  backdrop-filter: blur(4px);
}

.games-mega-panel {
  position: fixed;
  z-index: 49;
  top: 76px;
  right: 0;
  left: 0;
  max-height: calc(100vh - 76px);
  overflow-y: auto;
  border-top: 1px solid rgba(201, 245, 0, 0.22);
  border-bottom: 1px solid rgba(201, 245, 0, 0.2);
  background:
    radial-gradient(circle at 82% 12%, rgba(94, 59, 225, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(16, 19, 27, 0.99), rgba(7, 9, 14, 0.99));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.58);
}

.games-mega-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 28px;
}

.games-mega-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.games-mega-heading {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.6vw, 1.4rem);
  line-height: 1.2;
}

.games-mega-kicker {
  margin: 0 0 4px;
  color: var(--lime);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.games-mega-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.games-mega-categories a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #c7c5cc;
  font-size: 0.7rem;
  font-weight: 780;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.games-mega-categories a:hover,
.games-mega-categories a:focus-visible,
.games-mega-categories a.is-active {
  border-color: rgba(201, 245, 0, 0.46);
  background: rgba(201, 245, 0, 0.1);
  color: var(--lime);
  transform: translateY(-1px);
}

.games-mega-category-icon {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 245, 0, 0.12);
  color: var(--lime);
  font-size: 0.66rem;
}

.games-mega-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 13px;
}

.games-mega-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.desktop-nav .games-mega-panel a::after {
  content: none;
}

.desktop-nav .games-mega-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 11, 0.96));
  content: "";
  pointer-events: none;
}

.games-mega-card:hover,
.games-mega-card:focus-visible {
  border-color: rgba(201, 245, 0, 0.52);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34), 0 0 22px rgba(201, 245, 0, 0.08);
  transform: translateY(-3px);
}

.games-mega-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 256 / 330;
  object-fit: contain;
  object-position: center;
  background: #11151c;
}

.games-mega-card:hover img,
.games-mega-card:focus-visible img {
  transform: none;
}

.games-mega-card strong {
  position: absolute;
  z-index: 1;
  right: 8px;
  bottom: 8px;
  left: 8px;
  color: #fff;
  font-size: 0.72rem;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 2px 8px #000;
}

.games-mega-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.games-mega-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 850;
}

.games-mega-view-all:hover {
  color: #fff;
}

@media (max-width: 1240px) {
  .games-mega-menu > summary {
    font-size: 0.72rem;
  }

  .games-mega-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

@media (max-width: 1050px) {
  .games-mega-menu {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .games-mega-card,
  .games-mega-card img,
  .games-mega-categories a,
  .games-mega-chevron {
    transition: none;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 124px;
  }

  .header-actions > .button {
    padding-inline: 11px;
  }

  .hero-copy h1 {
    font-size: 2.85rem;
  }

  .text-link {
    font-size: 0.77rem;
  }
}

@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;
  }

  .trust-track {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 10px;
  }
}

/* Inner pages */

.inner-main {
  min-height: 70vh;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 62px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 25%, rgba(94, 59, 225, 0.2), transparent 32%),
    linear-gradient(135deg, #0b0d13, #111523);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent);
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
  align-items: center;
  gap: 52px;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--gold-bright);
}

.breadcrumbs i {
  color: var(--gold);
  font-style: normal;
}

.page-hero h1 {
  max-width: 720px;
  margin-bottom: 21px;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 920;
}

.page-hero-copy > p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: 1.04rem;
}

.page-hero-media {
  min-height: 0;
  display: grid;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
  place-items: center;
}

.page-hero-media img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 3840 / 676;
  object-fit: contain;
  object-position: center;
}

.inner-section {
  padding: 88px 0;
}

.inner-section + .inner-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.inner-section-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent),
    #0b0d12;
}

.inner-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.inner-heading h2 {
  margin-bottom: 13px;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
}

.inner-heading p {
  margin-bottom: 0;
}

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

.category-link-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  isolation: isolate;
}

.category-link-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(6, 7, 11, 0.94) 88%);
  content: "";
}

.category-link-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.category-link-card:hover img {
  transform: none;
}

.category-link-copy {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
}

.category-link-copy span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.category-link-copy strong {
  font-size: 1.15rem;
}

.page-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}

.page-category-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.76rem;
  font-weight: 820;
}

.page-category-nav a:hover,
.page-category-nav a[aria-current="page"] {
  border-color: var(--gold);
  background: rgba(201, 245, 0, 0.1);
  color: var(--gold-bright);
}

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

.catalog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.catalog-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-5px);
}

.catalog-card img {
  width: 100%;
  aspect-ratio: 256 / 330;
  object-fit: contain;
  object-position: center;
  background: #0b0d13;
}

.catalog-card-body {
  min-height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 11px 13px;
}

.catalog-card-body strong {
  overflow: hidden;
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-card-body small {
  color: var(--muted);
  font-size: 0.65rem;
}

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

.hot-game-grid .catalog-card img {
  aspect-ratio: 256 / 320;
}

.promotion-list {
  display: grid;
  gap: 18px;
}

.promotion-list-card {
  display: grid;
  grid-template-columns: minmax(320px, 400px) minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.promotion-list-card > img {
  width: 100%;
  height: auto;
  min-height: 0;
  align-self: center;
  aspect-ratio: 640 / 207;
  object-fit: contain;
  object-position: center;
  background: #0b0d13;
}

.promotion-list-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px 24px;
  padding: 25px 28px;
}

.promotion-list-content {
  min-width: 0;
}

.promotion-list-content > span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(201, 245, 0, 0.1);
  color: var(--lime);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.promotion-list-content h2 {
  margin-bottom: 9px;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
}

.promotion-date {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.7rem;
}

.promotion-list-content > p {
  margin-bottom: 13px;
  color: var(--muted-strong);
  font-size: 0.86rem;
  line-height: 1.55;
}

.promotion-card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.promotion-card-actions .button {
  min-height: 40px;
  padding-inline: 16px;
  white-space: nowrap;
}

.promotion-more {
  grid-column: 1 / -1;
  padding: 15px 17px;
  border: 1px solid rgba(201, 245, 0, 0.16);
  border-radius: 14px;
  background: rgba(201, 245, 0, 0.05);
}

.promotion-more[hidden] {
  display: none;
}

.promotion-more strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-bright);
  font-size: 0.78rem;
}

.promotion-more p {
  margin-bottom: 0;
  font-size: 0.74rem;
  line-height: 1.55;
}

.promotion-countdown {
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 8px 12px;
  border: 1px solid rgba(201, 245, 0, 0.62);
  border-radius: 9px;
  background: #171b03;
  color: var(--text);
}

.countdown-label {
  font-size: 0.72rem;
  white-space: nowrap;
}

.countdown-clock {
  color: var(--lime);
  font-size: 1rem;
}

.countdown-segment {
  min-width: 38px;
  display: grid;
  justify-items: center;
  padding-left: 9px;
  border-left: 1px solid rgba(201, 245, 0, 0.38);
}

.countdown-segment strong {
  color: var(--lime);
  font-size: 1rem;
  line-height: 1;
}

.countdown-segment small {
  margin-top: 3px;
  color: #d9dacd;
  font-size: 0.54rem;
  line-height: 1;
}

.promotion-countdown.is-ended {
  border-color: rgba(255, 113, 137, 0.38);
  background: rgba(255, 113, 137, 0.08);
  color: #ff8d9f;
}

.promotion-countdown-ended {
  font-size: 0.78rem;
}

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

.info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.info-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 900;
}

.info-card h2,
.info-card h3 {
  margin-bottom: 11px;
  font-size: 1.12rem;
}

.info-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.content-prose {
  max-width: 850px;
}

.content-prose h2 {
  margin-top: 48px;
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

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

.content-prose li,
.content-prose p {
  color: var(--muted-strong);
}

.content-prose li + li {
  margin-top: 8px;
}

.notice-panel {
  margin-top: 34px;
  padding: 22px 24px;
  border: 1px solid var(--line-gold);
  border-radius: 18px;
  background: rgba(201, 245, 0, 0.07);
}

.notice-panel strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-bright);
}

.notice-panel p {
  margin-bottom: 0;
}

.inner-cta {
  padding-top: 0;
}

@media (max-width: 1100px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-media {
    min-height: 240px;
  }

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

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

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

@media (max-width: 720px) {
  .page-hero {
    padding: 48px 0;
  }

  .page-hero-grid {
    gap: 30px;
  }

  .page-hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 185px;
  }

  .inner-section {
    padding: 64px 0;
  }

  .category-link-grid,
  .info-card-grid {
    grid-template-columns: 1fr;
  }

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

  .catalog-card {
    border-radius: 13px;
  }

  .catalog-card-body {
    min-height: 54px;
    padding: 8px 9px 9px;
  }

  .catalog-card-body strong {
    font-size: 0.72rem;
  }

  .catalog-card-body small {
    display: block;
    overflow: hidden;
    font-size: 0.58rem;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

  .promotion-list-card > img {
    min-height: auto;
  }

  .promotion-list-copy {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .promotion-card-actions {
    justify-content: flex-start;
  }

  .promotion-countdown {
    width: 100%;
    gap: 6px;
    padding: 8px;
  }

  .countdown-segment {
    min-width: 0;
    flex: 1;
    padding-left: 6px;
  }

  .countdown-label {
    font-size: 0.66rem;
  }

  .countdown-clock {
    font-size: 0.9rem;
  }

  .countdown-segment strong {
    font-size: 0.88rem;
  }

  .countdown-segment small {
    font-size: 0.5rem;
  }
}

/* Home page v2 */

.home-page-v2 .desktop-nav a[aria-current="page"],
.home-page-v2 .mobile-section-nav a[aria-current="page"] {
  color: var(--text);
}

.home-page-v2 .desktop-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.home-page-v2 .hero-section {
  padding: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(94, 59, 225, 0.18), transparent 28%),
    radial-gradient(circle at 14% 56%, rgba(201, 245, 0, 0.1), transparent 30%),
    linear-gradient(180deg, #090a10, var(--ink));
}

.home-page-v2 .hero-section::before {
  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: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 94%);
}

.home-hero-shell {
  position: relative;
  width: 100%;
  margin-inline: auto;
}

.home-page-v2 .hero-visual {
  min-height: 0;
  aspect-ratio: 3840 / 676;
  border-width: 0 0 1px;
  border-color: rgba(255, 255, 255, 0.11);
  border-radius: 0;
  background: #0a0d20;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(201, 245, 0, 0.04);
}

.home-page-v2 .hero-visual::after {
  background:
    linear-gradient(180deg, rgba(7, 8, 12, 0.02), transparent 66%, rgba(7, 8, 12, 0.38)),
    linear-gradient(90deg, rgba(7, 8, 12, 0.08), transparent 20%, transparent 80%, rgba(7, 8, 12, 0.08));
}

.home-page-v2 .hero-slide {
  display: block;
  pointer-events: none;
}

.home-page-v2 .hero-slide.is-active {
  pointer-events: auto;
}

.home-page-v2 .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.home-page-v2 .hero-controls {
  right: 18px;
  bottom: 14px;
  left: 18px;
}

.home-page-v2 .hero-controls > button {
  width: 36px;
  height: 36px;
  background: rgba(5, 6, 10, 0.66);
  font-size: 1.35rem;
}

.home-hero-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: end;
  gap: 80px;
  padding-top: 58px;
  padding-bottom: 66px;
}

.home-title-block h1 {
  max-width: 790px;
  margin-bottom: 0;
  font-size: clamp(3.1rem, 5.4vw, 5.8rem);
  font-weight: 930;
  letter-spacing: -0.065em;
}

.home-title-block h1 span {
  display: block;
  color: var(--lime);
}

.home-intro-copy > p {
  max-width: 580px;
  margin-bottom: 28px;
  color: var(--muted-strong);
  font-size: 1.04rem;
}

.home-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.home-facts span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
  white-space: nowrap;
}

.home-facts strong {
  margin-right: 5px;
  color: var(--gold-bright);
  font-size: 0.88rem;
}

.home-shortcuts {
  position: relative;
  z-index: 3;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(100deg, rgba(201, 245, 0, 0.06), transparent 30%),
    var(--ink-soft);
}

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

.shortcut-grid > a {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 14px;
  align-items: center;
  gap: 11px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.shortcut-grid > a:hover {
  border-color: var(--line-gold);
  background: rgba(201, 245, 0, 0.07);
  transform: translateY(-3px);
}

.shortcut-grid > a > span:nth-child(2) {
  min-width: 0;
}

.shortcut-grid strong,
.shortcut-grid small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shortcut-grid strong {
  color: var(--text);
  font-size: 0.82rem;
}

.shortcut-grid small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.63rem;
}

.shortcut-grid i {
  color: var(--lime);
  font-size: 0.78rem;
  font-style: normal;
}

.shortcut-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(201, 245, 0, 0.16), rgba(94, 59, 225, 0.09));
  color: var(--gold-bright);
  font-size: 1.15rem;
  font-weight: 950;
  line-height: 1;
}

.shortcut-icon-wide {
  font-size: 0.72rem;
  letter-spacing: -0.03em;
}

.currency-row {
  display: flex;
  align-items: center;
  gap: 9px;
  overflow-x: auto;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  scrollbar-width: none;
}

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

.currency-row > span {
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.65rem;
  font-weight: 800;
}

.currency-row .currency-label {
  padding-left: 0;
  border: 0;
  color: var(--gold-bright);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-page-v2 .promotion-card > img {
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #0b0d13;
}

.home-page-v2 .hot-art {
  display: grid;
  aspect-ratio: 256 / 320;
  place-items: center;
}

.home-page-v2 .hot-art img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.home-page-v2 .hot-card:hover img {
  transform: none;
}

.home-page-v2 .provider-card {
  display: flex;
  flex-direction: column;
  background: #0b0d13;
}

.home-page-v2 .provider-card[hidden] {
  display: none !important;
}

.home-page-v2 .provider-card::after,
.home-page-v2 .provider-card-shine {
  display: none;
}

.home-page-v2 .provider-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 256 / 330;
  object-fit: contain;
  object-position: center;
}

.home-page-v2 .provider-card:hover img {
  transform: none;
}

.home-page-v2 .provider-card-category,
.home-page-v2 .provider-card strong {
  position: static;
  display: block;
  padding-inline: 13px;
}

.home-page-v2 .provider-card-category {
  margin-top: 11px;
}

.home-page-v2 .provider-card strong {
  padding-bottom: 13px;
}

.home-page-v2 .phone-screen > img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.home-page-v2 .phone-cards img {
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1120px) {
  .home-page-v2 .desktop-nav {
    gap: 14px;
  }

  .home-page-v2 .desktop-nav a {
    font-size: 0.73rem;
  }

  .home-hero-intro {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    gap: 46px;
  }

  .shortcut-grid {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--gold) transparent;
  }

  .shortcut-grid > a {
    scroll-snap-align: start;
  }
}

@media (max-width: 960px) {
  .home-page-v2 .hero-section {
    padding-top: 0;
  }

  .home-hero-shell {
    width: 100%;
  }

  .home-hero-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
    padding-top: 44px;
  }

  .home-title-block h1 {
    max-width: 780px;
  }

  .home-intro-copy {
    max-width: 650px;
  }
}

@media (max-width: 700px) {
  .home-page-v2 .hero-section {
    padding-top: 0;
  }

  .home-hero-shell {
    width: 100%;
  }

  .home-page-v2 .hero-visual {
    aspect-ratio: 3840 / 676;
    border-radius: 0;
  }

  .home-page-v2 .hero-controls {
    display: none;
  }

  .home-page-v2 .hero-controls > button {
    display: none;
  }

  .home-page-v2 .hero-dots {
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(5, 6, 10, 0.58);
    backdrop-filter: blur(8px);
  }

  .home-page-v2 .hero-dots button {
    width: 13px;
    height: 3px;
  }

  .home-page-v2 .hero-dots button.is-active {
    width: 24px;
  }

  .home-hero-intro {
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 48px;
  }

  .home-title-block h1 {
    font-size: clamp(2.55rem, 12vw, 3.85rem);
  }

  .home-intro-copy > p {
    font-size: 0.95rem;
  }

  .home-facts {
    gap: 8px 14px;
    margin-top: 24px;
  }

  .home-shortcuts {
    padding-block: 18px;
  }

  .shortcut-grid {
    grid-template-columns: repeat(5, 170px);
  }

  .shortcut-grid > a {
    grid-template-columns: 38px minmax(0, 1fr) 12px;
    padding: 11px;
  }

  .shortcut-icon {
    width: 38px;
    height: 38px;
  }

  .currency-row {
    margin-top: 10px;
    padding-top: 10px;
  }
}

/* About, account, news and 4D pages */

.feature-band {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 20%, rgba(94, 59, 225, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
}

.feature-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
  gap: 54px;
}

.feature-band-copy h2 {
  max-width: 760px;
}

.feature-band-copy > p {
  max-width: 720px;
  color: var(--muted-strong);
  font-size: 1.02rem;
}

.feature-checklist {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.feature-checklist span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 760;
}

.feature-checklist i {
  width: 24px;
  height: 24px;
  display: grid;
  flex: 0 0 24px;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--lime);
  font-size: 0.68rem;
  font-style: normal;
}

.access-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line-gold);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(201, 245, 0, 0.1), rgba(94, 59, 225, 0.09)),
    var(--surface);
  box-shadow: var(--shadow);
}

.access-card::before {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(201, 245, 0, 0.14);
  border-radius: 50%;
  content: "";
}

.access-card > * {
  position: relative;
}

.access-card-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid var(--line-gold);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.26);
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 950;
}

.access-card h2 {
  margin-bottom: 13px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.access-card p {
  margin-bottom: 25px;
}

.access-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.68rem;
}

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

.editorial-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.editorial-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-4px);
}

.editorial-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 640 / 207;
  object-fit: contain;
  object-position: center;
  background: #0b0d13;
}

.editorial-card-body {
  padding: 22px;
}

.editorial-card-body > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-card-body h2,
.editorial-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.editorial-card-body p {
  margin-bottom: 18px;
  font-size: 0.84rem;
}

.editorial-card-body a {
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 850;
}

.news-update-grid .editorial-card {
  display: flex;
  flex-direction: column;
}

.news-update-grid .editorial-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.news-update-grid .editorial-card-body a {
  margin-top: auto;
}

.content-news .news-update-grid + .content-prose {
  position: relative;
  max-width: none;
  margin-top: 72px;
  padding: 34px 36px 32px;
  overflow: hidden;
  border: 1px solid rgba(201, 245, 0, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 12%, rgba(94, 59, 225, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(201, 245, 0, 0.06), rgba(255, 255, 255, 0.025));
}

.content-news .news-update-grid + .content-prose::before {
  position: absolute;
  top: 0;
  left: 36px;
  width: 92px;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent);
  content: "";
}

.content-news .news-update-grid + .content-prose h2 {
  max-width: 780px;
  margin-bottom: 16px;
}

.content-news .news-update-grid + .content-prose p {
  max-width: 980px;
  margin-bottom: 0;
  line-height: 1.75;
}

.content-news .news-update-grid ~ .page-disclosure {
  margin-top: 18px;
}

.results-centre {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.results-centre-media {
  display: grid;
  min-height: 310px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: #090b18;
  place-items: center;
}

.results-centre-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.results-centre-copy {
  align-self: center;
  padding: 42px;
}

.results-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(201, 245, 0, 0.22);
  border-radius: 999px;
  color: var(--lime);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.results-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(201, 245, 0, 0.6);
  content: "";
}

.results-centre-copy h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
}

.results-centre-copy p {
  max-width: 680px;
}

.results-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.page-disclosure {
  margin-top: 34px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 245, 0, 0.06);
  color: var(--muted);
  font-size: 0.74rem;
}

@media (max-width: 960px) {
  .feature-band-grid,
  .results-centre {
    grid-template-columns: 1fr;
  }

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

  .results-centre-media {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .feature-band {
    padding: 64px 0;
  }

  .feature-band-grid {
    gap: 30px;
  }

  .access-card,
  .results-centre-copy {
    padding: 25px;
  }

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

  .content-news .news-update-grid + .content-prose {
    margin-top: 46px;
    padding: 27px 24px 25px;
    border-radius: 18px;
  }

  .content-news .news-update-grid + .content-prose::before {
    left: 24px;
    width: 72px;
  }

  .results-centre-media {
    padding: 10px;
  }
}

/* Game category navigation and section directory */

.hero-slide {
  object-fit: contain;
  transform: none;
  transition: opacity 800ms ease;
}

.hero-slide.is-active {
  transform: none;
}

.promotion-card > img,
.hot-art img,
.provider-card img {
  object-fit: contain;
  object-position: center;
  background: #0b0d13;
}

.hot-card:hover img,
.provider-card:hover img {
  transform: none;
}

.game-tabs {
  max-width: 820px;
}

.game-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px 14px;
}

.game-tab-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  flex: 0 0 28px;
  place-items: center;
  border: 1px solid rgba(201, 245, 0, 0.32);
  border-radius: 9px;
  background: rgba(201, 245, 0, 0.08);
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
}

.game-tab-icon-all {
  font-size: 1rem;
}

.game-tab-icon-slots {
  color: var(--lime);
  font-size: 1.05rem;
}

.game-tab-icon-casino {
  font-size: 1.15rem;
}

.game-tab-icon-sports {
  font-size: 0.9rem;
}

.game-tab-icon-lottery {
  font-size: 0.62rem;
  letter-spacing: -0.04em;
}

.game-tabs button.is-active .game-tab-icon {
  border-color: rgba(19, 25, 0, 0.22);
  background: rgba(19, 25, 0, 0.1);
  color: #131900;
}

.game-section-action,
.game-category-action {
  display: flex;
  justify-content: center;
}

.game-section-action {
  margin-top: 38px;
}

.game-play-button,
.game-category-action .button {
  min-width: 190px;
  justify-content: center;
  gap: 14px;
}

.game-play-button span,
.game-category-action .button span {
  font-size: 1rem;
  line-height: 1;
}

.game-directory-sections {
  background:
    radial-gradient(circle at 76% 0, rgba(94, 59, 225, 0.1), transparent 27%),
    var(--ink);
}

.game-category-stack {
  display: grid;
  gap: 26px;
}

.game-category-band {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(201, 245, 0, 0.06), transparent 36%),
    var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.game-category-band::before {
  position: absolute;
  top: -120px;
  right: -90px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(201, 245, 0, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.game-category-band-heading {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
}

.game-category-band-heading h2 {
  margin-bottom: 7px;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.game-category-band-heading p {
  max-width: 760px;
  margin-bottom: 0;
}

.game-category-large-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 19px;
  background:
    linear-gradient(145deg, rgba(201, 245, 0, 0.16), rgba(94, 59, 225, 0.12)),
    #0b0d13;
  color: var(--gold-bright);
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: inset 0 0 24px rgba(201, 245, 0, 0.05);
}

.game-category-large-icon.game-tab-icon-slots {
  color: var(--lime);
  font-size: 2rem;
}

.game-category-large-icon.game-tab-icon-casino {
  font-size: 2.2rem;
}

.game-category-large-icon.game-tab-icon-sports {
  font-size: 1.65rem;
}

.game-category-large-icon.game-tab-icon-lottery {
  font-size: 1.05rem;
}

.game-category-provider-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.game-category-band.is-lottery .game-category-provider-grid {
  grid-template-columns: minmax(190px, 260px);
}

.game-category-provider {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #0b0d13;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.game-category-provider:hover {
  border-color: var(--line-gold);
  transform: translateY(-3px);
}

.game-category-provider img {
  width: 100%;
  height: auto;
  aspect-ratio: 256 / 330;
  object-fit: contain;
  object-position: center;
}

.game-category-provider strong {
  display: block;
  overflow: hidden;
  padding: 13px 15px 15px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-category-action {
  position: relative;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .game-category-provider-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .game-category-provider {
    border-radius: 14px;
  }

  .game-category-provider strong {
    padding: 10px 9px 11px;
    font-size: 0.72rem;
  }
}

@media (max-width: 560px) {
  .game-tabs button {
    padding-inline: 13px;
  }

  .game-tab-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .game-category-band {
    padding: 16px;
  }

  .game-category-band-heading {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .game-category-large-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    font-size: 1.2rem;
  }

  .game-category-provider-grid {
    gap: 8px;
  }

  .game-category-band.is-lottery .game-category-provider-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .game-section-action {
    margin-top: 30px;
  }

  .game-play-button,
  .game-category-action .button {
    width: 100%;
  }
}

/* Unified header alignment and full-width hero banners */

.header-inner {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr) max-content;
  gap: 24px;
}

.brand {
  justify-self: start;
}

.brand img {
  width: 172px;
}

.desktop-nav {
  min-width: 0;
  justify-content: center;
  gap: clamp(9px, 1.1vw, 16px);
  margin-left: 0;
}

.desktop-nav a {
  font-size: clamp(0.69rem, 0.68vw, 0.79rem);
}

.header-more-menu {
  position: relative;
}

.header-more-menu > summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted-strong);
  cursor: pointer;
  font-size: clamp(0.69rem, 0.68vw, 0.79rem);
  font-weight: 700;
  list-style: none;
  white-space: nowrap;
}

.header-more-menu > summary::-webkit-details-marker {
  display: none;
}

.header-more-menu > summary::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--lime);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.header-more-menu > summary:hover,
.header-more-menu[open] > summary,
.header-more-menu.is-current > summary {
  color: var(--text);
}

.header-more-menu > summary:hover::after,
.header-more-menu[open] > summary::after,
.header-more-menu.is-current > summary::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-more-chevron {
  color: var(--lime);
  font-size: 0.72rem;
  transition: transform 180ms ease;
}

.header-more-menu[open] .header-more-chevron {
  transform: rotate(180deg);
}

.header-more-panel {
  position: absolute;
  z-index: 70;
  top: calc(100% + 22px);
  right: -16px;
  width: 220px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(201, 245, 0, 0.24);
  border-radius: 16px;
  background: rgba(14, 17, 24, 0.98);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
}

.header-more-panel a {
  display: block;
  padding: 9px 11px;
  border-radius: 10px;
  color: var(--muted-strong);
  font-size: 0.75rem;
}

.desktop-nav .header-more-panel a::after {
  content: none;
}

.header-more-panel a:hover,
.header-more-panel a[aria-current="page"] {
  background: rgba(201, 245, 0, 0.09);
  color: var(--lime);
}

.header-actions {
  min-width: max-content;
  justify-self: end;
}

body:not(.home-page-v2) .hero-section {
  padding: 0 0 74px;
}

body:not(.home-page-v2) .hero-grid {
  grid-template-columns: 1fr;
  gap: 48px;
}

body:not(.home-page-v2) .hero-visual {
  width: 100vw;
  min-height: 0;
  aspect-ratio: 3840 / 676;
  order: -1;
  margin-left: calc(50% - 50vw);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: #08090d;
}

body:not(.home-page-v2) .hero-copy {
  max-width: 880px;
}

.page-hero {
  min-height: clamp(320px, 17.604vw, 676px);
  display: grid;
  align-items: stretch;
  isolation: isolate;
  padding: 0;
  background: #08090d;
}

.page-hero::before {
  display: none;
}

.page-hero-grid {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: inherit;
  display: grid;
  align-items: center;
  margin: 0;
}

.page-hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: #08090d;
  box-shadow: none;
}

.page-hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.94), rgba(5, 6, 9, 0.68) 38%, rgba(5, 6, 9, 0.12) 72%),
    linear-gradient(180deg, rgba(5, 6, 9, 0.08), rgba(5, 6, 9, 0.38));
  content: "";
  pointer-events: none;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 120px));
  max-width: none;
  padding-block: clamp(52px, 5vw, 96px);
  margin-inline: auto;
}

.page-hero h1 {
  max-width: 720px;
  margin-bottom: 13px;
  font-size: clamp(2rem, 3.55vw, 4.15rem);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.72);
}

.page-hero-copy > p {
  max-width: 620px;
  color: #d8d8dc;
  font-size: clamp(0.82rem, 1.05vw, 1rem);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.82);
}

.page-hero .breadcrumbs {
  margin-bottom: 12px;
  color: #bfc0c6;
}

.page-hero .eyebrow {
  margin-bottom: 8px;
}

@media (max-width: 1240px) {
  .header-inner {
    grid-template-columns: 158px minmax(0, 1fr) max-content;
    gap: 17px;
  }

  .brand img {
    width: 158px;
  }

  .desktop-nav {
    gap: 13px;
  }

  .desktop-nav a {
    font-size: 0.72rem;
  }

  .header-login {
    display: none;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    display: flex;
    gap: 18px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .mobile-section-nav {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 0 max(18px, calc((100vw - 1014px) / 2)) 11px;
    scrollbar-width: none;
  }

  .mobile-section-nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 1100px) {
  .page-hero {
    min-height: 420px;
  }

  .page-hero-grid {
    display: grid;
  }

  .page-hero-copy {
    position: relative;
    width: calc(100% - 96px);
    padding-block: 54px;
  }

  .page-hero-media::after {
    background:
      linear-gradient(90deg, rgba(5, 6, 9, 0.94), rgba(5, 6, 9, 0.7) 58%, rgba(5, 6, 9, 0.28)),
      linear-gradient(180deg, rgba(5, 6, 9, 0.08), rgba(5, 6, 9, 0.52));
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 7vw, 4rem);
  }

  .page-hero-copy > p {
    color: #d8d8dc;
  }
}

@media (max-width: 720px) {
  .brand img {
    width: 144px;
  }

  body:not(.home-page-v2) .hero-section {
    padding-bottom: 56px;
  }

  body:not(.home-page-v2) .hero-grid {
    gap: 34px;
  }

  body:not(.home-page-v2) .hero-visual {
    min-height: 0;
  }

  .page-hero {
    min-height: 450px;
    padding: 0;
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 100%;
  }

  .page-hero-media img {
    object-fit: cover;
    object-position: 62% center;
  }

  .page-hero-copy {
    width: calc(100% - 64px);
    padding-block: 46px;
  }
}

/* Contact centre */

.contact-page {
  background:
    radial-gradient(circle at 88% 20%, rgba(53, 226, 208, 0.08), transparent 28%),
    var(--ink);
}

.contact-page-hero .page-hero-media::after {
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.96), rgba(5, 6, 9, 0.74) 44%, rgba(5, 6, 9, 0.16) 78%),
    linear-gradient(180deg, rgba(5, 6, 9, 0.08), rgba(5, 6, 9, 0.52));
}

.contact-intro {
  padding: clamp(62px, 7vw, 96px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(135deg, rgba(53, 226, 208, 0.045), transparent 45%);
}

.contact-intro-grid,
.contact-prepare-layout,
.contact-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.contact-intro-grid > div > p,
.contact-section-heading > p,
.contact-prepare-copy > p,
.contact-cta-panel p {
  max-width: 720px;
  margin-bottom: 0;
  line-height: 1.82;
}

.contact-verified-note {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(53, 226, 208, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(53, 226, 208, 0.11), rgba(94, 59, 225, 0.06)),
    #11151c;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.25);
}

.contact-verified-note > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--teal);
  color: #061310;
  font-size: 1.3rem;
  font-weight: 950;
}

.contact-verified-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.03rem;
}

.contact-verified-note p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
}

.contact-route-section {
  padding-block: clamp(74px, 8vw, 118px);
}

.contact-section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

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

.contact-route-card {
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(53, 226, 208, 0.055), transparent 42%),
    #11141b;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.contact-route-card::after {
  position: absolute;
  top: -58px;
  right: -54px;
  width: 154px;
  height: 154px;
  border: 1px solid rgba(53, 226, 208, 0.12);
  border-radius: 50%;
  content: "";
}

.contact-route-number {
  display: block;
  margin-bottom: 46px;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.contact-route-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 22px 0 24px;
  border: 1px solid rgba(53, 226, 208, 0.25);
  border-radius: 16px;
  background: rgba(53, 226, 208, 0.08);
  color: var(--teal);
  font-size: 1.25rem;
  font-weight: 900;
}

.contact-route-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.contact-route-card p {
  max-width: 520px;
  margin: 0 0 24px;
  line-height: 1.72;
}

.contact-route-card > strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--lime);
  font-size: 0.82rem;
}

@media (hover: hover) and (pointer: fine) {
  .contact-route-card:hover {
    border-color: rgba(53, 226, 208, 0.48);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34), 0 0 30px rgba(53, 226, 208, 0.07);
    transform: translateY(-6px);
  }
}

.contact-prepare-section {
  padding-block: clamp(76px, 8vw, 120px);
  border-block: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 20% 40%, rgba(94, 59, 225, 0.1), transparent 32%),
    #0b0d12;
}

.contact-safe-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-safe-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.contact-safe-list li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(53, 226, 208, 0.11);
  color: var(--teal);
  font-weight: 950;
}

.contact-safe-list li:last-child > span {
  background: rgba(201, 245, 0, 0.1);
  color: var(--lime);
}

.contact-safe-list strong,
.contact-report-card strong {
  display: block;
  color: var(--text);
}

.contact-safe-list p {
  margin: 3px 0 0;
  font-size: 0.84rem;
  line-height: 1.65;
}

.contact-report-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(53, 226, 208, 0.25);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(53, 226, 208, 0.1), transparent 38%),
    #12161d;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.contact-report-label {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.contact-report-card ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-report-card li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-report-card li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(53, 226, 208, 0.27);
  border-radius: 50%;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
}

.contact-report-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.contact-report-card strong {
  margin-bottom: 3px;
  font-size: 0.9rem;
}

.contact-final-cta {
  padding-block: clamp(70px, 8vw, 110px);
}

.contact-cta-panel {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(53, 226, 208, 0.25);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 20%, rgba(53, 226, 208, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(94, 59, 225, 0.12), transparent 44%),
    #12151c;
}

.contact-cta-panel .cta-actions {
  justify-content: flex-end;
  margin: 0;
}

@media (max-width: 900px) {
  .contact-intro-grid,
  .contact-prepare-layout,
  .contact-cta-panel {
    grid-template-columns: 1fr;
  }

  .contact-cta-panel .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .contact-route-grid {
    grid-template-columns: 1fr;
  }

  .contact-route-card {
    min-height: 260px;
    padding: 24px;
  }

  .contact-verified-note {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 22px;
  }

  .contact-verified-note > span {
    width: 46px;
    height: 46px;
  }

  .contact-cta-panel .cta-actions,
  .contact-cta-panel .button {
    width: 100%;
  }
}

/* Responsive type scale */

h1,
h2,
h3 {
  line-height: 1.16;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h2 {
  margin-bottom: 15px;
  font-size: clamp(1.75rem, 2.65vw, 2.8rem);
}

h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.hero-copy h1 {
  max-width: 680px;
  margin-bottom: 21px;
  font-size: clamp(2.5rem, 4.35vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.home-title-block h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 4.15vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2,
.feature-band-copy h2,
.cta-panel h2 {
  font-size: clamp(1.85rem, 2.9vw, 3rem);
}

.inner-heading h2 {
  font-size: clamp(1.7rem, 2.55vw, 2.55rem);
}

.content-prose h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.access-card h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.results-centre-copy h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
}

.game-category-band-heading h2 {
  font-size: clamp(1.35rem, 2vw, 1.95rem);
}

.promotion-list-copy h2 {
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
}

.info-card h2,
.info-card h3,
.editorial-card-body h2,
.editorial-card-body h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.25;
}

@media (max-width: 960px) {
  h2 {
    font-size: clamp(1.7rem, 5vw, 2.4rem);
  }

  .hero-copy h1 {
    max-width: 700px;
    font-size: clamp(2.4rem, 7vw, 3.8rem);
  }

  .home-title-block h1 {
    max-width: 700px;
    font-size: clamp(2.3rem, 6.5vw, 3.5rem);
  }

  .page-hero h1 {
    font-size: clamp(1.95rem, 5.2vw, 3rem);
  }
}

@media (max-width: 700px) {
  h2 {
    font-size: clamp(1.6rem, 7.2vw, 2.15rem);
  }

  h3 {
    font-size: 1.05rem;
  }

  .hero-copy h1 {
    margin-bottom: 16px;
    font-size: clamp(2.05rem, 9.5vw, 2.9rem);
    line-height: 1.06;
  }

  .home-title-block h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.08;
  }

  .page-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
    line-height: 1.1;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .feature-band-copy h2,
  .cta-panel h2,
  .inner-heading h2 {
    font-size: clamp(1.6rem, 7.2vw, 2.15rem);
  }

  .content-prose h2,
  .results-centre-copy h2 {
    font-size: clamp(1.45rem, 6.3vw, 1.95rem);
  }

  .access-card h2,
  .game-category-band-heading h2,
  .promotion-list-copy h2 {
    font-size: clamp(1.3rem, 5.7vw, 1.7rem);
  }
}

@media (max-width: 380px) {
  .hero-copy h1,
  .home-title-block h1 {
    font-size: 2rem;
  }

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

/* Long-form SEO editorial sections */

.seo-landing-section {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8vw, 118px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 12% 8%, rgba(201, 245, 0, 0.09), transparent 28rem),
    radial-gradient(circle at 88% 76%, rgba(94, 59, 225, 0.14), transparent 30rem),
    #090b11;
}

.seo-landing-section::before {
  position: absolute;
  top: 0;
  right: 8%;
  width: min(38vw, 520px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  content: "";
}

.seo-landing-header {
  max-width: 850px;
  margin-bottom: 38px;
}

.seo-landing-header h2 {
  max-width: 760px;
  margin: 13px 0 15px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.seo-landing-header > p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.45vw, 1.1rem);
  line-height: 1.78;
}

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

.seo-landing-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.seo-landing-card::after {
  position: absolute;
  right: -44px;
  bottom: -56px;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(201, 245, 0, 0.11);
  border-radius: 50%;
  content: "";
}

.seo-landing-card > span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.seo-landing-card h3 {
  margin: 0 0 11px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.seo-landing-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

@media (hover: hover) and (pointer: fine) {
  .seo-landing-card:hover {
    border-color: rgba(201, 245, 0, 0.46);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34), 0 0 24px rgba(201, 245, 0, 0.07);
    transform: translateY(-6px);
  }
}

.seo-landing-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 46px;
  margin-top: 52px;
  padding-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.seo-landing-prose h3 {
  margin: 0 0 17px;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.18;
}

.seo-landing-prose p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  line-height: 1.84;
}

.seo-landing-prose p + p {
  margin-top: 14px;
}

.seo-landing-checklist {
  padding: 26px;
  border: 1px solid rgba(201, 245, 0, 0.22);
  border-radius: 18px;
  background: rgba(201, 245, 0, 0.045);
}

.seo-landing-checklist > strong {
  display: block;
  margin-bottom: 15px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.seo-landing-checklist ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-landing-checklist li {
  position: relative;
  padding-left: 20px;
  color: #d4d1db;
  font-size: 0.86rem;
  line-height: 1.55;
}

.seo-landing-checklist li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--lime);
  content: "";
  transform: rotate(45deg);
}

.seo-landing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 36px;
}

.seo-landing-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #cac7d0;
  font-size: 0.78rem;
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.seo-landing-links a:hover {
  border-color: rgba(201, 245, 0, 0.42);
  color: var(--lime);
  transform: translateY(-2px);
}

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

  .seo-landing-card:last-child {
    grid-column: 1 / -1;
  }

  .seo-landing-detail {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .seo-landing-section {
    padding: 70px 0;
  }

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

  .seo-landing-card,
  .seo-landing-card:last-child {
    min-height: 0;
    grid-column: auto;
    padding: 23px;
  }

  .seo-landing-card > span {
    margin-bottom: 22px;
  }

  .seo-landing-detail {
    margin-top: 38px;
    padding-top: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seo-landing-card,
  .seo-landing-links a {
    transition: none;
  }

  .seo-landing-card:hover,
  .seo-landing-links a:hover {
    transform: none;
  }
}

/* HOB footer identity */

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 0;
  background:
    radial-gradient(circle at 8% 0, rgba(201, 245, 0, 0.11), transparent 25rem),
    radial-gradient(circle at 88% 24%, rgba(94, 59, 225, 0.18), transparent 27rem),
    linear-gradient(180deg, #050609, #020304);
}

.site-footer::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lime) 18%, var(--gold-bright) 52%, #7959ff 82%, transparent);
  box-shadow: 0 0 20px rgba(201, 245, 0, 0.32);
  content: "";
}

.site-footer::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.footer-grid {
  position: relative;
  z-index: 1;
}

.footer-brand img {
  filter: drop-shadow(0 8px 22px rgba(201, 245, 0, 0.2));
}

.footer-grid h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom-color: rgba(201, 245, 0, 0.26);
}

.footer-grid h2::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border: 1px solid var(--lime);
  background: rgba(201, 245, 0, 0.18);
  content: "";
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(201, 245, 0, 0.32);
}

.footer-information > a {
  position: relative;
  padding-left: 13px;
}

.footer-information > a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(201, 245, 0, 0.5);
  content: "";
  transform: translateY(-50%);
}

.footer-hob-rail {
  position: relative;
  z-index: 2;
  min-height: 98px;
  align-items: center;
  gap: 20px;
  margin-top: 54px;
  margin-bottom: 34px;
  padding: 18px 20px;
  overflow: visible;
  border: 1px solid rgba(201, 245, 0, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(100deg, rgba(201, 245, 0, 0.08), rgba(94, 59, 225, 0.08) 56%, rgba(255, 255, 255, 0.025)),
    rgba(10, 12, 17, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 20px 45px rgba(0, 0, 0, 0.28);
}

.footer-hob-rail::before {
  position: absolute;
  top: -1px;
  left: 28px;
  width: 132px;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent);
  content: "";
}

.footer-hob-rail h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--lime);
  white-space: nowrap;
}

.footer-hob-rail h2::before {
  content: "◆";
  color: var(--gold-bright);
  font-size: 0.65rem;
}

.footer-hob-rail nav {
  gap: 8px;
}

.footer-hob-rail a {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #bcb8c3;
  font-weight: 760;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.footer-hob-rail a:hover {
  border-color: rgba(201, 245, 0, 0.42);
  background: rgba(201, 245, 0, 0.09);
  color: var(--lime);
  transform: translateY(-2px);
}

.footer-mascot {
  position: fixed;
  z-index: 65;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  width: clamp(118px, 9vw, 162px);
  margin: 0;
  pointer-events: none;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.52));
}

.footer-mascot::before {
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: 5%;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 245, 0, 0.2), rgba(94, 59, 225, 0.08) 48%, transparent 70%);
  content: "";
  filter: blur(8px);
}

.footer-mascot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: hob-mascot-bob 4.6s ease-in-out infinite;
}

.footer-bottom-band {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(201, 245, 0, 0.22);
  background:
    linear-gradient(90deg, rgba(94, 59, 225, 0.14), transparent 34%, rgba(201, 245, 0, 0.08)),
    #080a0f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.footer-bottom p {
  color: #b9b5c1;
}

.footer-bottom p:last-child {
  color: var(--lime);
}

@keyframes hob-mascot-bob {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-7px) rotate(1deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-mascot img {
    animation: none;
  }
}

@media (max-width: 700px) {
  .site-footer {
    padding-top: 58px;
  }

  .footer-hob-rail {
    min-height: 0;
    align-items: flex-start;
    gap: 16px;
    margin-top: 40px;
    margin-bottom: 32px;
    padding: 18px;
  }

  .footer-hob-rail h2 {
    white-space: normal;
  }

  .footer-hob-rail nav {
    gap: 7px;
  }

  .footer-hob-rail a {
    padding: 7px 10px;
  }

  .footer-mascot {
    right: max(10px, env(safe-area-inset-right));
    bottom: calc(86px + env(safe-area-inset-bottom));
    width: 106px;
  }

  .mobile-bottom-nav {
    min-height: 66px;
    padding: 6px 5px;
    border-color: rgba(201, 245, 0, 0.26);
    border-radius: 18px 18px 9px 9px;
    background:
      linear-gradient(110deg, rgba(94, 59, 225, 0.16), transparent 45%, rgba(201, 245, 0, 0.09)),
      rgba(6, 8, 12, 0.94);
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.58),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .mobile-bottom-nav::before {
    position: absolute;
    top: -1px;
    right: 18px;
    left: 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lime), transparent);
    content: "";
  }

  .mobile-bottom-nav > a {
    gap: 4px;
    color: #9f9aa7;
    font-weight: 780;
  }

  .mobile-bottom-nav > a > span {
    color: var(--gold-bright);
  }

  .mobile-bottom-nav > a:hover,
  .mobile-bottom-nav > a:focus-visible {
    color: var(--lime);
  }

  .mobile-bottom-nav .mobile-play > span {
    width: 60px;
    height: 60px;
    margin-top: -27px;
    border: 0;
    border-radius: 0;
    clip-path: polygon(50% 0, 90% 18%, 100% 66%, 50% 100%, 0 66%, 10% 18%);
    background:
      linear-gradient(145deg, rgba(201, 245, 0, 0.95), #739500 62%, #1a2500);
    box-shadow:
      0 10px 26px rgba(201, 245, 0, 0.22),
      inset 0 0 0 4px rgba(6, 8, 12, 0.58);
    color: #071000;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.24);
  }
}

/* Why HOB card hover feedback */

.section-why .why-card,
.section-why .why-card > i,
.section-why .why-card-number,
.section-why .why-card h3 {
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .section-why .why-card:hover {
    border-color: rgba(201, 245, 0, 0.58);
    box-shadow:
      0 20px 44px rgba(0, 0, 0, 0.4),
      inset 0 0 34px rgba(201, 245, 0, 0.045),
      0 0 26px rgba(201, 245, 0, 0.09);
    transform: translateY(-8px) scale(1.012);
  }

  .section-why .why-card:hover > i {
    border-color: rgba(201, 245, 0, 0.7);
    box-shadow: 0 0 22px rgba(201, 245, 0, 0.2);
    color: var(--lime);
    transform: rotate(-6deg) scale(1.08);
  }

  .section-why .why-card:hover .why-card-number,
  .section-why .why-card:hover h3 {
    color: var(--lime);
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 701px) {
  .section-why .why-card:nth-child(2):hover,
  .section-why .why-card:nth-child(4):hover {
    transform: translateY(36px) scale(1.012);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-why .why-card,
  .section-why .why-card > i,
  .section-why .why-card-number,
  .section-why .why-card h3 {
    transition: none;
  }

  .section-why .why-card:hover,
  .section-why .why-card:nth-child(2):hover,
  .section-why .why-card:nth-child(4):hover,
  .section-why .why-card:hover > i {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 701px) {
  .section-why .why-card:nth-child(2):hover,
  .section-why .why-card:nth-child(4):hover {
    transform: translateY(44px);
  }
}

/* Beginner tutorial and supplied mobile login preview */

.phone-login-visual {
  position: relative;
  z-index: 2;
  width: min(338px, 88%);
  margin: 0;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.52));
  transform: rotate(2deg);
}

.phone-login-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.tutorial-overview {
  padding: 56px 0 36px;
}

.tutorial-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}

.tutorial-jump-nav a {
  padding: 9px 14px;
  border: 1px solid rgba(201, 245, 0, 0.2);
  border-radius: 999px;
  background: rgba(201, 245, 0, 0.045);
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 800;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.tutorial-jump-nav a:hover {
  border-color: rgba(201, 245, 0, 0.55);
  background: rgba(201, 245, 0, 0.1);
  color: var(--lime);
  transform: translateY(-2px);
}

.tutorial-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: start;
  gap: 34px;
}

.tutorial-intro-grid h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.tutorial-intro-grid > div > p {
  max-width: 780px;
  font-size: 1.02rem;
}

.tutorial-safety-note {
  padding: 22px;
  border: 1px solid rgba(201, 245, 0, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(201, 245, 0, 0.1), transparent 72%),
    var(--surface);
}

.tutorial-safety-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--lime);
}

.tutorial-safety-note p {
  margin: 0;
  font-size: 0.84rem;
}

.tutorial-steps-section {
  padding: 70px 0 84px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 18%, rgba(201, 245, 0, 0.08), transparent 28rem),
    var(--ink-soft);
}

.tutorial-step-list {
  display: grid;
  gap: 18px;
}

.tutorial-step {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.tutorial-step.has-visual {
  grid-template-columns: 86px minmax(0, 1fr) minmax(230px, 0.48fr);
  align-items: center;
}

.tutorial-step:hover {
  border-color: rgba(201, 245, 0, 0.4);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.tutorial-step-number {
  color: var(--lime);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.tutorial-step h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.tutorial-step-copy > p {
  max-width: 760px;
  margin-bottom: 15px;
}

.tutorial-checklist {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tutorial-checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--muted-strong);
  font-size: 0.84rem;
}

.tutorial-checklist li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--lime);
  content: "✓";
  font-weight: 900;
}

.tutorial-login-visual {
  max-width: 248px;
  justify-self: center;
  margin: 0;
}

.tutorial-login-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.45));
}

.tutorial-promotions {
  background: var(--ink);
}

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

.tutorial-promo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.tutorial-promo-card:hover {
  border-color: rgba(201, 245, 0, 0.46);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
  transform: translateY(-5px);
}

.tutorial-promo-card img {
  width: 100%;
  aspect-ratio: 640 / 207;
  object-fit: contain;
  background: #0b0d13;
}

.tutorial-promo-card div {
  padding: 20px;
}

.tutorial-promo-card h3 {
  margin-bottom: 8px;
}

.tutorial-promo-card p {
  margin: 0;
  font-size: 0.82rem;
}

.tutorial-terms-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid var(--lime);
  background: rgba(201, 245, 0, 0.055);
  color: var(--muted-strong);
  font-size: 0.8rem;
}

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

.tutorial-tip {
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.tutorial-tip > span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(201, 245, 0, 0.1);
  color: var(--lime);
  font-weight: 900;
}

.tutorial-tip h3 {
  margin-bottom: 10px;
}

.tutorial-tip p {
  margin: 0;
  font-size: 0.8rem;
}

.tutorial-quote {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(201, 245, 0, 0.22);
  border-radius: 18px;
  background: rgba(201, 245, 0, 0.045);
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
}

.tutorial-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  align-items: start;
  gap: 58px;
}

.tutorial-faq-layout .faq-intro {
  top: 112px;
}

.tutorial-legal-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.75rem;
}

@media (max-width: 1100px) {
  .tutorial-tips-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .tutorial-intro-grid,
  .tutorial-faq-layout {
    grid-template-columns: 1fr;
  }

  .tutorial-step.has-visual {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .tutorial-login-visual {
    grid-column: 2;
    max-width: 220px;
    justify-self: start;
  }

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

  .tutorial-faq-layout .faq-intro {
    position: static;
  }
}

@media (max-width: 700px) {
  .phone-login-visual {
    width: min(304px, 92%);
    transform: none;
  }

  .tutorial-overview {
    padding-top: 40px;
  }

  .tutorial-step,
  .tutorial-step.has-visual {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .tutorial-step-number {
    font-size: 2.3rem;
  }

  .tutorial-login-visual {
    grid-column: 1;
    max-width: 190px;
  }

  .tutorial-promo-grid,
  .tutorial-tips-grid {
    grid-template-columns: 1fr;
  }

  .tutorial-tip {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tutorial-jump-nav a,
  .tutorial-step,
  .tutorial-promo-card {
    transition: none;
  }

  .tutorial-jump-nav a:hover,
  .tutorial-step:hover,
  .tutorial-promo-card:hover {
    transform: none;
  }
}

/* Top-up and withdrawal guide */

.payment-guide-page {
  --payment-cyan: #35e2d0;
  --payment-cyan-soft: rgba(53, 226, 208, 0.12);
  --payment-cyan-line: rgba(53, 226, 208, 0.32);
}

.payment-guide-hero .page-hero-media img {
  filter: saturate(0.82) hue-rotate(146deg) brightness(0.76);
}

.payment-guide-hero .page-hero-media::after {
  background:
    linear-gradient(90deg, rgba(4, 7, 10, 0.97), rgba(4, 9, 12, 0.74) 45%, rgba(4, 10, 13, 0.28)),
    linear-gradient(180deg, rgba(2, 8, 10, 0.1), rgba(2, 8, 10, 0.56));
}

.payment-guide-hero h1 span {
  color: var(--payment-cyan);
}

.payment-guide-intro {
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 20%, rgba(53, 226, 208, 0.08), transparent 28rem),
    var(--ink);
}

.payment-guide-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.62fr);
  align-items: center;
  gap: 42px;
}

.payment-guide-intro h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3.2vw, 3.05rem);
}

.payment-guide-intro p {
  max-width: 780px;
  margin-bottom: 0;
}

.payment-guide-priority {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--payment-cyan-line);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--payment-cyan-soft), rgba(255, 255, 255, 0.02));
}

.payment-guide-priority > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--payment-cyan);
  color: #031311;
  font-weight: 950;
}

.payment-guide-priority strong {
  display: block;
  margin-bottom: 5px;
}

.payment-guide-priority p {
  font-size: 0.82rem;
}

.payment-guide-section {
  padding: 34px 0 94px;
  background:
    radial-gradient(circle at 14% 38%, rgba(53, 226, 208, 0.07), transparent 30rem),
    radial-gradient(circle at 86% 78%, rgba(94, 59, 225, 0.1), transparent 34rem),
    var(--ink-soft);
}

.payment-guide-tabs {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(640px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 6px;
  margin: 0 auto 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(27, 31, 40, 0.9);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.payment-guide-tabs button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
  transition:
    background-color 190ms ease,
    color 190ms ease,
    box-shadow 190ms ease,
    transform 190ms ease;
}

.payment-guide-tabs button span {
  color: var(--payment-cyan);
  font-size: 1rem;
}

.payment-guide-tabs button:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.payment-guide-tabs button.is-active {
  background: var(--payment-cyan);
  box-shadow: 0 10px 24px rgba(53, 226, 208, 0.2);
  color: #041614;
}

.payment-guide-tabs button.is-active span {
  color: currentColor;
}

.payment-guide-stage {
  display: grid;
  grid-template-columns: minmax(290px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(40px, 7vw, 96px);
}

.payment-phone-wrap {
  position: sticky;
  top: 104px;
  display: grid;
  justify-items: center;
}

.payment-phone-wrap > p {
  max-width: 280px;
  margin: 18px auto 0;
  color: #777d86;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.payment-phone {
  position: relative;
  width: min(326px, 100%);
  padding: 11px;
  border: 1px solid #5a626a;
  border-radius: 46px;
  background: linear-gradient(145deg, #30343a, #08090c 48%, #40464d);
  box-shadow:
    0 38px 74px rgba(0, 0, 0, 0.58),
    inset 0 0 0 2px rgba(255, 255, 255, 0.16);
}

.payment-phone-speaker {
  position: absolute;
  z-index: 4;
  top: 20px;
  left: 50%;
  width: 82px;
  height: 22px;
  border-radius: 999px;
  background: #020305;
  transform: translateX(-50%);
}

.payment-phone-screen {
  min-height: 642px;
  overflow: hidden;
  padding: 14px 15px 20px;
  border-radius: 37px;
  background:
    radial-gradient(circle at 90% 10%, rgba(53, 226, 208, 0.13), transparent 14rem),
    linear-gradient(180deg, #11151b, #090b10);
}

.payment-phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px 12px;
  color: #e7e9ec;
  font-size: 0.6rem;
  font-weight: 800;
}

.payment-phone-brand {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-phone-brand img {
  width: 118px;
  height: auto;
  object-fit: contain;
}

.payment-phone-brand > span {
  color: var(--payment-cyan);
  letter-spacing: 0.08em;
}

.payment-phone-preview {
  animation: payment-preview-enter 260ms ease both;
}

.payment-phone-preview[hidden] {
  display: none;
}

.payment-phone-balance {
  display: grid;
  gap: 3px;
  padding: 18px;
  margin: 15px 0;
  border: 1px solid rgba(53, 226, 208, 0.22);
  border-radius: 17px;
  background:
    radial-gradient(circle at 90% 18%, rgba(53, 226, 208, 0.23), transparent 9rem),
    #171c23;
}

.payment-phone-balance span,
.payment-phone-balance small {
  color: #8f959e;
  font-size: 0.58rem;
}

.payment-phone-balance strong {
  color: #f5f7f8;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.payment-phone-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 12px;
}

.payment-phone-title > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  background: var(--payment-cyan-soft);
  color: var(--payment-cyan);
  font-size: 0.63rem;
  font-weight: 950;
}

.payment-phone-title div {
  display: grid;
  line-height: 1.2;
}

.payment-phone-title small {
  color: var(--payment-cyan);
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-phone-title strong {
  font-size: 0.82rem;
}

.payment-method-choice {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #151920;
}

.payment-method-choice.is-selected {
  border-color: var(--payment-cyan-line);
  background: rgba(53, 226, 208, 0.07);
}

.payment-method-choice img,
.payment-demo-grab {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 9px;
  background: #fff;
}

.payment-demo-grab {
  display: grid;
  place-items: center;
  background: #00b14f;
  color: #fff;
  font-size: 1rem;
  font-weight: 950;
}

.payment-method-choice > span:nth-child(2) {
  display: grid;
  line-height: 1.3;
}

.payment-method-choice strong {
  font-size: 0.67rem;
}

.payment-method-choice small {
  color: #7f858e;
  font-size: 0.52rem;
}

.payment-method-choice i {
  color: var(--payment-cyan);
  font-style: normal;
  font-weight: 900;
}

.payment-demo-amount,
.payment-demo-pin,
.payment-demo-account {
  display: grid;
  gap: 4px;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #0f1218;
}

.payment-demo-amount small,
.payment-demo-pin small,
.payment-demo-account span {
  color: #767c85;
  font-size: 0.54rem;
}

.payment-demo-amount strong,
.payment-demo-pin strong,
.payment-demo-account strong {
  color: #f4f5f6;
  font-size: 0.8rem;
}

.payment-demo-pin strong {
  color: var(--payment-cyan);
  letter-spacing: 0.18em;
}

.payment-demo-account {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.payment-demo-button {
  display: grid;
  min-height: 41px;
  place-items: center;
  margin-top: 12px;
  border-radius: 11px;
  background: var(--payment-cyan);
  color: #041614;
  font-size: 0.65rem;
  font-weight: 900;
}

.payment-demo-banks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.payment-demo-banks span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: #fff;
}

.payment-demo-banks img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payment-demo-upload {
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 11px;
  margin-top: 10px;
  border: 1px dashed rgba(53, 226, 208, 0.38);
  border-radius: 12px;
  background: rgba(53, 226, 208, 0.04);
}

.payment-demo-upload > span {
  color: var(--payment-cyan);
  font-size: 1.1rem;
}

.payment-demo-upload strong {
  font-size: 0.62rem;
}

.payment-demo-upload small {
  color: #777d85;
  font-size: 0.5rem;
}

.payment-guide-panel[hidden] {
  display: none;
}

.payment-guide-panel {
  animation: payment-panel-enter 300ms ease both;
}

.payment-guide-panel > header {
  max-width: 760px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.payment-panel-kicker {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--payment-cyan);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.payment-guide-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}

.payment-guide-panel > header p {
  max-width: 720px;
  margin: 0;
}

.payment-step-list {
  position: relative;
  display: grid;
  gap: 0;
  padding: 18px 0 0;
  margin: 0;
  list-style: none;
}

.payment-step-list::before {
  position: absolute;
  top: 56px;
  bottom: 52px;
  left: 23px;
  width: 1px;
  background: linear-gradient(var(--payment-cyan), rgba(53, 226, 208, 0.1));
  content: "";
}

.payment-step-list li {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0;
}

.payment-step-list li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 1px solid var(--payment-cyan-line);
  border-radius: 50%;
  background: var(--ink-soft);
  color: var(--payment-cyan);
  font-size: 0.68rem;
  font-weight: 950;
  box-shadow: 0 0 0 7px var(--ink-soft);
}

.payment-step-list li div {
  padding-top: 2px;
}

.payment-step-list h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.payment-step-list p {
  max-width: 760px;
  margin: 0;
  font-size: 0.86rem;
}

.payment-step-list p strong {
  color: var(--text);
}

.payment-panel-note {
  padding: 18px 20px;
  margin-top: 20px;
  border: 1px solid var(--payment-cyan-line);
  border-radius: 14px;
  background: var(--payment-cyan-soft);
  color: var(--muted-strong);
  font-size: 0.82rem;
}

.payment-panel-note strong {
  color: var(--payment-cyan);
}

.withdraw-reminders {
  padding: 24px;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.withdraw-reminders h3 {
  margin-bottom: 15px;
}

.withdraw-reminders ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.withdraw-reminders li {
  position: relative;
  padding-left: 23px;
  color: var(--muted-strong);
  font-size: 0.82rem;
}

.withdraw-reminders li::before {
  position: absolute;
  left: 0;
  color: var(--payment-cyan);
  content: "✓";
  font-weight: 950;
}

.payment-safety-section {
  border-top: 1px solid var(--line);
  background: var(--ink);
}

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

.payment-safety-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.payment-safety-grid article:hover {
  border-color: var(--payment-cyan-line);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
  transform: translateY(-5px);
}

.payment-safety-grid article > span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--payment-cyan);
  font-size: 0.74rem;
  font-weight: 950;
}

.payment-safety-grid h3 {
  margin-bottom: 10px;
}

.payment-safety-grid p {
  margin: 0;
  font-size: 0.81rem;
}

.payment-methods-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 50%, rgba(53, 226, 208, 0.08), transparent 28rem),
    var(--ink-soft);
}

.payment-methods-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  align-items: center;
  gap: 52px;
}

.payment-methods-layout h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.payment-methods-layout p {
  margin-bottom: 0;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.payment-methods-grid span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: #fff;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.payment-methods-grid span:hover {
  border-color: var(--payment-cyan);
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

.payment-methods-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payment-guide-faq {
  background: var(--ink);
}

.payment-guide-faq .faq-list details[open] {
  border-color: var(--payment-cyan-line);
}

.payment-guide-faq .faq-list details[open] summary strong,
.payment-guide-faq .faq-list details[open] summary i {
  color: var(--payment-cyan);
}

@keyframes payment-panel-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes payment-preview-enter {
  from {
    opacity: 0;
    transform: translateX(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1040px) {
  .payment-guide-stage {
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
    gap: 44px;
  }

  .payment-phone {
    width: min(292px, 100%);
  }

  .payment-phone-screen {
    min-height: 590px;
  }

  .payment-safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-methods-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .payment-guide-intro-grid,
  .payment-guide-stage {
    grid-template-columns: 1fr;
  }

  .payment-guide-priority {
    max-width: 580px;
  }

  .payment-guide-tabs {
    margin-bottom: 38px;
  }

  .payment-guide-tabs button {
    min-height: 46px;
    padding-inline: 10px;
    font-size: 0.7rem;
  }

  .payment-phone-wrap {
    position: relative;
    top: auto;
  }

  .payment-phone {
    width: min(310px, 86vw);
  }

  .payment-guide-panels {
    padding-top: 10px;
  }
}

@media (max-width: 560px) {
  .payment-guide-intro,
  .payment-guide-section {
    padding-top: 40px;
  }

  .payment-guide-tabs {
    width: 100%;
    gap: 3px;
    padding: 4px;
    border-radius: 16px;
  }

  .payment-guide-tabs button {
    min-height: 58px;
    flex-direction: column;
    gap: 2px;
    padding: 7px 5px;
    border-radius: 12px;
    font-size: 0.63rem;
    line-height: 1.18;
  }

  .payment-guide-tabs button span {
    font-size: 0.9rem;
  }

  .payment-phone-screen {
    min-height: 600px;
  }

  .payment-step-list li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
    padding: 18px 0;
  }

  .payment-step-list::before {
    left: 19px;
  }

  .payment-step-list li > span {
    width: 40px;
    height: 40px;
  }

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

  .payment-safety-grid article {
    min-height: 0;
  }

  .payment-safety-grid article > span {
    margin-bottom: 20px;
  }

  .payment-methods-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .payment-phone-preview,
  .payment-guide-panel,
  .payment-guide-tabs button,
  .payment-safety-grid article,
  .payment-methods-grid span {
    animation: none;
    transition: none;
  }

  .payment-guide-tabs button:hover,
  .payment-safety-grid article:hover,
  .payment-methods-grid span:hover {
    transform: none;
  }
}

/* HOB 4D results centre */

.fourd-results-page {
  --fourd-cyan: #35e2d0;
  --fourd-cyan-soft: rgba(53, 226, 208, 0.11);
  --fourd-cyan-line: rgba(53, 226, 208, 0.3);
}

.fourd-page-hero .page-hero-media img {
  filter: saturate(0.86) hue-rotate(142deg) brightness(0.78);
}

.fourd-page-hero .page-hero-media::after {
  background:
    linear-gradient(90deg, rgba(4, 7, 10, 0.97), rgba(4, 9, 12, 0.76) 47%, rgba(4, 10, 13, 0.22)),
    linear-gradient(180deg, rgba(3, 8, 11, 0.12), rgba(3, 8, 11, 0.52));
}

.fourd-page-hero .hero-actions {
  margin-top: 24px;
}

.fourd-live-section {
  padding: 72px 0 86px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 12%, rgba(53, 226, 208, 0.08), transparent 31rem),
    var(--ink-soft);
}

.fourd-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: 44px;
  margin-bottom: 34px;
}

.fourd-section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.fourd-section-heading > p {
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.fourd-embed-shell {
  overflow: hidden;
  border: 1px solid var(--fourd-cyan-line);
  border-radius: 22px;
  background: #0d1117;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(53, 226, 208, 0.05);
}

.fourd-embed-bar {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 11px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(53, 226, 208, 0.09), transparent 42%),
    #12171e;
}

.fourd-embed-icon {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  place-items: center;
  border: 1px solid var(--fourd-cyan-line);
  border-radius: 11px;
  background: #091210;
  color: var(--fourd-cyan);
  font-size: 0.72rem;
  font-weight: 950;
}

.fourd-live-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #69dfa1;
  box-shadow: 0 0 0 5px rgba(105, 223, 161, 0.12);
}

.fourd-embed-bar strong {
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.fourd-embed-bar a {
  margin-left: auto;
  color: var(--fourd-cyan);
  font-size: 0.75rem;
  font-weight: 850;
}

.fourd-embed-bar a:hover {
  color: #8dfff4;
}

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

.fourd-source-note,
.fourd-table-note {
  display: flex;
  max-width: 960px;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin: 17px auto 0;
  color: #8d929a;
  font-size: 0.76rem;
  line-height: 1.65;
  text-align: center;
}

.fourd-source-note > span,
.fourd-table-note > span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border: 1px solid var(--fourd-cyan-line);
  border-radius: 50%;
  color: var(--fourd-cyan);
  font-family: Georgia, serif;
  font-weight: 850;
}

.fourd-intro-section {
  background: var(--ink);
}

.fourd-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: 54px;
}

.fourd-intro-copy h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.fourd-intro-copy p {
  max-width: 780px;
}

.fourd-intro-copy p:last-child {
  margin-bottom: 0;
}

.fourd-intro-copy strong {
  color: var(--text);
}

.fourd-definition-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 20px;
  padding: 25px;
  border: 1px solid var(--fourd-cyan-line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 20%, rgba(53, 226, 208, 0.16), transparent 11rem),
    var(--surface);
}

.fourd-definition-card > span {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1px solid var(--fourd-cyan-line);
  border-radius: 50%;
  background: #091310;
  color: var(--fourd-cyan);
  font-size: 2rem;
  font-weight: 950;
  box-shadow: inset 0 0 24px rgba(53, 226, 208, 0.1);
}

.fourd-definition-card strong {
  display: block;
  margin-bottom: 7px;
}

.fourd-definition-card p {
  margin: 0;
  font-size: 0.8rem;
}

.fourd-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.fourd-reason-grid article,
.fourd-benefits-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  transition:
    border-color 190ms ease,
    box-shadow 190ms ease,
    transform 190ms ease;
}

.fourd-reason-grid article:hover,
.fourd-benefits-grid article:hover {
  border-color: var(--fourd-cyan-line);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  transform: translateY(-5px);
}

.fourd-reason-grid article > span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--fourd-cyan);
  font-size: 0.72rem;
  font-weight: 950;
}

.fourd-reason-grid h3,
.fourd-benefits-grid h3 {
  margin-bottom: 9px;
}

.fourd-reason-grid p,
.fourd-benefits-grid p {
  margin: 0;
  font-size: 0.81rem;
}

.fourd-how-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 26%, rgba(53, 226, 208, 0.07), transparent 29rem),
    var(--ink-soft);
}

.fourd-how-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.65fr);
  align-items: start;
  gap: clamp(48px, 7vw, 90px);
}

.fourd-how-layout h2 {
  max-width: 650px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.fourd-how-layout > div > p {
  max-width: 700px;
}

.fourd-check-list {
  position: relative;
  display: grid;
  padding: 17px 0 0;
  margin: 0;
  list-style: none;
}

.fourd-check-list::before {
  position: absolute;
  top: 55px;
  bottom: 45px;
  left: 22px;
  width: 1px;
  background: linear-gradient(var(--fourd-cyan), rgba(53, 226, 208, 0.08));
  content: "";
}

.fourd-check-list li {
  position: relative;
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
}

.fourd-check-list li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid var(--fourd-cyan-line);
  border-radius: 50%;
  background: var(--ink-soft);
  box-shadow: 0 0 0 6px var(--ink-soft);
  color: var(--fourd-cyan);
  font-size: 0.66rem;
  font-weight: 950;
}

.fourd-check-list h3 {
  margin: 1px 0 6px;
  font-size: 1rem;
}

.fourd-check-list p {
  margin: 0;
  font-size: 0.84rem;
}

.fourd-example-card {
  position: sticky;
  top: 104px;
  padding: 28px;
  border: 1px solid var(--fourd-cyan-line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 3%, rgba(53, 226, 208, 0.17), transparent 14rem),
    #11161d;
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.34);
}

.fourd-example-label {
  display: inline-flex;
  padding: 6px 9px;
  margin-bottom: 18px;
  border: 1px solid var(--fourd-cyan-line);
  border-radius: 999px;
  color: var(--fourd-cyan);
  background: var(--fourd-cyan-soft);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.fourd-example-card h3 {
  margin-bottom: 9px;
  font-size: 1.35rem;
}

.fourd-example-card > p {
  font-size: 0.77rem;
}

.fourd-example-card dl {
  display: grid;
  gap: 7px;
  margin: 22px 0 0;
}

.fourd-example-card dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 16px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
}

.fourd-example-card dt {
  color: #8e949d;
  font-size: 0.68rem;
}

.fourd-example-card dd {
  margin: 0;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 850;
}

.fourd-example-card .is-first {
  border-color: var(--fourd-cyan-line);
  background: var(--fourd-cyan-soft);
}

.fourd-example-card .is-first dd {
  color: var(--fourd-cyan);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.fourd-prizes-section {
  background: var(--ink);
}

.fourd-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.26);
}

.fourd-prize-table {
  width: 100%;
  border-collapse: collapse;
}

.fourd-prize-table th,
.fourd-prize-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.fourd-prize-table thead th {
  background: rgba(53, 226, 208, 0.055);
  color: var(--fourd-cyan);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fourd-prize-table tbody th {
  width: 190px;
  color: var(--text);
  font-size: 0.82rem;
}

.fourd-prize-table tbody th span {
  display: inline-grid;
  width: 29px;
  height: 29px;
  place-items: center;
  margin-right: 10px;
  border: 1px solid var(--fourd-cyan-line);
  border-radius: 9px;
  color: var(--fourd-cyan);
  font-size: 0.63rem;
}

.fourd-prize-table td {
  color: var(--muted-strong);
  font-size: 0.81rem;
}

.fourd-prize-table tbody tr:last-child > * {
  border-bottom: 0;
}

.fourd-table-note {
  max-width: 860px;
}

.fourd-reading-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-soft);
}

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

.fourd-reading-grid > article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.023);
}

.fourd-reading-grid h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.5rem);
}

.fourd-reading-grid p {
  font-size: 0.85rem;
}

.fourd-tick-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.fourd-tick-list li {
  position: relative;
  padding: 13px 14px 13px 42px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.018);
  font-size: 0.81rem;
}

.fourd-tick-list li::before {
  position: absolute;
  top: 12px;
  left: 15px;
  color: var(--fourd-cyan);
  content: "✓";
  font-weight: 950;
}

.fourd-tick-list strong {
  color: var(--text);
}

.fourd-random-note {
  padding: 16px 18px;
  margin-top: 22px;
  border-left: 3px solid var(--fourd-cyan);
  background: var(--fourd-cyan-soft);
  color: var(--muted-strong);
  font-size: 0.8rem;
}

.fourd-random-note strong {
  color: var(--fourd-cyan);
}

.fourd-benefits-section {
  background: var(--ink);
}

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

.fourd-benefits-grid article {
  min-height: 220px;
}

.fourd-benefits-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid var(--fourd-cyan-line);
  border-radius: 12px;
  color: var(--fourd-cyan);
  background: var(--fourd-cyan-soft);
  font-weight: 900;
}

.fourd-responsible-section {
  padding-top: 24px;
  background: var(--ink);
}

.fourd-responsible-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr) max-content;
  align-items: center;
  gap: 42px;
  padding: 34px;
  border: 1px solid var(--fourd-cyan-line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 8% 50%, rgba(53, 226, 208, 0.12), transparent 25rem),
    var(--surface);
}

.fourd-responsible-panel h2 {
  margin-bottom: 11px;
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
}

.fourd-responsible-panel p {
  margin: 0;
  font-size: 0.85rem;
}

.fourd-responsible-panel ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fourd-responsible-panel li {
  position: relative;
  padding-left: 22px;
  color: var(--muted-strong);
  font-size: 0.78rem;
}

.fourd-responsible-panel li::before {
  position: absolute;
  left: 0;
  color: var(--fourd-cyan);
  content: "•";
  font-size: 1.2rem;
  line-height: 1;
}

.fourd-responsible-panel .button {
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .fourd-embed-shell iframe {
    height: 720px;
  }

  .fourd-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fourd-responsible-panel {
    grid-template-columns: 1fr 1fr;
  }

  .fourd-responsible-panel .button {
    width: max-content;
  }
}

@media (max-width: 820px) {
  .fourd-section-heading,
  .fourd-intro-layout,
  .fourd-how-layout,
  .fourd-reading-grid {
    grid-template-columns: 1fr;
  }

  .fourd-section-heading {
    gap: 13px;
  }

  .fourd-definition-card {
    max-width: 620px;
  }

  .fourd-example-card {
    position: relative;
    top: auto;
  }

  .fourd-responsible-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .fourd-live-section {
    padding: 52px 0 66px;
  }

  .fourd-embed-bar {
    flex-wrap: wrap;
    padding: 12px 14px;
  }

  .fourd-embed-bar a {
    width: 100%;
    padding-top: 8px;
    margin-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .fourd-embed-shell iframe {
    height: 680px;
  }

  .fourd-source-note,
  .fourd-table-note {
    text-align: left;
  }

  .fourd-definition-card {
    grid-template-columns: 70px 1fr;
    padding: 20px;
  }

  .fourd-definition-card > span {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }

  .fourd-reason-grid,
  .fourd-benefits-grid {
    grid-template-columns: 1fr;
  }

  .fourd-example-card {
    padding: 22px;
  }

  .fourd-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .fourd-prize-table,
  .fourd-prize-table tbody,
  .fourd-prize-table tr {
    display: block;
  }

  .fourd-prize-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .fourd-prize-table tbody {
    display: grid;
    gap: 12px;
  }

  .fourd-prize-table tbody tr {
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--surface);
  }

  .fourd-prize-table tbody th,
  .fourd-prize-table tbody td {
    display: block;
    width: 100%;
    padding: 7px 0;
    border: 0;
  }

  .fourd-prize-table tbody th {
    margin-bottom: 5px;
    color: var(--fourd-cyan);
  }

  .fourd-prize-table tbody td::before {
    display: block;
    margin-bottom: 2px;
    color: #777d86;
    font-size: 0.59rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .fourd-prize-table tbody td:nth-of-type(1)::before {
    content: "Description";
  }

  .fourd-prize-table tbody td:nth-of-type(2)::before {
    content: "Illustrative example";
  }

  .fourd-reading-grid > article,
  .fourd-responsible-panel {
    padding: 23px;
  }

  .fourd-benefits-grid article {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fourd-reason-grid article,
  .fourd-benefits-grid article {
    transition: none;
  }

  .fourd-reason-grid article:hover,
  .fourd-benefits-grid article:hover {
    transform: none;
  }
}

/* Become Agent page */
.content-become-agent {
  background: #080d12;
}

.agent-main {
  overflow: clip;
  background:
    radial-gradient(circle at 8% 48%, rgba(53, 226, 208, 0.065), transparent 29rem),
    #080d12;
}

.agent-hero {
  position: relative;
  display: grid;
  min-height: clamp(600px, 69vw, 760px);
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(53, 226, 208, 0.15);
  background: #071016;
}

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

.agent-hero::before {
  background:
    linear-gradient(90deg, rgba(4, 10, 14, 0.99) 0%, rgba(4, 10, 14, 0.93) 31%, rgba(4, 10, 14, 0.47) 58%, rgba(4, 10, 14, 0.08) 84%),
    linear-gradient(0deg, rgba(4, 10, 14, 0.82), transparent 38%, rgba(4, 10, 14, 0.14));
}

.agent-hero::after {
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(transparent, #080d12);
}

.agent-hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.agent-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.agent-hero-shell {
  position: relative;
  z-index: 2;
  width: var(--shell);
  padding-top: 52px;
  padding-bottom: 68px;
}

.agent-hero-copy {
  width: min(650px, 58%);
}

.agent-hero-copy .breadcrumbs {
  margin-bottom: 42px;
}

.agent-hero-copy h1 {
  max-width: 650px;
  margin: 13px 0 23px;
  font-size: clamp(2.75rem, 5.3vw, 4.7rem);
  line-height: 0.98;
}

.agent-hero-copy h1 em {
  color: var(--teal);
  font-style: normal;
}

.agent-hero-copy > p {
  max-width: 570px;
  margin: 0 0 28px;
  color: #d0d7dc;
  font-size: 0.95rem;
  line-height: 1.85;
}

.agent-hero-facts {
  display: flex;
  gap: 0;
  margin-top: 46px;
}

.agent-hero-facts span {
  display: grid;
  min-width: 138px;
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  color: #aeb8be;
  font-size: 0.63rem;
  line-height: 1.45;
}

.agent-hero-facts span:first-child {
  padding-left: 0;
  border-left: 0;
}

.agent-hero-facts strong {
  color: var(--teal);
  font-size: 1.45rem;
  line-height: 1;
}

.agent-intro-section {
  padding: clamp(68px, 8vw, 108px) 0;
  border-bottom: 1px solid var(--line);
}

.agent-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 116px);
  align-items: start;
}

.agent-intro-grid h2 {
  max-width: 520px;
  margin-top: 10px;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
}

.agent-intro-grid p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.87rem;
  line-height: 1.9;
}

.agent-intro-grid p + p {
  margin-top: 14px;
  color: var(--muted);
}

.agent-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.agent-section-heading h2,
.agent-rebate-heading h2,
.agent-compliance-panel h2,
.agent-final-panel h2 {
  margin: 9px 0 0;
  font-size: clamp(1.9rem, 3.2vw, 2.95rem);
}

.agent-section-heading > p,
.agent-rebate-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.8;
}

.agent-section-heading-centred {
  grid-template-columns: 1fr;
  max-width: 760px;
  gap: 12px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.agent-game-grid a,
.agent-benefit-grid article {
  position: relative;
  min-height: 235px;
  padding: 26px 21px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, #17232c, #10171d);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.agent-game-grid a::after,
.agent-benefit-grid article::after {
  position: absolute;
  right: -44px;
  bottom: -52px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(53, 226, 208, 0.11);
  border-radius: 50%;
  content: "";
}

.agent-game-grid a:hover,
.agent-benefit-grid article:hover,
.agent-model-grid article:hover {
  border-color: rgba(53, 226, 208, 0.5);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28), 0 0 28px rgba(53, 226, 208, 0.065);
  transform: translateY(-6px);
}

.agent-game-grid a > span,
.agent-benefit-grid article > span {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 42px;
  place-items: center;
  border: 1px solid rgba(53, 226, 208, 0.24);
  border-radius: 16px;
  background: rgba(53, 226, 208, 0.08);
  color: var(--teal);
  font-size: 1rem;
  font-weight: 900;
}

.agent-game-grid h3,
.agent-benefit-grid h3 {
  margin: 0 0 8px;
  color: #f4f7f8;
  font-size: 0.95rem;
}

.agent-game-grid p,
.agent-benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.7;
}

.agent-audience-section {
  padding-top: 24px;
}

.agent-audience-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.92fr);
  gap: clamp(38px, 8vw, 110px);
  align-items: center;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(53, 226, 208, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 20%, rgba(53, 226, 208, 0.13), transparent 18rem),
    linear-gradient(130deg, #111b22, #0c1217);
}

.agent-audience-copy h2 {
  max-width: 590px;
  margin: 10px 0 16px;
  font-size: clamp(1.9rem, 3.3vw, 3rem);
}

.agent-audience-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.82rem;
  line-height: 1.85;
}

.agent-audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.agent-audience-list span {
  position: relative;
  padding: 14px 14px 14px 36px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: #dbe1e4;
  font-size: 0.7rem;
}

.agent-audience-list span::before {
  position: absolute;
  left: 14px;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.agent-commission-section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background:
    radial-gradient(circle at 50% 18%, rgba(53, 226, 208, 0.08), transparent 28rem),
    #0b1116;
}

.agent-model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.agent-model-grid article {
  position: relative;
  padding: clamp(27px, 4vw, 43px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #17242d, #10171c);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.agent-model-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #061014;
  font-size: 1.25rem;
  font-weight: 950;
}

.agent-model-grid small {
  color: var(--teal);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.agent-model-grid h3 {
  margin: 8px 0 12px;
  font-size: 1.45rem;
}

.agent-model-grid p,
.agent-model-grid li {
  color: var(--muted-strong);
  font-size: 0.76rem;
  line-height: 1.75;
}

.agent-model-grid ul {
  display: grid;
  gap: 6px;
  padding-left: 18px;
  margin: 22px 0 0;
}

.agent-rebate-block {
  max-width: 1060px;
  margin: clamp(68px, 8vw, 105px) auto 0;
}

.agent-rebate-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.7fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 25px;
}

.agent-table-wrap {
  overflow: hidden;
  border: 1px solid rgba(53, 226, 208, 0.22);
  border-radius: 22px;
  background: #121a20;
}

.agent-table {
  width: 100%;
  border-collapse: collapse;
}

.agent-table th,
.agent-table td {
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted-strong);
  font-size: 0.73rem;
  text-align: left;
  vertical-align: top;
}

.agent-table thead th {
  background: rgba(53, 226, 208, 0.12);
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agent-table tbody th {
  color: #f3f6f7;
  font-size: 0.78rem;
}

.agent-table tr:last-child th,
.agent-table tr:last-child td {
  border-bottom: 0;
}

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

.agent-rate-note {
  margin: 16px 0 0;
  color: #838e95;
  font-size: 0.67rem;
  line-height: 1.65;
  text-align: center;
}

.agent-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(53, 226, 208, 0.18);
  border-radius: 24px;
  background: rgba(53, 226, 208, 0.12);
  list-style: none;
}

.agent-process-grid li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  min-height: 245px;
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
  background: linear-gradient(145deg, #15222a, #0e161c);
}

.agent-process-grid li > span {
  color: rgba(255, 255, 255, 0.16);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.agent-process-grid small {
  color: var(--teal);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.agent-process-grid h3 {
  margin: 7px 0 10px;
  font-size: 1.35rem;
}

.agent-process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.75;
}

.agent-benefits-section {
  padding-top: 24px;
}

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

.agent-benefit-grid article > span {
  margin-bottom: 40px;
}

.agent-compliance-section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.agent-compliance-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1fr);
  gap: clamp(42px, 8vw, 104px);
  align-items: center;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(201, 245, 0, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 50%, rgba(201, 245, 0, 0.075), transparent 20rem),
    #11191f;
}

.agent-compliance-panel p {
  margin: 15px 0 24px;
  color: var(--muted-strong);
  font-size: 0.8rem;
  line-height: 1.8;
}

.agent-compliance-panel ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.agent-compliance-panel li {
  position: relative;
  padding: 13px 16px 13px 40px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  color: #cdd4d8;
  font-size: 0.72rem;
  line-height: 1.55;
}

.agent-compliance-panel li::before {
  position: absolute;
  left: 15px;
  color: var(--lime);
  content: "✓";
  font-weight: 900;
}

.agent-faq-section {
  background: #0a1015;
}

.agent-final-section {
  padding-top: 0;
}

.agent-final-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(53, 226, 208, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(53, 226, 208, 0.17), transparent 19rem),
    linear-gradient(130deg, #13222a, #0d1419);
}

.agent-final-mark {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(53, 226, 208, 0.5);
  border-radius: 50%;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
}

.agent-final-panel p {
  max-width: 640px;
  margin: 13px 0 0;
  color: var(--muted-strong);
  font-size: 0.78rem;
  line-height: 1.75;
}

.agent-final-panel .cta-actions {
  flex-wrap: nowrap;
}

@media (max-width: 1120px) {
  .agent-game-grid,
  .agent-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .agent-game-grid a,
  .agent-benefit-grid article {
    min-height: 210px;
  }

  .agent-final-panel {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .agent-final-panel .cta-actions {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .agent-hero {
    min-height: 660px;
  }

  .agent-hero-media img {
    object-position: 64% center;
  }

  .agent-hero::before {
    background: linear-gradient(90deg, rgba(4, 10, 14, 0.98) 0%, rgba(4, 10, 14, 0.86) 48%, rgba(4, 10, 14, 0.32) 100%);
  }

  .agent-hero-copy {
    width: min(660px, 76%);
  }

  .agent-intro-grid,
  .agent-section-heading,
  .agent-rebate-heading,
  .agent-audience-panel,
  .agent-compliance-panel {
    grid-template-columns: 1fr;
  }

  .agent-process-grid {
    grid-template-columns: 1fr;
  }

  .agent-process-grid li {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .agent-hero {
    min-height: 720px;
    align-items: end;
  }

  .agent-hero-media img {
    object-position: 68% center;
  }

  .agent-hero::before {
    background:
      linear-gradient(90deg, rgba(4, 10, 14, 0.95), rgba(4, 10, 14, 0.56)),
      linear-gradient(0deg, #060d12 8%, rgba(6, 13, 18, 0.9) 42%, rgba(6, 13, 18, 0.16) 100%);
  }

  .agent-hero-shell {
    padding-top: 130px;
    padding-bottom: 50px;
  }

  .agent-hero-copy {
    width: 100%;
  }

  .agent-hero-copy .breadcrumbs {
    margin-bottom: 190px;
  }

  .agent-hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.45rem);
  }

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

  .agent-hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 34px;
  }

  .agent-hero-facts span {
    min-width: 0;
    padding: 0 10px;
  }

  .agent-game-grid,
  .agent-benefit-grid,
  .agent-model-grid,
  .agent-audience-list {
    grid-template-columns: 1fr;
  }

  .agent-game-grid a,
  .agent-benefit-grid article {
    min-height: 0;
  }

  .agent-game-grid a > span,
  .agent-benefit-grid article > span {
    margin-bottom: 26px;
  }

  .agent-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .agent-table,
  .agent-table tbody,
  .agent-table tr {
    display: block;
  }

  .agent-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .agent-table tbody {
    display: grid;
    gap: 12px;
  }

  .agent-table tbody tr {
    padding: 19px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #131c22;
  }

  .agent-table tbody th,
  .agent-table tbody td {
    display: block;
    padding: 7px 0;
    border: 0;
  }

  .agent-table tbody td::before {
    display: block;
    margin-bottom: 2px;
    color: var(--teal);
    font-size: 0.57rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .agent-table tbody td:nth-of-type(1)::before {
    content: "How It Works";
  }

  .agent-table tbody td:nth-of-type(2)::before {
    content: "Rates And Terms";
  }

  .agent-process-grid li {
    grid-template-columns: 70px 1fr;
    padding: 25px;
  }

  .agent-process-grid li > span {
    font-size: 3rem;
  }

  .agent-final-panel {
    grid-template-columns: 1fr;
  }

  .agent-final-mark {
    width: 66px;
    height: 66px;
  }

  .agent-final-panel .cta-actions {
    grid-column: auto;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .agent-game-grid a,
  .agent-benefit-grid article,
  .agent-model-grid article {
    transition: none;
  }

  .agent-game-grid a:hover,
  .agent-benefit-grid article:hover,
  .agent-model-grid article:hover {
    transform: none;
  }
}
