/* 1XROLL Homepage — premium dark + gold */

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-surface: #1a1a1a;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(212, 175, 55, 0.35);
  --text: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --gold: #d4af37;
  --gold-light: #f5d061;
  --gold-soft: rgba(212, 175, 55, 0.12);
  --btn-gold-text: #000000;
  --btn-gold-bg: #d4af37;
  --btn-gold-bg-hover: #e0bc4a;
  --header: 68px;
  --wrap: 1140px;
  --radius: 12px;
  --radius-lg: 16px;
  --ease: 0.2s ease;
  --font: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.wrap--narrow { max-width: 720px; }
.wrap--seo { max-width: 1000px; }

.wrap--games {
  width: min(98%, 1840px);
  max-width: none;
  padding-inline: clamp(0.5rem, 1.25vw, 1rem);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.625rem;
}

.text-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.section-desc {
  margin-top: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 520px;
}

.section-desc a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-desc a:hover {
  color: #fff;
}

.section { padding: 4rem 0; }
.section--surface { background: var(--bg-elevated); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.section-head--center {
  align-items: center;
  text-align: center;
}

.section-head--center .section-desc { margin-inline: auto; }

.link-arrow {
  color: var(--gold-light);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--ease);
}

.link-arrow:hover { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--btn-gold-text);
  font-weight: 700;
  text-decoration: none;
}

.btn--gold:hover,
.btn--gold:focus-visible,
.btn--gold:active {
  color: var(--btn-gold-text);
  background: linear-gradient(135deg, #f8d875, var(--btn-gold-bg-hover));
  transform: translateY(-1px);
  text-decoration: none;
}

.btn--secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
  text-decoration: none;
}

.btn--secondary:hover,
.btn--secondary:focus-visible,
.btn--secondary:active {
  border-color: var(--border-hover);
  color: var(--text);
  text-decoration: none;
}

.btn--text {
  background: transparent;
  color: var(--text-secondary);
  padding: 0.5rem 0.75rem;
}

.btn--text:hover { color: var(--text); }

.btn--lg { padding: 0.875rem 1.75rem; font-size: 0.9375rem; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn--full { width: 100%; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), background var(--ease);
}

.header.is-scrolled { border-bottom-color: var(--border); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.brand__logo { height: 36px; width: auto; }

.nav {
  display: none;
  align-items: center;
  gap: 1rem;
}

.nav a,
.nav-dropdown__toggle {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--ease);
  white-space: nowrap;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.nav-dropdown__toggle::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform var(--ease);
}

.nav-dropdown.is-open .nav-dropdown__toggle::after {
  transform: rotate(-135deg) translateY(1px);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 11.5rem;
  padding: 0.35rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(12, 12, 14, 0.98);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 50;
}

.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8125rem;
}

.nav-dropdown__menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 0.25rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.lang-switch__link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 0.15rem 0.35rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-switch__link:hover {
  color: #fff;
}

.lang-switch__link.is-active {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
}

.lang-switch__sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  user-select: none;
}

.header__actions .btn--text,
.header__actions .btn--gold { display: none; }

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform var(--ease), opacity var(--ease);
}

.menu-btn.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-btn.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.drawer.is-open { pointer-events: auto; }

.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer.is-open .drawer__backdrop { opacity: 1; }

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--bg-elevated);
  border-left: 1px solid var(--border);
  padding: 1.25rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.drawer.is-open .drawer__panel { transform: translateX(0); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.drawer__close {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.drawer__nav a {
  padding: 0.75rem 0;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.drawer__nav-label {
  margin: 0.5rem 0 0;
  padding: 0.75rem 0 0.15rem;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 0;
}

.drawer__cta {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-top: 1rem;
}

/* Hero */
.hero {
  position: relative;
  padding: var(--header) 0 0;
  overflow: visible;
}

.hero__ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 35% at 50% 20%, rgba(212, 175, 55, 0.07), transparent),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(34, 197, 94, 0.04), transparent);
  pointer-events: none;
}

.hero__body {
  position: relative;
  padding: 1rem 0 1rem;
  text-align: center;
}

.hero__body .eyebrow {
  margin-bottom: 0.5rem;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hero__lead {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 1.25rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero-promo {
  position: relative;
  overflow: visible;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.hero-promo--banner {
  --hero-banner-h: clamp(340px, 27vw, 385px);
  --hero-banner-w: min(calc(var(--hero-banner-h) * 1065 / 510), calc(100% - 0.5rem), 1440px);
  width: var(--hero-banner-w);
  max-width: 1440px;
  margin: 0.5rem auto 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.hero-promo--banner .hero-promo__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 1065 / 510;
  height: auto;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(212, 175, 55, 0.04), transparent),
    var(--bg-surface);
  overflow: hidden;
}

.hero-promo__viewport {
  position: relative;
  min-height: 200px;
}

.hero-promo__track {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
}

.hero-promo__slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 0;
  padding: 2% 2.75%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  text-decoration: none;
}

.hero-promo__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-promo__slide picture {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
}

.hero-promo__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.hero-promo__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.hero-promo__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.35;
  cursor: pointer;
  transition: opacity var(--ease), transform var(--ease), background var(--ease);
}

.hero-promo__dot.is-active {
  opacity: 1;
  background: var(--gold);
  transform: scale(1.25);
}

/* Hero live information ticker */
.hero-ticker {
  position: relative;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 0.98) 100%),
    var(--bg);
  overflow: hidden;
}

.hero-ticker::before,
.hero-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3rem;
  z-index: 1;
  pointer-events: none;
}

.hero-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 15%, transparent);
}

.hero-ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 15%, transparent);
}

.hero-ticker__inner {
  overflow: hidden;
  padding: 0.875rem 0;
}

.hero-ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: heroTickerScroll 36s linear infinite;
  will-change: transform;
}

.hero-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 1.5rem;
  white-space: nowrap;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.hero-ticker__item:hover {
  color: var(--gold-light);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
}

.hero-ticker__icon {
  font-size: 1.0625rem;
  line-height: 1;
  flex-shrink: 0;
}

.hero-ticker__sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.45;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

@keyframes heroTickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 767px) {
  .hero-promo--banner {
    --hero-banner-w: calc(100% - 1rem);
    --hero-banner-h: calc(var(--hero-banner-w) * 510 / 1065);
    width: var(--hero-banner-w);
    margin: 0.625rem auto 0;
    border-radius: 16px;
  }

  .hero-promo--banner .hero-promo__viewport {
    height: auto;
  }

  .hero-promo__slide {
    padding: 2% 2.5%;
  }

  .hero__body { padding: 1.25rem 0 1rem; }

  .hero__title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    margin-bottom: 0.75rem;
  }

  .hero__lead {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }

  .hero-ticker__item {
    font-size: 0.75rem;
    padding: 0.25rem 1.125rem;
  }
}

@media (min-width: 768px) {
  .hero__body {
    padding: 0.625rem 0 1rem;
  }

  .hero__title {
    font-size: clamp(1.875rem, 3.5vw, 2.625rem);
    margin-bottom: 0.625rem;
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-promo--banner {
    margin: 0.375rem auto 0;
  }

  .hero__body {
    padding: 0.5rem 0 0.875rem;
  }
}

/* Game carousels */
.game-carousel { margin-bottom: 2.5rem; }
.game-carousel:last-child { margin-bottom: 0; }

.game-carousel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.game-carousel__title {
  font-size: 1.125rem;
  font-weight: 600;
}

.game-carousel__count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.game-carousel__wrap {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.game-carousel__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  mask-image: linear-gradient(90deg, transparent, #000 1%, #000 99%, transparent);
}

.game-carousel__viewport.is-dragging {
  cursor: grabbing;
}

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

.game-carousel__track {
  display: flex;
  gap: 0.625rem;
  padding: 0.25rem 0;
  will-change: transform;
}

.game-carousel__btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--ease);
}

.game-carousel__btn:hover { border-color: var(--border-hover); }

.game-card {
  flex: 0 0 115px;
  text-decoration: none;
  color: var(--text);
  transition: transform var(--ease);
}

.game-card:hover { transform: translateY(-3px); }

.game-card img {
  width: 115px;
  height: 153px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color var(--ease);
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}

.game-card:hover img { border-color: var(--border-hover); }

.game-card span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Marquee */
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 45s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee--providers .marquee__track { animation-duration: 50s; }
.marquee--payments .marquee__track { animation-duration: 40s; }

.providers-intro {
  max-width: 800px;
  margin: 0.5rem auto 0;
  text-align: center;
}

.providers-intro p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.providers-intro p:last-child {
  margin-bottom: 0;
}

.providers-intro a {
  color: var(--gold-light);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.providers-intro a:hover {
  color: #fff;
}

.section--providers .section-head {
  margin-bottom: 1.5rem;
}

/* Register & Login */
.wrap--register-login {
  max-width: 1400px;
}

.section--register-login {
  padding: 3.5rem 0;
  background: var(--bg);
}

.section--register-login .section-head {
  margin-bottom: 2.25rem;
}

.register-login__subtitle {
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.register-login__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.register-login__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.75rem 1.75rem;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s ease, box-shadow 0.35s ease;
}

.register-login__card-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(212, 175, 55, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(212, 175, 55, 0.08), transparent 50%),
    linear-gradient(145deg, rgba(20, 20, 20, 0.6) 0%, rgba(10, 10, 10, 0.85) 100%);
  z-index: 0;
}

.register-login__card-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.9) 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.7) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.5) 1px, transparent 1px);
  background-size: 48px 48px, 64px 64px, 56px 56px;
}

.register-login__coin {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f5d061, #b8860b 55%, #8b6914);
  opacity: 0.07;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.2);
}

.register-login__coin--1 {
  width: 72px;
  height: 72px;
  top: 12%;
  right: 8%;
  animation: registerCoinFloat 7s ease-in-out infinite;
}

.register-login__coin--2 {
  width: 44px;
  height: 44px;
  bottom: 28%;
  right: 18%;
  animation: registerCoinFloat 9s ease-in-out infinite 1.2s;
}

.register-login__coin--3 {
  width: 56px;
  height: 56px;
  bottom: 10%;
  left: 6%;
  animation: registerCoinFloat 8s ease-in-out infinite 0.6s;
}

@keyframes registerCoinFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(6deg); }
}

.register-login__card > *:not(.register-login__card-bg) {
  position: relative;
  z-index: 1;
}

.register-login__card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.38),
    0 0 40px rgba(212, 175, 55, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.register-login__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  padding: 0.375rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.45);
}

.register-login__badge--alt {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.2);
}

.register-login__card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 5.5rem;
}

.register-login__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 16px;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow:
    0 0 28px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.register-login__icon svg {
  width: 2rem;
  height: 2rem;
}

.register-login__card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

.register-login__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.register-login__steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.register-login__step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  box-shadow:
    0 0 18px rgba(212, 175, 55, 0.25),
    inset 0 0 12px rgba(212, 175, 55, 0.08);
}

.register-login__step-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.25rem;
}

.register-login__step-body strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.register-login__step-body span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.register-login__benefits {
  padding: 1.125rem 1.25rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.register-login__benefits-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.register-login__benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.register-login__benefits-list li {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}

.register-login__benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 700;
}

.register-login__btn {
  align-self: stretch;
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
}

.register-login__card .btn--secondary {
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.06);
}

.register-login__card .btn--secondary:hover {
  border-color: rgba(212, 175, 55, 0.6);
  background: rgba(212, 175, 55, 0.12);
  color: #fff;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.18);
}

.register-login__card:hover .register-login__step-num {
  box-shadow:
    0 0 24px rgba(212, 175, 55, 0.38),
    inset 0 0 14px rgba(212, 175, 55, 0.12);
}

/* Register & Login — entrance animations */
@keyframes rlFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rlSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rlSlideRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rlScaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html.js .section--register-login:not(.is-inview) .section-head--center .eyebrow,
  html.js .section--register-login:not(.is-inview) .section-head--center .section-title,
  html.js .section--register-login:not(.is-inview) .section-head--center .register-login__subtitle,
  html.js .section--register-login:not(.is-inview) .register-login__card,
  html.js .section--register-login:not(.is-inview) .register-login__steps li,
  html.js .section--register-login:not(.is-inview) .register-login__benefits-list li,
  html.js .section--register-login:not(.is-inview) .register-login__btn {
    opacity: 0;
  }

  html.js .section--register-login:not(.is-inview) .section-head--center .eyebrow,
  html.js .section--register-login:not(.is-inview) .section-head--center .section-title,
  html.js .section--register-login:not(.is-inview) .section-head--center .register-login__subtitle {
    transform: translateY(28px);
  }

  html.js .section--register-login:not(.is-inview) .register-login__card--register {
    transform: translateX(-50px);
  }

  html.js .section--register-login:not(.is-inview) .register-login__card--login {
    transform: translateX(50px);
  }

  html.js .section--register-login:not(.is-inview) .register-login__steps li,
  html.js .section--register-login:not(.is-inview) .register-login__benefits-list li {
    transform: translateY(16px);
  }

  html.js .section--register-login:not(.is-inview) .register-login__btn {
    transform: scale(0.9);
  }

  html.js .section--register-login.is-inview .section-head--center .eyebrow {
    animation: rlFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0s;
  }

  html.js .section--register-login.is-inview .section-head--center .section-title {
    animation: rlFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.05s;
  }

  html.js .section--register-login.is-inview .section-head--center .register-login__subtitle {
    animation: rlFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.1s;
  }

  html.js .section--register-login.is-inview .register-login__card--register {
    animation: rlSlideLeft 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.2s;
  }

  html.js .section--register-login.is-inview .register-login__card--login {
    animation: rlSlideRight 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.4s;
  }

  html.js .section--register-login.is-inview .register-login__card--register .register-login__steps li {
    animation: rlFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  html.js .section--register-login.is-inview .register-login__card--register .register-login__steps li:nth-child(1) { animation-delay: 0.5s; }
  html.js .section--register-login.is-inview .register-login__card--register .register-login__steps li:nth-child(2) { animation-delay: 0.6s; }
  html.js .section--register-login.is-inview .register-login__card--register .register-login__steps li:nth-child(3) { animation-delay: 0.7s; }

  html.js .section--register-login.is-inview .register-login__card--login .register-login__steps li {
    animation: rlFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  html.js .section--register-login.is-inview .register-login__card--login .register-login__steps li:nth-child(1) { animation-delay: 0.7s; }
  html.js .section--register-login.is-inview .register-login__card--login .register-login__steps li:nth-child(2) { animation-delay: 0.8s; }
  html.js .section--register-login.is-inview .register-login__card--login .register-login__steps li:nth-child(3) { animation-delay: 0.9s; }

  html.js .section--register-login.is-inview .register-login__card--register .register-login__benefits-list li {
    animation: rlFadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  html.js .section--register-login.is-inview .register-login__card--register .register-login__benefits-list li:nth-child(1) { animation-delay: 0.85s; }
  html.js .section--register-login.is-inview .register-login__card--register .register-login__benefits-list li:nth-child(2) { animation-delay: 0.95s; }
  html.js .section--register-login.is-inview .register-login__card--register .register-login__benefits-list li:nth-child(3) { animation-delay: 1.05s; }

  html.js .section--register-login.is-inview .register-login__card--login .register-login__benefits-list li {
    animation: rlFadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  html.js .section--register-login.is-inview .register-login__card--login .register-login__benefits-list li:nth-child(1) { animation-delay: 1.05s; }
  html.js .section--register-login.is-inview .register-login__card--login .register-login__benefits-list li:nth-child(2) { animation-delay: 1.15s; }
  html.js .section--register-login.is-inview .register-login__card--login .register-login__benefits-list li:nth-child(3) { animation-delay: 1.25s; }

  html.js .section--register-login.is-inview .register-login__card--register .register-login__btn {
    animation: rlScaleIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 1.15s;
  }

  html.js .section--register-login.is-inview .register-login__card--login .register-login__btn {
    animation: rlScaleIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 1.35s;
  }
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-right: 1.5rem;
  padding: 0.875rem 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--ease);
}

.marquee__item:hover { border-color: var(--border-hover); }

.marquee__item--provider img {
  height: 36px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

.marquee__item--provider span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.marquee__item--payment img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.marquee__item--payment span {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Promo grid */
.promo-grid {
  display: grid;
  gap: 1.25rem;
}

.promo-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-surface);
}

.promo-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.promo-tile__body { padding: 1.25rem; }

.promo-tile__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.promo-tile h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.promo-tile p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Download App — homepage teaser */
.section--download-app {
  position: relative;
  padding: 2.25rem 0;
  background: var(--bg-elevated);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.download-app__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 80% at 85% 50%, rgba(212, 175, 55, 0.1), transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(212, 175, 55, 0.05), transparent 55%);
}

.download-app {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: start;
}

.download-app__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.download-app__title {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.download-app__desc {
  margin-bottom: 1rem;
}

.download-app__desc p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 52rem;
  margin-bottom: 0.5rem;
}

.download-app__desc p:last-child {
  margin-bottom: 0;
}

.download-app__benefits {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1rem;
  margin: 0 0 1.25rem;
  padding: 0;
}

.download-app__benefits li {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding-left: 1.125rem;
  position: relative;
}

.download-app__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 700;
}

.download-app__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.download-app__guide {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold-light);
  text-decoration: none;
}

.download-app__guide:hover {
  color: #fff;
  text-decoration: underline;
}

.download-app__showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.phone-mockup--compact {
  width: 100%;
  max-width: 148px;
  animation: downloadFloatPhone 5s ease-in-out infinite;
}

.phone-mockup--compact .phone-mockup__glow {
  inset: -12%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.28), transparent 68%);
}

.phone-mockup--compact .phone-mockup__bezel {
  padding: 7px;
  border-radius: 24px;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 32px rgba(212, 175, 55, 0.12);
}

.phone-mockup--compact .phone-mockup__screen {
  border-radius: 18px;
}

.download-app__qr-card {
  text-align: center;
  padding: 1rem 1.125rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  animation: downloadFloatQr 5s ease-in-out 0.75s infinite;
}

.download-app__qr-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  margin: 0 auto 0.5rem;
  padding: 6px;
  background: #fff;
  border-radius: 10px;
}

.download-app__qr-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.download-app__qr-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Download App — entrance animation */
@media (prefers-reduced-motion: no-preference) {
  html.js .section--download-app:not(.is-inview) .download-app__copy,
  html.js .section--download-app:not(.is-inview) .download-app__showcase {
    opacity: 0;
  }

  html.js .section--download-app:not(.is-inview) .download-app__copy {
    transform: translateY(24px);
  }

  html.js .section--download-app:not(.is-inview) .download-app__showcase {
    transform: translateX(32px);
  }

  html.js .section--download-app.is-inview .download-app__copy {
    animation: rlFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  html.js .section--download-app.is-inview .download-app__showcase {
    animation: rlSlideRight 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.2s;
  }
}

/* Download (legacy full-page styles) */
.download {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.download__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  transition: border-color var(--ease);
}

.download-btn:hover { border-color: var(--border-hover); }

.download-btn small {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.download-btn strong { font-size: 0.9375rem; }

.download__visual {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 0.5rem;
}

.download__qr-shell {
  animation: downloadFloatQr 5s ease-in-out 0.75s infinite;
}

.download__qr {
  text-align: center;
  padding: 1.65rem 1.8rem;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.06) 0%, rgba(26, 26, 26, 0.98) 100%),
    var(--bg-surface);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}

.download__qr:hover {
  transform: scale(1.03);
}

.download__qr-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 168px;
  margin: 0 auto 1rem;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.download__qr-media img {
  display: block;
  width: 90%;
  height: 90%;
  object-fit: contain;
  object-position: center center;
  image-rendering: -webkit-optimize-contrast;
}

.download__qr p {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.375rem;
}

.download__qr a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
}

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

/* Phone mockup */
@keyframes downloadFloatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes downloadFloatQr {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.phone-mockup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: downloadFloatPhone 5s ease-in-out infinite;
}

.phone-mockup__glow {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 130%;
  height: 78%;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse 55% 45% at 50% 42%, rgba(212, 175, 55, 0.22), transparent 72%),
    radial-gradient(ellipse 40% 35% at 50% 70%, rgba(34, 197, 94, 0.08), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.phone-mockup__shadow {
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 72%;
  height: 18px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 50% 100% at 50% 50%, rgba(0, 0, 0, 0.55), transparent 72%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

.phone-mockup__bezel {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 7px;
  background: linear-gradient(160deg, #2e2e2e 0%, #121212 100%);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-mockup__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 5px;
  background: #050505;
  border-radius: 999px;
  z-index: 2;
}

.phone-mockup__screen {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: contain;
  object-position: center top;
  background: #0a0a0a;
  border-radius: 22px;
}

.phone-mockup--lg {
  width: 100%;
  max-width: min(248px, 100%);
}

@media (max-width: 767px) {
  .phone-mockup {
    max-width: 100%;
  }

  .phone-mockup__glow {
    width: 100%;
  }
}

/* Why 1XROLL */
#download.section--download-app {
  padding-bottom: 2.25rem;
}

.section--why-us {
  position: relative;
  overflow: hidden;
  padding: 1.75rem 0 3.25rem;
  background: var(--bg-elevated);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.why-us__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 50% -5%, rgba(212, 175, 55, 0.1), transparent 68%),
    radial-gradient(ellipse 45% 35% at 85% 85%, rgba(34, 197, 94, 0.05), transparent 70%);
}

.why-us__inner {
  position: relative;
  z-index: 1;
}

.section--why-us .section-head {
  margin-bottom: 1.25rem;
  gap: 0.5rem;
}

.section--why-us .section-title {
  letter-spacing: -0.03em;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.why-stat {
  position: relative;
  text-align: center;
  padding: 0.875rem 0.5rem;
}

.why-stat__value {
  display: block;
  font-size: clamp(2.5rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.45));
}

.why-stat__label {
  display: block;
  margin-top: 0.4375rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section--why-us .features {
  display: grid;
  gap: 1rem;
}

.section--why-us .feature {
  padding: 1.625rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.section--why-us .feature:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.32),
    0 0 32px rgba(212, 175, 55, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.section--why-us .feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.12);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.28));
}

.section--why-us .feature__icon svg {
  width: 1.625rem;
  height: 1.625rem;
}

.section--why-us .feature h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.section--why-us .feature p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Features (legacy selector kept for specificity elsewhere) */
.features {
  display: grid;
  gap: 1.25rem;
}

.feature {
  padding: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(212, 175, 55, 0.16);
}

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.875rem;
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.35));
}

.feature__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.feature h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* FAQ */
.accordion { display: flex; flex-direction: column; gap: 0.5rem; }

.accordion__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
  overflow: hidden;
}

.accordion__item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
}

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

.accordion__item p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.accordion__item p a {
  color: var(--gold-light);
  text-underline-offset: 3px;
}

.accordion__item p a:hover {
  color: #fff;
}

.faq-more { text-align: center; margin-top: 1.5rem; }

/* SEO content */
.section--seo {
  padding: 3rem 0 2.5rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.section--seo-bottom {
  padding-bottom: 3.5rem;
  border-bottom: none;
}

.section--seo-faq {
  padding: 2.5rem 0 3.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.seo-head {
  text-align: center;
  margin-bottom: 2rem;
}

.seo-head h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.625rem;
}

.seo-head h3 {
  font-size: clamp(1rem, 2.2vw, 1.1875rem);
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
}

.seo-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.seo-content p:last-child {
  margin-bottom: 0;
}

.seo-content a:not(.btn) {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
}

.seo-content a:not(.btn):hover {
  color: #fff;
}

/* Homepage About section */
.section--about {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 3.5rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.about__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 50% at 15% 20%, rgba(212, 175, 55, 0.1), transparent 68%),
    radial-gradient(ellipse 50% 40% at 90% 75%, rgba(34, 197, 94, 0.05), transparent 70%);
}

.about__inner {
  position: relative;
  z-index: 1;
}

.section--about .section-head {
  margin-bottom: 1.75rem;
}

.section--about .section-head h3 {
  font-size: clamp(1rem, 2.2vw, 1.1875rem);
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 0.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  padding: 1.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
  width: 100%;
}

.about-split__copy,
.about-split__visual {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.about-split__copy {
  max-width: 52rem;
}

.about-split__copy h3 {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.875rem;
}

.about-split__copy > p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-split__highlights {
  list-style: none;
  display: grid;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
}

.about-split__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-split__highlights li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--gold-light);
  font-weight: 700;
}

.about-split__highlights a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-split__highlights a:hover {
  color: #fff;
}

.about-split__visual {
  display: flex;
  justify-content: center;
}

.about-split__visual .phone-mockup--lg {
  max-width: 260px;
  width: 100%;
}

.about-stat {
  position: relative;
  text-align: center;
  padding: 0.875rem 0.5rem;
}

.about-stat__value {
  display: block;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stat__label {
  display: block;
  margin-top: 0.4375rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-providers {
  margin-bottom: 2.5rem;
}

.about-providers__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.about-providers .provider-grid {
  max-width: 100%;
}

.about-features {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.about-features .feature {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.about-features .feature:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.about-features .feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.about-features .feature__icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.about-features .feature h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-features .feature p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.about-seo {
  padding: 2rem 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.about-seo p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-seo p:last-child {
  margin-bottom: 0;
}

.about-seo a:not(.btn) {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-seo a:not(.btn):hover {
  color: #fff;
}

.about-more {
  text-align: center;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

.about-more p {
  max-width: 36rem;
  margin: 0 auto 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

@media (min-width: 768px) {
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 1.5rem 1rem;
  }

  .about-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
  }

  .about-split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-seo {
    padding: 2.25rem 2rem;
  }
}

/* About Us: keep feature cards single-column below tablet */
@media (max-width: 767px) {
  #au-why .about-features.features {
    grid-template-columns: 1fr;
  }

  #au-providers .cg-split,
  #au-mobile .cg-split,
  #au-security .cg-split,
  #au-promotions .cg-split {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  #au-providers .cg-split__copy,
  #au-providers .provider-grid,
  #au-mobile .cg-split__copy,
  #au-mobile .cg-visual,
  #au-security .cg-split__copy,
  #au-security .cg-visual,
  #au-promotions .cg-split__copy,
  #au-promotions .cg-visual {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .about-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.seo-faq-head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.seo-faq-head h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.faq-intro {
  max-width: 52rem;
  margin: 0 auto 2.5rem;
  padding: 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

.faq-intro h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.875rem;
}

.faq-intro h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 1.5rem 0 0.625rem;
  letter-spacing: -0.01em;
}

.faq-intro p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.faq-intro p:last-child {
  margin-bottom: 0;
}

.faq-intro a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-intro a:hover {
  color: #fff;
}

.faq-section-title {
  font-size: clamp(1.0625rem, 2.2vw, 1.3125rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--gold-light);
}

.faq-section-title:first-of-type {
  margin-top: 0;
}

.page-content .faq-cta {
  margin-top: 3rem;
}

.page-content .accordion + .faq-section-title {
  margin-top: 2.75rem;
}

.faq-quick-access {
  margin: 0 0 2.75rem;
}

.faq-quick-access__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.faq-quick-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-quick-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.faq-quick-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.faq-quick-card__media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 11.5rem;
  padding: 1.25rem 1rem 0.75rem;
  background:
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(212, 175, 55, 0.12), transparent 70%),
    rgba(0, 0, 0, 0.35);
}

.faq-quick-card__media img {
  width: auto;
  height: 10.5rem;
  max-width: 72%;
  object-fit: contain;
  object-position: top center;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.faq-quick-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex: 1;
  padding: 0.875rem 1.125rem 1.25rem;
}

.faq-quick-card__title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gold-light);
  margin: 0;
}

.faq-quick-card__desc {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.faq-quick-access + .faq-section-title {
  margin-top: 0;
}

@media (min-width: 600px) {
  .faq-quick-access__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .faq-quick-access__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .faq-quick-card__media {
    min-height: 12.5rem;
  }

  .faq-quick-card__media img {
    height: 11.5rem;
  }
}

/* SEO subpages */
.page-hero {
  padding: calc(var(--header) + 2.5rem) 0 2.5rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.page-hero__lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.page-content {
  padding: 3rem 0 4rem;
}

.page-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.01em;
}

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

.page-content p,
.page-content li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.page-content ul {
  margin: 0 0 1.25rem 1.25rem;
}

.page-content a:not(.btn) {
  color: var(--gold-light);
  text-underline-offset: 3px;
}

.page-content a:not(.btn):hover {
  color: #fff;
}

/* Primary gold CTAs — readable text beats prose link overrides sitewide */
a.btn.btn--gold,
button.btn.btn--gold {
  color: var(--btn-gold-text);
  font-weight: 700;
  text-decoration: none;
}

a.btn.btn--gold:hover,
a.btn.btn--gold:focus-visible,
a.btn.btn--gold:active,
button.btn.btn--gold:hover,
button.btn.btn--gold:focus-visible,
button.btn.btn--gold:active {
  color: var(--btn-gold-text);
  text-decoration: none;
}

a.btn.btn--gold:focus-visible,
button.btn.btn--gold:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

a.btn.btn--secondary:hover,
a.btn.btn--secondary:focus-visible,
a.btn.btn--secondary:active {
  color: var(--text);
  text-decoration: none;
}

.page-cta {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  text-align: center;
}

.page-cta p {
  margin-bottom: 1rem;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.page-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-light);
  text-decoration: none;
}

.page-links a:hover {
  text-decoration: underline;
}

/* Promo showcase (Latest campaigns) */
.section--promo-showcase .section-head {
  align-items: flex-start;
}

.promo-showcase {
  display: grid;
  gap: 1.25rem;
  grid-auto-rows: 1fr;
}

.promo-showcase__card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-surface);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 280px;
}

.promo-showcase__card:hover {
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(212, 175, 55, 0.1);
}

.promo-showcase__link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.promo-showcase__media {
  position: relative;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
}

.promo-showcase__media picture,
.promo-showcase__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.promo-showcase__media img {
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.promo-showcase__card:hover .promo-showcase__media img {
  transform: scale(1.06);
}

.promo-showcase__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.94) 0%,
    rgba(0, 0, 0, 0.72) 38%,
    rgba(0, 0, 0, 0.28) 68%,
    rgba(0, 0, 0, 0.12) 100%
  );
  transition: background 0.35s ease;
}

.promo-showcase__card:hover .promo-showcase__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.78) 42%,
    rgba(0, 0, 0, 0.35) 72%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.promo-showcase__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.promo-showcase__tag {
  align-self: flex-start;
  padding: 0.3125rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 999px;
}

.promo-showcase__content h3 {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0;
}

.promo-showcase__content p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.promo-showcase__cta {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  transition: color 0.25s ease, transform 0.25s ease;
}

.promo-showcase__card:hover .promo-showcase__cta {
  color: #fff;
  transform: translateX(3px);
}

/* CTA */
.cta { padding: 3rem 0 4rem; }

.cta__banner {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.25);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 175, 55, 0.1), transparent),
    var(--bg-surface);
}

.cta__banner h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta__banner > p {
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cta__legal {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  position: relative;
  margin-top: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 175, 55, 0.06), transparent 55%),
    linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.footer__providers {
  padding: 2.25rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__providers-title {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.marquee--footer-providers {
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee--footer-providers .marquee__track {
  animation-duration: 38s;
}

.marquee__item--footer-provider {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.marquee__item--footer-provider:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

.marquee__item--footer-provider img {
  height: 32px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  opacity: 0.88;
  filter: grayscale(15%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.marquee__item--footer-provider:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.footer__main {
  padding: 2.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__main-inner {
  display: grid;
  gap: 2.5rem;
}

.footer__brand-col {
  max-width: 420px;
}

.footer__logo-link {
  display: inline-block;
  margin-bottom: 1rem;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.footer__logo-link:hover {
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
  transform: translateY(-1px);
}

.footer__seo {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}

.footer__col h4,
.footer__section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__col a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
  width: fit-content;
}

.footer__col a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.footer__payments {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__payment-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.footer__payment-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 48px;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.footer__payment-chip:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.footer__payment-chip img {
  height: 28px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
}

.footer__payment-chip span {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-light);
}

.footer__payments .footer__section-label {
  text-align: center;
  margin-bottom: 1.25rem;
}

.footer__social {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__social-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.footer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.footer__social-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

.footer__social-btn:hover {
  color: var(--gold-light);
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.18);
  transform: translateY(-3px);
}

.footer__responsible {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
}

.footer__responsible-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer__age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0 0.625rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.footer__responsible-inner p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.6;
}

.footer__bar {
  padding: 1.25rem 0 1.5rem;
}

.footer__bar-inner {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Responsive */
@media (min-width: 640px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-tile--featured { grid-column: span 2; }
  .promo-showcase { grid-template-columns: repeat(2, 1fr); }
  .promo-showcase__card,
  .promo-showcase__media { min-height: 300px; }
  .game-card { flex: 0 0 128px; }
  .game-card img { width: 128px; height: 170px; }
}

@media (min-width: 768px) {
  .nav { display: flex; }
  .header__actions .btn--text,
  .header__actions .btn--gold { display: inline-flex; }
  .menu-btn { display: none; }

  #dl-why .dl-why__head.section-head {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .download__visual {
    justify-content: flex-end;
    gap: 2.25rem;
  }

  .phone-mockup--lg {
    max-width: 260px;
  }

  .game-carousel__btn { display: flex; }
  .game-card { flex: 0 0 126px; }
  .game-card img { width: 126px; height: 168px; }

  .wrap--games {
    width: min(97%, 1880px);
    padding-inline: 0.75rem;
  }

  .section--games .game-carousel__wrap {
    gap: 0.25rem;
  }

  .section--games .game-carousel__viewport {
    mask-image: linear-gradient(90deg, transparent, #000 0.35%, #000 99.65%, transparent);
  }

  .promo-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-tile--featured { grid-column: auto; grid-row: span 2; }

  .phone-mockup--compact {
    max-width: 168px;
  }
  .features { grid-template-columns: repeat(3, 1fr); }

  .register-login__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .register-login__card {
    padding: 2.25rem 2rem 2rem;
  }

  .why-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
  }

  .why-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18%;
    right: 0;
    width: 1px;
    height: 64%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  }

  .section--why-us .features {
    gap: 1.25rem;
  }
  .promo-showcase { grid-template-columns: repeat(3, 1fr); }
  .promo-showcase__card,
  .promo-showcase__media { min-height: 320px; }

  .footer__main-inner {
    grid-template-columns: 1.1fr 1.4fr;
    align-items: start;
    gap: 3rem;
  }

  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .footer__bar-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer__responsible-inner {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .section { padding: 5rem 0; }

  #download {
    padding-bottom: 3rem;
  }

  .section--why-us {
    padding: 2.25rem 0 3.75rem;
  }

  .wrap--games {
    width: min(98%, 1920px);
    padding-inline: 0.625rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .hero-ticker__track { animation-duration: 80s; }
  .phone-mockup,
  .download__qr-shell { animation: none; }
  .feature:hover { transform: none; }
  .section--why-us .feature:hover { transform: none; }
  .register-login__card:hover { transform: none; }
  html.js .section--download-app.is-inview .download-app__copy,
  html.js .section--download-app.is-inview .download-app__showcase {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .phone-mockup--compact,
  .download-app__qr-card { animation: none; }

  .section--register-login.is-inview .section-head--center .eyebrow,
  .section--register-login.is-inview .section-head--center .section-title,
  .section--register-login.is-inview .section-head--center .register-login__subtitle,
  .section--register-login.is-inview .register-login__card,
  .section--register-login.is-inview .register-login__steps li,
  .section--register-login.is-inview .register-login__benefits-list li,
  .section--register-login.is-inview .register-login__btn {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  * { transition-duration: 0.01ms !important; }
}

/* Our Games page */
.page-hero--games {
  padding-bottom: 3rem;
}

.page-hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.section--games-category .section-head {
  margin-bottom: 1.5rem;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
  gap: 1rem;
}

.game-card--grid {
  flex: none;
  width: 100%;
  min-width: 0;
}

.game-card--grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(150px, 100%), 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  min-width: 0;
}

.provider-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.25rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--ease), transform var(--ease);
}

.provider-tile:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.provider-tile img {
  height: 36px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}

.provider-tile span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

.games-cta {
  text-align: center;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.games-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}

.games-cta__title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.games-cta__lead {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.games-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.games-cta__actions .btn--gold:hover,
.games-cta__actions .btn--gold:focus-visible,
.games-cta__actions .btn--gold:active {
  color: var(--btn-gold-text);
}

html.js .section--animate:not(.is-inview) .section-head .eyebrow,
html.js .section--animate:not(.is-inview) .section-head .section-title,
html.js .section--animate:not(.is-inview) .section-head .section-desc,
html.js .section--animate:not(.is-inview) .game-grid .game-card,
html.js .section--animate:not(.is-inview) .provider-tile {
  opacity: 0;
  transform: translateY(14px);
}

html.js .section--animate.is-inview .section-head .eyebrow {
  animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

html.js .section--animate.is-inview .section-head .section-title {
  animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.06s forwards;
}

html.js .section--animate.is-inview .section-head .section-desc {
  animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

html.js .section--animate.is-inview .game-grid .game-card {
  animation: fadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

html.js .section--animate.is-inview .provider-tile {
  animation: fadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

html.js .section--animate.is-inview .game-grid .game-card:nth-child(1) { animation-delay: 0.08s; }
html.js .section--animate.is-inview .game-grid .game-card:nth-child(2) { animation-delay: 0.1s; }
html.js .section--animate.is-inview .game-grid .game-card:nth-child(3) { animation-delay: 0.12s; }
html.js .section--animate.is-inview .game-grid .game-card:nth-child(4) { animation-delay: 0.14s; }
html.js .section--animate.is-inview .game-grid .game-card:nth-child(5) { animation-delay: 0.16s; }
html.js .section--animate.is-inview .game-grid .game-card:nth-child(6) { animation-delay: 0.18s; }
html.js .section--animate.is-inview .game-grid .game-card:nth-child(7) { animation-delay: 0.2s; }
html.js .section--animate.is-inview .game-grid .game-card:nth-child(8) { animation-delay: 0.22s; }

html.js .section--animate.is-inview .provider-tile:nth-child(1) { animation-delay: 0.05s; }
html.js .section--animate.is-inview .provider-tile:nth-child(2) { animation-delay: 0.1s; }
html.js .section--animate.is-inview .provider-tile:nth-child(3) { animation-delay: 0.15s; }
html.js .section--animate.is-inview .provider-tile:nth-child(4) { animation-delay: 0.2s; }
html.js .section--animate.is-inview .provider-tile:nth-child(5) { animation-delay: 0.25s; }
html.js .section--animate.is-inview .provider-tile:nth-child(6) { animation-delay: 0.3s; }
html.js .section--animate.is-inview .provider-tile:nth-child(7) { animation-delay: 0.35s; }

@media (min-width: 640px) {
  .game-grid {
    grid-template-columns: repeat(auto-fill, minmax(126px, 1fr));
    gap: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .game-grid {
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  }

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

@media (prefers-reduced-motion: reduce) {
  html.js .section--animate .section-head .eyebrow,
  html.js .section--animate .section-head .section-title,
  html.js .section--animate .section-head .section-desc,
  html.js .section--animate .game-grid .game-card,
  html.js .section--animate .provider-tile,
  html.js .section--animate.is-inview .section-head .eyebrow,
  html.js .section--animate.is-inview .section-head .section-title,
  html.js .section--animate.is-inview .section-head .section-desc,
  html.js .section--animate.is-inview .game-grid .game-card,
  html.js .section--animate.is-inview .provider-tile,
  html.js .section--animate .promo-page-block__copy,
  html.js .section--animate .promo-page-block__media,
  html.js .section--animate.is-inview .promo-page-block__copy,
  html.js .section--animate.is-inview .promo-page-block__media,
  html.js .section--animate .promo-terms .feature,
  html.js .section--animate.is-inview .promo-terms .feature {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Promotions page */
.promo-page-block {
  padding: 2.5rem 0;
}

.promo-page-block__inner {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.promo-page-block__copy {
  max-width: 52rem;
}

.promo-page-block__copy h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.promo-page-block__copy p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 52rem;
}

.promo-page-block__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.promo-page-block__media picture {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.promo-page-block__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.promo-page-block__media--referral {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(212, 175, 55, 0.14), transparent 70%),
    var(--bg-surface);
}

.referral-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  width: 100%;
  height: 100%;
  min-height: 12rem;
}

.referral-visual__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.12);
}

.referral-visual__icon svg {
  width: 2rem;
  height: 2rem;
}

.referral-visual__title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.referral-visual__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 16rem;
  margin: 0;
}

.section--promo-terms .features {
  display: grid;
  gap: 1rem;
}

.section--promo-terms .feature {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease), transform var(--ease);
}

.section--promo-terms .feature:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-3px);
}

.section--promo-terms .feature h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section--promo-terms .feature p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

html.js .section--animate:not(.is-inview) .promo-page-block__copy,
html.js .section--animate:not(.is-inview) .promo-page-block__media {
  opacity: 0;
  transform: translateY(14px);
}

html.js .section--animate.is-inview .promo-page-block__copy {
  animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

html.js .section--animate.is-inview .promo-page-block__media {
  animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

html.js .section--animate.is-inview .promo-terms .feature {
  animation: fadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

html.js .section--animate.is-inview .promo-terms .feature:nth-child(1) { animation-delay: 0.05s; }
html.js .section--animate.is-inview .promo-terms .feature:nth-child(2) { animation-delay: 0.12s; }
html.js .section--animate.is-inview .promo-terms .feature:nth-child(3) { animation-delay: 0.19s; }
html.js .section--animate.is-inview .promo-terms .feature:nth-child(4) { animation-delay: 0.26s; }

@media (min-width: 768px) {
  .promo-page-block {
    padding: 3.25rem 0;
  }

  .promo-page-block__inner {
    gap: 2rem;
  }

  .section--promo-terms .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .section--promo-terms .features {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Download App landing page */
.dl-hero {
  position: relative;
  padding: 2.75rem 0 3.25rem;
  overflow: hidden;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.dl-hero__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 80% 40%, rgba(212, 175, 55, 0.14), transparent 65%),
    radial-gradient(ellipse 45% 55% at 10% 85%, rgba(34, 197, 94, 0.06), transparent 60%);
}

/* Mobile-first: stack copy + visual. Two-column only from 768px up. */
.dl-hero__inner {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

.dl-hero__copy,
.dl-hero__visual {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.dl-hero__visual {
  margin-top: 2.5rem;
}

.dl-hero__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.625rem;
}

.dl-hero__title {
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.875rem;
}

.dl-hero__lead {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 52rem;
}

.dl-hero__platforms {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
}

.dl-hero__perks {
  list-style: none;
  display: grid;
  gap: 0.625rem;
  margin: 0 0 1.75rem;
  padding: 0;
}

.dl-hero__perks li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.dl-hero__perks li::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.45);
}

.dl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dl-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 11.5rem;
  padding: 0.75rem 1.125rem;
  text-decoration: none;
  color: var(--text);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.dl-store-btn:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.dl-store-btn--gold {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.06));
  border-color: rgba(212, 175, 55, 0.45);
}

.dl-store-btn small {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dl-store-btn strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
}

.dl-store-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: var(--gold-light);
}

.dl-hero__visual {
  display: flex;
  justify-content: center;
}

.dl-hero .phone-mockup--lg {
  max-width: min(280px, 100%);
  width: 100%;
}

/* About Us hero: hard mobile stack (beats any later grid rules) */
@media (max-width: 767px) {
  #au-hero .wrap.dl-hero__inner {
    display: block;
    width: 100%;
    max-width: var(--wrap);
    grid-template-columns: none;
    gap: 0;
  }

  #au-hero .dl-hero__copy {
    display: block;
    width: 100%;
    max-width: 100%;
    grid-column: auto;
  }

  #au-hero .dl-hero__visual {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin-top: 2.5rem;
    grid-column: auto;
  }
}

.dl-benefits {
  display: grid;
  gap: 1rem;
}

.dl-benefits .feature {
  padding: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease), transform var(--ease);
}

.dl-benefits .feature:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.dl-benefits .feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.dl-benefits .feature__icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.dl-carousel {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.dl-carousel__viewport {
  overflow: hidden;
}

.dl-carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.dl-carousel__slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 0.5rem;
}

.dl-carousel__phone {
  width: min(100%, 220px);
}

.dl-carousel__caption {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

.dl-carousel__btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.85);
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}

.dl-carousel__btn:hover {
  border-color: var(--border-hover);
  background: var(--bg-surface);
}

.dl-carousel__btn--prev { left: -0.25rem; }
.dl-carousel__btn--next { right: -0.25rem; }

.dl-carousel__btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

.dl-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.dl-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.35;
  cursor: pointer;
  transition: opacity var(--ease), transform var(--ease), background var(--ease);
}

.dl-carousel__dot.is-active {
  opacity: 1;
  background: var(--gold);
  transform: scale(1.2);
}

.dl-why__stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.dl-why__head {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.dl-why__head .section-title {
  font-size: clamp(1.5rem, 2.4vw, 2.125rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  max-width: 100%;
}

.dl-why__head .section-desc {
  max-width: 48rem;
}

.dl-why__head .section-desc + .section-desc {
  margin-top: 0.875rem;
}

.dl-why__visual {
  display: flex;
  justify-content: center;
  margin-inline: auto;
}

.dl-why__visual .phone-mockup--lg {
  max-width: 260px;
  width: 100%;
}

.dl-why__list {
  list-style: none;
  display: grid;
  gap: 0.875rem;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 36rem;
}

.dl-why__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.dl-why__check {
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  display: grid;
  place-items: center;
  margin-top: 0.125rem;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: #052e16;
  background: #22c55e;
}

.dl-security {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 175, 55, 0.1), transparent 70%),
    linear-gradient(160deg, #141414 0%, #0a0a0a 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.dl-security__title {
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.dl-security__grid {
  display: grid;
  gap: 1rem;
}

.dl-security__item {
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dl-security__item svg {
  width: 1.75rem;
  height: 1.75rem;
  margin: 0 auto 0.75rem;
  color: var(--gold-light);
}

.dl-security__item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.dl-security__item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.dl-cta {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
}

.dl-cta__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(212, 175, 55, 0.12), transparent 70%);
}

.dl-cta .games-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.dl-cta .games-cta__title {
  font-size: clamp(1.625rem, 4vw, 2.25rem);
}

.dl-cta .games-cta__bonus {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--gold-light);
}

html.js .section--animate:not(.is-inview) .dl-hero__copy,
html.js .section--animate:not(.is-inview) .dl-hero__visual,
html.js .section--animate:not(.is-inview) .dl-benefits .feature,
html.js .section--animate:not(.is-inview) .dl-why__head,
html.js .section--animate:not(.is-inview) .dl-why__visual,
html.js .section--animate:not(.is-inview) .dl-why__list {
  opacity: 0;
  transform: translateY(14px);
}

html.js .section--animate.is-inview .dl-hero__copy,
html.js .section--animate.is-inview .dl-hero__visual {
  animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

html.js .section--animate.is-inview .dl-hero__visual {
  animation-delay: 0.1s;
}

html.js .section--animate.is-inview .dl-benefits .feature {
  animation: fadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

html.js .section--animate.is-inview .dl-benefits .feature:nth-child(1) { animation-delay: 0.05s; }
html.js .section--animate.is-inview .dl-benefits .feature:nth-child(2) { animation-delay: 0.1s; }
html.js .section--animate.is-inview .dl-benefits .feature:nth-child(3) { animation-delay: 0.15s; }
html.js .section--animate.is-inview .dl-benefits .feature:nth-child(4) { animation-delay: 0.2s; }
html.js .section--animate.is-inview .dl-benefits .feature:nth-child(5) { animation-delay: 0.25s; }
html.js .section--animate.is-inview .dl-benefits .feature:nth-child(6) { animation-delay: 0.3s; }

html.js .section--animate.is-inview .dl-why__head {
  animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

html.js .section--animate.is-inview .dl-why__visual {
  animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

html.js .section--animate.is-inview .dl-why__list {
  animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
}

@media (min-width: 640px) {
  .dl-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .dl-security__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dl-carousel__btn--prev { left: -0.75rem; }
  .dl-carousel__btn--next { right: -0.75rem; }
}

@media (min-width: 768px) {
  .dl-hero {
    padding: 4rem 0 4.5rem;
  }

  .dl-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2.5rem;
    align-items: center;
  }

  .dl-hero__copy {
    max-width: none;
  }

  .dl-hero__visual {
    margin-top: 0;
  }

  .dl-hero .phone-mockup--lg {
    max-width: 300px;
  }
}

@media (min-width: 1024px) {
  .dl-benefits {
    grid-template-columns: repeat(4, 1fr);
  }

  .dl-carousel__phone {
    width: min(100%, 260px);
  }

  #dl-why .dl-why__head .section-desc {
    max-width: 56rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dl-carousel__track {
    transition: none;
  }

  html.js .section--animate.is-inview .dl-hero__copy,
  html.js .section--animate.is-inview .dl-hero__visual,
  html.js .section--animate.is-inview .dl-benefits .feature,
  html.js .section--animate.is-inview .dl-why__head,
  html.js .section--animate.is-inview .dl-why__visual,
  html.js .section--animate.is-inview .dl-why__list {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Casino Guide / About Us split sections (bilingual EN + ZH) */
.cg-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
  width: 100%;
  min-width: 0;
}

.cg-split__copy,
.cg-visual {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.cg-split__copy {
  max-width: 52rem;
}

.cg-split .provider-grid {
  width: 100%;
  max-width: min(56rem, 100%);
  margin-inline: auto;
  min-width: 0;
}

.cg-split__copy h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.875rem;
}

.cg-split__copy > p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.cg-steps {
  list-style: none;
  display: grid;
  gap: 0.875rem;
  margin: 0 0 1.25rem;
  padding: 0;
}

.cg-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.125rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--ease);
}

.cg-steps li:hover {
  border-color: var(--border-hover);
}

.cg-steps__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
}

.cg-steps__body strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.cg-steps__body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.cg-visual {
  display: flex;
  justify-content: center;
}

.cg-visual .phone-mockup--lg {
  max-width: min(260px, 100%);
  width: 100%;
}

@media (min-width: 768px) {
  .cg-split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
  }

  .cg-split--reverse {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .cg-split--reverse > .cg-split__copy {
    order: 2;
  }

  .cg-split--reverse > .cg-visual {
    order: 1;
  }

  .cg-split__copy {
    max-width: none;
  }
}

.cg-promo-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.cg-promo-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.cg-promo-banner + .phone-mockup--lg {
  margin-top: 1.25rem;
}

.cg-pay-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.cg-pay-strip img {
  height: 28px;
  width: auto;
  padding: 0.375rem 0.625rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  object-fit: contain;
}

.cg-game-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
  gap: 0.875rem;
  margin: 0 0 2rem;
}

.cg-game-showcase .game-card--grid {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color var(--ease), transform var(--ease);
}

.cg-game-showcase .game-card--grid:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.cg-why-grid {
  display: grid;
  gap: 1rem;
}

.cg-why-grid .feature {
  padding: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.cg-why-grid .feature h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cg-why-grid .feature p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.cg-section-desc {
  max-width: 48rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.cg-section-desc--spaced {
  margin-bottom: 2rem;
}

.cg-cta .games-cta__inner {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .cg-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cg-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cg-game-showcase {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* About Us page */
.au-overview {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  min-width: 0;
}

.au-overview p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.au-overview p:last-child {
  margin-bottom: 0;
}

.au-categories {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.au-category {
  padding: 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease), transform var(--ease);
}

.au-category:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.au-category__media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

.au-category__media img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.au-category h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.au-category p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.au-prose {
  max-width: 48rem;
}

.au-prose p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.au-prose p:last-child {
  margin-bottom: 0;
}

.au-prose a:not(.btn) {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 768px) {
  .au-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .au-categories {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Contact page */
.contact-hero {
  position: relative;
  padding: calc(var(--header) + 2.75rem) 0 3rem;
  overflow: hidden;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.contact-hero__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 50% 0%, rgba(212, 175, 55, 0.12), transparent 65%),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(38, 165, 228, 0.06), transparent 60%);
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  font-size: clamp(1.875rem, 4.5vw, 2.625rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.875rem;
}

.contact-hero__lead {
  max-width: 52rem;
  margin: 0 auto 1rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.contact-hero__lead--sub {
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.contact-hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.contact-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
}

.contact-hero__actions {
  display: grid;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
  text-align: left;
}

.contact-hero-action {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  padding: 1.375rem 1.5rem;
  text-decoration: none;
  color: inherit;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.09), transparent 58%),
    var(--bg-surface);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.contact-hero-action:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-3px);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(212, 175, 55, 0.1);
}

.contact-hero-action__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hero-action__icon img,
.contact-hero-action__icon svg {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.contact-hero-action__body {
  flex: 1;
  min-width: 0;
}

.contact-hero-action__name {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}

.contact-hero-action__desc {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-hero-action__arrow {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--gold);
  opacity: 0.75;
  transition: transform var(--ease), opacity var(--ease);
}

.contact-hero-action:hover .contact-hero-action__arrow {
  transform: translateX(4px);
  opacity: 1;
}

@media (min-width: 768px) {
  .contact-hero {
    padding: calc(var(--header) + 2.25rem) 0 2.5rem;
  }

  .contact-hero__actions {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.125rem;
  }

  .contact-hero-action {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.5rem 1.375rem;
    min-height: 11.5rem;
  }

  .contact-hero-action__arrow {
    align-self: flex-end;
    margin-top: auto;
  }
}

.contact-intro {
  max-width: 52rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.contact-intro p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.contact-intro p:last-child {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  text-decoration: none;
  color: inherit;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.contact-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.contact-card--priority {
  border-color: rgba(212, 175, 55, 0.32);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 55%),
    var(--bg-surface);
}

.contact-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card__icon img,
.contact-card__icon svg {
  width: 1.625rem;
  height: 1.625rem;
  object-fit: contain;
}

.contact-card__body {
  flex: 1;
  min-width: 0;
}

.contact-card__name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-card__desc {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-card__tag {
  display: inline-block;
  margin-top: 0.375rem;
  padding: 0.125rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  border-radius: 4px;
}

.contact-card__arrow {
  flex-shrink: 0;
  font-size: 1.125rem;
  color: var(--gold);
  opacity: 0.7;
  transition: transform var(--ease), opacity var(--ease);
}

.contact-card:hover .contact-card__arrow {
  transform: translateX(3px);
  opacity: 1;
}

.contact-support {
  position: relative;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.28);
  background:
    radial-gradient(ellipse 80% 80% at 100% 0%, rgba(212, 175, 55, 0.1), transparent 55%),
    var(--bg-surface);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.contact-support__head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.contact-support__head h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.625rem;
}

.contact-support__head p {
  max-width: 40rem;
  margin: 0 auto;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.contact-support__grid {
  display: grid;
  gap: 1rem;
}

.contact-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-surface);
}

.contact-table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.contact-table th,
.contact-table td {
  padding: 0.875rem 1.125rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.contact-table th {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}

.contact-table tr:last-child td {
  border-bottom: none;
}

.contact-table td {
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-table td:first-child {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.contact-table a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 500;
}

.contact-table a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-table__badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 4px;
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-support__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-topics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-support__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-topics {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Contact page SEO */
.contact-topics {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}

.contact-topic {
  padding: 1.25rem 1.375rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease), transform var(--ease);
}

.contact-topic:hover {
  border-color: rgba(212, 175, 55, 0.28);
  transform: translateY(-2px);
}

.contact-topic__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.875rem;
  border-radius: 10px;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.contact-topic__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-topic h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
}

.contact-topic p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.contact-seo__prose {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

.contact-seo__prose h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.75rem 0 0.75rem;
  letter-spacing: -0.01em;
}

.contact-seo__prose h3:first-child {
  margin-top: 0;
}

.contact-services {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-service {
  padding: 1.5rem 1.5rem 1.375rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease);
}

.contact-service:hover {
  border-color: rgba(212, 175, 55, 0.28);
}

.contact-service h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.625rem;
}

.contact-service p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 0.75rem;
}

.contact-service p:last-child {
  margin-bottom: 0;
}

.contact-service a:not(.btn) {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-service a:not(.btn):hover {
  color: #fff;
}

.contact-related {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem 1rem;
  margin: 2rem auto 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  max-width: 52rem;
}

.contact-related a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-light);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.06);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}

.contact-related a:hover {
  color: #fff;
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.12);
}

/* Payment Methods page */
.page-content--pm {
  padding-bottom: 2rem;
}

.pm-breadcrumb {
  margin-bottom: 1.25rem;
}

.pm-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
}

.pm-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.pm-breadcrumb li + li::before {
  content: '/';
  color: var(--text-muted);
  opacity: 0.6;
}

.pm-breadcrumb a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 500;
}

.pm-breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.pm-intro {
  max-width: 48rem;
  margin: 0 auto 2rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.14);
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(212, 175, 55, 0.06), transparent 60%),
    rgba(255, 255, 255, 0.02);
}

.pm-intro__title {
  margin: 0 0 0.75rem;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gold-light);
  line-height: 1.35;
}

.pm-intro p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.pm-lead {
  max-width: 40rem;
  margin: 0 0 2rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: center;
  margin-inline: auto;
}

.pm-block {
  margin-bottom: 2.75rem;
}

.pm-block--panel {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 100% 80% at 50% -20%, rgba(212, 175, 55, 0.06), transparent 55%),
    rgba(255, 255, 255, 0.02);
}

@media (min-width: 768px) {
  .pm-block--panel {
    padding: 1.75rem 1.5rem;
  }
}

.pm-block__title {
  font-size: clamp(1.0625rem, 2.2vw, 1.3125rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--gold-light);
}

.pm-vgrid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.pm-vcard {
  padding: 1.125rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.pm-vcard:hover {
  border-color: rgba(212, 175, 55, 0.32);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.pm-vcard__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pm-vcard__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.pm-vcard__logo img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.pm-vcard__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.3;
}

.pm-vcard__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pm-vcard__feat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.35;
}

.pm-vcard__feat.is-on {
  color: var(--text);
}

.pm-vcard__feat.is-off {
  color: var(--text-muted);
  opacity: 0.75;
}

.pm-vcard__feat.is-time {
  margin-top: 0.25rem;
  padding-top: 0.625rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--gold-light);
}

.pm-vcard__feat.is-min {
  color: var(--text-secondary);
  font-weight: 500;
}

.pm-vcard__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
}

.pm-vcard__feat.is-off .pm-vcard__mark {
  color: var(--text-muted);
}

.pm-vcard__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem 0.75rem;
  margin: 0;
}

.pm-vcard__meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.pm-vcard__meta dt {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pm-vcard__meta dd {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.pm-vcard__meta dd.is-yes {
  color: var(--gold-light);
}

.pm-flow {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: pmflow;
}

.pm-flow--timeline {
  position: relative;
}

@media (min-width: 640px) {
  .pm-flow {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.625rem;
  }

  .pm-flow--timeline::before {
    content: '';
    position: absolute;
    top: 1.75rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35) 15%, rgba(212, 175, 55, 0.35) 85%, transparent);
    pointer-events: none;
    z-index: 0;
  }
}

.pm-flow__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.625rem;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
  transition: border-color var(--ease), transform var(--ease);
}

.pm-flow__step:hover {
  border-color: rgba(212, 175, 55, 0.28);
  transform: translateY(-1px);
}

@media (min-width: 640px) {
  .pm-flow__step:not(:last-child)::after {
    display: none;
  }
}

.pm-flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #000;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.3);
}

.pm-flow__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.35;
}

.pm-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.pm-tabs__tab {
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  cursor: pointer;
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}

.pm-tabs__tab:hover {
  color: var(--text);
  border-color: rgba(212, 175, 55, 0.28);
}

.pm-tabs__tab[aria-selected='true'] {
  color: #000;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: transparent;
}

.pm-tabs__panel {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.18);
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(212, 175, 55, 0.08), transparent 60%),
    rgba(255, 255, 255, 0.03);
}

.pm-tabs__lead {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.pm-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-surface);
}

.pm-table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.pm-table th,
.pm-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pm-table thead th {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.06);
}

.pm-table tbody th {
  font-weight: 600;
  color: var(--text);
}

.pm-table tbody td {
  color: var(--text-secondary);
}

.pm-table tbody tr:last-child th,
.pm-table tbody tr:last-child td {
  border-bottom: none;
}

.pm-table tbody tr:hover td,
.pm-table tbody tr:hover th {
  background: rgba(255, 255, 255, 0.02);
}

.pm-banks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.pm-bank {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.125rem 0.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color var(--ease);
}

.pm-bank:hover {
  border-color: rgba(212, 175, 55, 0.28);
}

.pm-bank img {
  height: 2rem;
  width: auto;
  max-width: 5.5rem;
  object-fit: contain;
}

.pm-bank span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
}

.pm-security-compact {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-surface);
}

.pm-security-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.pm-security-list li {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
}

.pm-security-note {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.pm-shots {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.pm-shots--gallery {
  gap: 1rem;
}

.pm-shot {
  margin: 0;
  text-align: center;
}

.pm-shot__frame {
  display: flex;
  justify-content: center;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(212, 175, 55, 0.1), transparent 65%),
    rgba(0, 0, 0, 0.35);
}

.pm-shot__img {
  width: auto;
  height: 14rem;
  max-width: 72%;
  object-fit: contain;
  object-position: top center;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.pm-shot figcaption {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-light);
}

.pm-related {
  margin-top: 2rem;
}

.pm-seo-archive {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pm-seo-archive h2,
.pm-seo-archive p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.8;
}

@media (min-width: 600px) {
  .pm-vgrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pm-shots {
    grid-template-columns: repeat(3, 1fr);
  }

  .pm-shot__img {
    height: 12rem;
  }
}

@media (min-width: 768px) {
  .pm-banks {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 1024px) {
  .pm-vgrid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pm-vgrid .pm-vcard:nth-child(7) {
    grid-column: span 2;
  }

  .pm-shot__img {
    height: 15rem;
  }
}

@media (min-width: 768px) {
  .contact-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Responsible Gaming page */
.page-content--rg {
  padding-bottom: 0;
}

.page-hero--rg {
  padding-bottom: 1.75rem;
}

.page-hero--rg .page-hero__lead {
  margin-bottom: 1.25rem;
}

.rg-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.08);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.rg-hero-badge__icon {
  display: inline-flex;
  color: var(--gold);
}

.rg-hero-badge__icon svg {
  width: 1rem;
  height: 1rem;
}

.wrap--rg {
  max-width: 1000px;
}

.rg-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(212, 175, 55, 0.05), transparent 60%),
    rgba(255, 255, 255, 0.02);
}

.rg-intro {
  max-width: 42rem;
  margin: 0 auto 1.75rem;
  padding: 1.125rem 1.375rem;
  text-align: center;
  border-color: rgba(212, 175, 55, 0.14);
}

.rg-intro__title {
  margin: 0 0 0.625rem;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gold-light);
  line-height: 1.35;
}

.rg-intro p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.rg-intro strong {
  color: var(--text);
  font-weight: 600;
}

.rg-block {
  margin-bottom: 1.75rem;
}

.rg-block__title {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--gold-light);
  text-align: center;
}

.rg-block__lead {
  margin: 0 auto 1rem;
  max-width: 40rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.rg-block__lead strong {
  color: var(--text);
  font-weight: 600;
}

.rg-divider {
  height: 1px;
  margin: 0.25rem 0 1.75rem;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.25), transparent);
}

.rg-fgrid {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: 1fr;
}

.rg-fcard {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.125rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.rg-fcard:hover {
  border-color: rgba(212, 175, 55, 0.32);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.rg-fcard__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.rg-fcard__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.rg-fcard__title {
  margin: 0 0 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.rg-fcard__desc {
  margin: 0;
  margin-top: auto;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.rg-visual-banner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.22);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.4)),
    rgba(255, 255, 255, 0.02);
}

.rg-visual-banner__art {
  position: relative;
  display: flex;
  justify-content: center;
}

.rg-visual-banner__img {
  width: 100%;
  max-width: 20rem;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.rg-visual-banner__float {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(13, 13, 18, 0.85);
  color: var(--gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.rg-visual-banner__float--shield {
  top: 8%;
  left: 6%;
  width: 2.5rem;
  height: 2.5rem;
}

.rg-visual-banner__float--shield svg {
  width: 1.25rem;
  height: 1.25rem;
}

.rg-visual-banner__float--age {
  bottom: 14%;
  right: 8%;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--gold-light);
}

.rg-visual-banner__copy {
  text-align: center;
}

.rg-visual-banner__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.0625rem, 2.5vw, 1.3125rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gold-light);
}

.rg-visual-banner__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.rg-tgrid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

.rg-tcard {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1rem 1.125rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color var(--ease), transform var(--ease);
}

.rg-tcard:hover {
  border-color: rgba(212, 175, 55, 0.28);
  transform: translateY(-1px);
}

.rg-tcard__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.rg-tcard__icon svg {
  width: 1rem;
  height: 1rem;
}

.rg-tcard__title {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.rg-tcard__desc {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.rg-signs {
  display: grid;
  gap: 0.625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rg-sign {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}

.rg-sign__icon {
  flex-shrink: 0;
  display: flex;
  color: #e8a838;
}

.rg-sign__icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.rg-sign__text {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.rg-break {
  margin-bottom: 1.75rem;
  padding: 1.25rem 1.375rem;
  border-color: rgba(212, 175, 55, 0.18);
}

.rg-break__title {
  margin: 0 0 0.875rem;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 700;
  color: var(--gold-light);
  text-align: center;
}

.rg-break__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.625rem;
}

.rg-break__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.rg-break__icon {
  flex-shrink: 0;
  display: flex;
  color: var(--gold);
}

.rg-break__icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.rg-faq {
  max-width: 40rem;
  margin: 0 auto;
}

.rg-cta {
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

.rg-cta .games-cta__actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.rg-related {
  margin-bottom: 1.75rem;
}

@media (min-width: 600px) {
  .rg-fgrid--six {
    grid-template-columns: repeat(2, 1fr);
  }

  .rg-tgrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rg-signs {
    grid-template-columns: repeat(2, 1fr);
  }

  .rg-visual-banner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .rg-visual-banner__copy {
    text-align: left;
  }
}

@media (min-width: 900px) {
  .rg-fgrid--six {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .rg-hero-badges {
    gap: 0.75rem;
  }

  .rg-hero-badge {
    font-size: 0.8125rem;
    padding: 0.5625rem 1rem;
  }
}

/* Agent Program page */
.page-hero--ap .page-hero__lead {
  margin-bottom: 0.875rem;
  max-width: 44rem;
  margin-inline: auto;
}

.page-hero--ap .page-hero__lead strong,
.ap-hero__desc strong {
  color: var(--text);
  font-weight: 600;
}

.ap-hero__desc {
  margin: 0 auto 1.25rem;
  max-width: 44rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
  text-align: center;
}

.ap-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ap-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.08);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.ap-hero-badge__icon {
  display: inline-flex;
  color: var(--gold);
}

.ap-hero-badge__icon svg {
  width: 1rem;
  height: 1rem;
}

.wrap--ap {
  max-width: 1000px;
}

.wrap--ap-banner {
  max-width: 72rem;
  padding-inline: var(--gutter);
}

.ap-promo-banner {
  margin: 0 0 1.75rem;
  padding-top: 0.25rem;
}

.ap-promo-banner__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.ap-promo-banner__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.22);
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(212, 175, 55, 0.08), transparent 65%),
    #0a100c;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color var(--ease),
    box-shadow var(--ease),
    transform var(--ease);
}

.ap-promo-banner__link:hover .ap-promo-banner__frame,
.ap-promo-banner__link:focus-visible .ap-promo-banner__frame {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

.ap-promo-banner__picture {
  display: block;
  width: 100%;
  line-height: 0;
}

.ap-promo-banner__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center top;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ap-promo-banner__link:hover .ap-promo-banner__img,
.ap-promo-banner__link:focus-visible .ap-promo-banner__img {
  transform: scale(1.015);
}

@media (max-width: 767px) {
  .ap-promo-banner__frame {
    background: #0d0d12;
  }

  .ap-promo-banner__img {
    object-fit: contain;
    object-position: center center;
  }

  .ap-promo-banner__link:hover .ap-promo-banner__img,
  .ap-promo-banner__link:focus-visible .ap-promo-banner__img {
    transform: none;
  }
}

.ap-promo-banner__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}

.ap-promo-banner__link:hover .ap-promo-banner__shine,
.ap-promo-banner__link:focus-visible .ap-promo-banner__shine {
  opacity: 1;
}

.ap-promo-banner__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0.875rem 0 0;
  padding: 0;
}

.ap-promo-banner__chip {
  padding: 0.4375rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: rgba(212, 175, 55, 0.07);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
  transition:
    border-color var(--ease),
    background var(--ease),
    transform var(--ease);
}

.ap-promo-banner__link:hover + .ap-promo-banner__chips .ap-promo-banner__chip,
.ap-promo-banner__chips:hover .ap-promo-banner__chip {
  border-color: rgba(212, 175, 55, 0.32);
}

.ap-promo-banner:hover .ap-promo-banner__chip {
  transform: translateY(-1px);
}

.ap-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(212, 175, 55, 0.05), transparent 60%),
    rgba(255, 255, 255, 0.02);
}

.ap-block {
  margin-bottom: 1.75rem;
}

.ap-block--panel {
  padding: 1.25rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.ap-block__title {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--gold-light);
  text-align: center;
}

.ap-divider {
  height: 1px;
  margin: 0.25rem 0 1.75rem;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.25), transparent);
}

.ap-why-grid {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: 1fr;
}

.ap-why,
.ap-benefit {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.125rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.ap-why:hover,
.ap-benefit:hover {
  border-color: rgba(212, 175, 55, 0.32);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.ap-why__icon,
.ap-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.ap-why__icon svg,
.ap-benefit__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.ap-why__title,
.ap-benefit__title {
  margin: 0 0 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.ap-why__desc,
.ap-benefit__desc {
  margin: 0;
  margin-top: auto;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.ap-benefits-grid {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: 1fr;
}

.ap-flow {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ap-flow--timeline {
  position: relative;
}

.ap-flow__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.625rem;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
  transition: border-color var(--ease), transform var(--ease);
}

.ap-flow__step:hover {
  border-color: rgba(212, 175, 55, 0.28);
  transform: translateY(-1px);
}

.ap-flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #000;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.3);
}

.ap-flow__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.ap-seo {
  margin-bottom: 1.75rem;
  padding: 1.25rem 1rem;
  border-color: rgba(212, 175, 55, 0.12);
}

.ap-seo__title {
  margin: 0 0 1rem;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gold-light);
  text-align: center;
  line-height: 1.35;
}

.ap-seo__grid {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: 1fr;
}

.ap-seo__block {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
}

.ap-seo__heading {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: -0.01em;
}

.ap-seo__block p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.ap-seo__block strong {
  color: var(--text);
  font-weight: 600;
}

.ap-faq {
  max-width: 40rem;
  margin: 0 auto;
}

.ap-cta {
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

.ap-cta .games-cta__actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.ap-related {
  margin-bottom: 1.75rem;
}

@media (min-width: 600px) {
  .ap-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ap-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ap-seo__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ap-block--panel {
    padding: 1.5rem;
  }
}

@media (min-width: 640px) {
  .ap-flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.625rem;
  }

  .ap-flow--timeline::before {
    content: '';
    position: absolute;
    top: 1.75rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35) 12%, rgba(212, 175, 55, 0.35) 88%, transparent);
    pointer-events: none;
    z-index: 0;
  }
}

@media (min-width: 900px) {
  .ap-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .ap-hero-badges {
    gap: 0.75rem;
  }

  .ap-hero-badge {
    font-size: 0.8125rem;
    padding: 0.5625rem 1rem;
  }
}

/* Bilingual typography — Chinese-optimized layouts */
html[lang='zh-Hans'] {
  line-height: 1.75;
}

html[lang='zh-Hans'] body {
  word-break: normal;
  overflow-wrap: break-word;
  line-break: strict;
}

html[lang='zh-Hans'] .wrap--seo {
  max-width: 72rem;
}

html[lang='zh-Hans'] .page-hero__lead,
html[lang='zh-Hans'] .ap-hero__desc,
html[lang='zh-Hans'] .rg-intro p,
html[lang='zh-Hans'] .rg-block__lead,
html[lang='zh-Hans'] .rg-visual-banner__desc,
html[lang='zh-Hans'] .rg-fcard__desc,
html[lang='zh-Hans'] .rg-tcard__desc,
html[lang='zh-Hans'] .rg-sign__text,
html[lang='zh-Hans'] .rg-break__item,
html[lang='zh-Hans'] .games-cta__lead {
  line-height: 1.9;
  letter-spacing: 0.02em;
}

html[lang='zh-Hans'] .wrap--rg {
  max-width: 72rem;
}

html[lang='zh-Hans'] .rg-intro {
  max-width: 52rem;
}

html[lang='zh-Hans'] .rg-hero-badge {
  white-space: normal;
  text-align: center;
  justify-content: center;
  min-width: 5.5rem;
}

html[lang='zh-Hans'] .rg-fgrid--six {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  html[lang='zh-Hans'] .rg-fgrid--six {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  html[lang='zh-Hans'] .rg-fgrid--six {
    grid-template-columns: repeat(3, 1fr);
  }
}

html[lang='zh-Hans'] .rg-signs {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  html[lang='zh-Hans'] .rg-signs {
    grid-template-columns: repeat(2, 1fr);
  }
}

html[lang='zh-Hans'] .rg-visual-banner__title,
html[lang='zh-Hans'] .rg-block__title,
html[lang='zh-Hans'] .rg-intro__title {
  letter-spacing: 0.04em;
}

html[lang='zh-Hans'] .page-content,
html[lang='zh-Hans'] .seo-content,
html[lang='zh-Hans'] .faq-intro,
html[lang='zh-Hans'] .contact-intro p,
html[lang='zh-Hans'] .pm-intro p {
  line-height: 1.9;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  html[lang='zh-Hans'] .page-hero h1 {
    max-width: 18em;
    margin-inline: auto;
  }

  html[lang='zh-Hans'] .page-hero--ap h1 {
    max-width: 14em;
  }
}

html[lang='zh-Hans'] .wrap--ap {
  max-width: 72rem;
}

html[lang='zh-Hans'] .ap-hero-badge {
  white-space: normal;
  text-align: center;
  justify-content: center;
  min-width: 5.5rem;
}

html[lang='zh-Hans'] .ap-promo-banner__chip {
  white-space: normal;
  text-align: center;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.75rem;
  min-width: 4.5rem;
}

html[lang='zh-Hans'] .wrap--ap-banner {
  max-width: 76rem;
}

html[lang='zh-Hans'] .ap-why__desc,
html[lang='zh-Hans'] .ap-benefit__desc,
html[lang='zh-Hans'] .ap-seo__block p,
html[lang='zh-Hans'] .ap-flow__label {
  line-height: 1.9;
  letter-spacing: 0.02em;
}

html[lang='zh-Hans'] .ap-block__title,
html[lang='zh-Hans'] .ap-seo__title,
html[lang='zh-Hans'] .ap-seo__heading {
  letter-spacing: 0.04em;
}

html[lang='zh-Hans'] .ap-benefits-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  html[lang='zh-Hans'] .ap-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  html[lang='zh-Hans'] .ap-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nw-featured__layout {
  display: grid;
  gap: 0;
}

.nw-featured__media-link {
  display: block;
  position: relative;
  text-decoration: none;
}

.nw-featured__body {
  padding: 1.25rem 1.375rem 1.5rem;
}

.nw-featured__title a {
  color: inherit;
  text-decoration: none;
}

.nw-featured__title a:hover {
  color: var(--gold-light);
}

.nw-featured__long {
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.nw-featured__long p {
  margin: 0 0 0.75rem;
}

.nw-featured__long p:last-child {
  margin-bottom: 0;
}

.nw-featured__long strong {
  color: var(--text);
  font-weight: 600;
}

.nw-featured__meta-grid {
  display: grid;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.nw-featured__meta {
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
}

.nw-featured__meta--full {
  grid-column: 1 / -1;
}

.nw-featured__meta-title {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-light);
}

.nw-featured__meta p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.nw-featured__list {
  margin: 0;
  padding-left: 1.125rem;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.nw-featured__list li {
  margin-bottom: 0.375rem;
}

.nw-featured__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.nw-grid__count {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.nw-faq {
  max-width: 44rem;
  margin: 0 auto;
}

.nw-follow {
  margin-bottom: 1.75rem;
  padding: 1.5rem 1.375rem;
  border-color: rgba(212, 175, 55, 0.14);
}

.nw-follow__title {
  margin: 0 0 1rem;
  font-size: clamp(1.0625rem, 2.4vw, 1.375rem);
  font-weight: 700;
  text-align: center;
  color: var(--gold-light);
}

.nw-follow__content p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 52rem;
  margin-inline: auto;
}

.nw-follow__content p:last-child {
  margin-bottom: 0;
}

.nw-follow__content strong {
  color: var(--text);
  font-weight: 600;
}

.nw-follow__cta {
  margin-top: 1.25rem;
  justify-content: center;
}

.nw-article__content h2 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: -0.01em;
}

.nw-article__content h2:first-child {
  margin-top: 0;
}

@media (min-width: 600px) {
  .nw-featured__layout {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }

  .nw-featured__meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .nw-featured__layout {
    grid-template-columns: 1fr 1.1fr;
  }
}

html[lang='zh-Hans'] .nw-featured__long,
html[lang='zh-Hans'] .nw-follow__content p,
html[lang='zh-Hans'] .nw-featured__meta p,
html[lang='zh-Hans'] .nw-featured__list {
  line-height: 1.9;
  letter-spacing: 0.02em;
}

html[lang='zh-Hans'] .nw-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  html[lang='zh-Hans'] .nw-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  html[lang='zh-Hans'] .nw-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

html[lang='zh-Hans'] .ap-flow__label {
  font-size: 0.875rem;
}

/* News Centre */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-hero--nw .page-hero__lead {
  margin-bottom: 1rem;
  max-width: 46rem;
  margin-inline: auto;
}

.page-hero--nw .page-hero__lead strong {
  color: var(--text);
  font-weight: 600;
}

.nw-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nw-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.08);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
}

.nw-hero-badge__icon {
  color: var(--gold);
  font-weight: 700;
}

.wrap--nw {
  max-width: 72rem;
}

.nw-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(212, 175, 55, 0.05), transparent 60%),
    rgba(255, 255, 255, 0.02);
}

.nw-intro {
  margin-bottom: 1.75rem;
  padding: 1.25rem 1.375rem;
  border-color: rgba(212, 175, 55, 0.14);
}

.nw-intro__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1rem, 2.2vw, 1.1875rem);
  font-weight: 700;
  color: var(--gold-light);
  text-align: center;
}

.nw-intro p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-secondary);
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
}

.nw-intro p:last-child {
  margin-bottom: 0;
}

.nw-intro strong {
  color: var(--text);
  font-weight: 600;
}

.nw-block {
  margin-bottom: 1.75rem;
}

.nw-block__title {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--gold-light);
  text-align: center;
}

.nw-featured {
  margin-bottom: 1.75rem;
}

.nw-featured__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(0, 0, 0, 0.35);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.nw-featured__card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.nw-featured__link {
  display: grid;
  text-decoration: none;
  color: inherit;
}

.nw-featured__media {
  position: relative;
  overflow: hidden;
}

.nw-featured__picture,
.nw-featured__img,
.nw-card__picture,
.nw-card__img,
.nw-article__picture,
.nw-article__img {
  display: block;
  width: 100%;
}

.nw-featured__img,
.nw-card__img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease);
}

.nw-featured__link:hover .nw-featured__img {
  transform: scale(1.04);
}

.nw-featured__badge,
.nw-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3125rem 0.625rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.nw-featured__body {
  padding: 1.25rem 1.375rem 1.5rem;
}

.nw-featured__date,
.nw-card__date {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.nw-featured__title {
  margin: 0 0 0.625rem;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.nw-featured__excerpt {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.nw-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.nw-tabs__btn {
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}

.nw-tabs__btn:hover,
.nw-tabs__btn.is-active {
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
}

.nw-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.nw-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.nw-card:hover {
  border-color: rgba(212, 175, 55, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.nw-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.nw-card__media {
  position: relative;
  overflow: hidden;
}

.nw-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem;
}

.nw-card__title {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.nw-card__excerpt {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-secondary);
  flex: 1;
}

.nw-card__more {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}

.nw-card--compact .nw-card__body {
  padding: 0.875rem 1rem;
}

.nw-card--compact .nw-card__title {
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}

.nw-why-grid {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: 1fr;
}

.nw-why {
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.nw-why__title {
  margin: 0 0 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-light);
}

.nw-why__desc {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.nw-cta {
  margin-bottom: 1.5rem;
}

.nw-related {
  margin-bottom: 1.75rem;
}

/* Article pages */
.wrap--nw-article {
  max-width: 48rem;
}

.nw-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nw-breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.nw-breadcrumb a:hover {
  text-decoration: underline;
}

.nw-article__hero {
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.nw-article__badge {
  display: inline-block;
  margin-bottom: 0.625rem;
  padding: 0.3125rem 0.625rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.08);
}

.nw-article__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.nw-article__date {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.nw-article__banner {
  margin-top: 1rem;
}

.nw-article__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.nw-article__img {
  width: 100%;
  height: auto;
  display: block;
}

.nw-article__content {
  margin-bottom: 1.5rem;
}

.nw-article__content p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.nw-article__content p:last-child {
  margin-bottom: 0;
}

.nw-article__content strong {
  color: var(--text);
  font-weight: 600;
}

.nw-article__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.nw-grid--related {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .nw-featured__link {
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
  }

  .nw-featured__img {
    aspect-ratio: auto;
    min-height: 100%;
  }

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

  .nw-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nw-grid--related {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .nw-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nw-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .nw-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

html[lang='zh-Hans'] .nw-hero-badge {
  white-space: normal;
  text-align: center;
  justify-content: center;
}

html[lang='zh-Hans'] .nw-intro p,
html[lang='zh-Hans'] .nw-card__excerpt,
html[lang='zh-Hans'] .nw-article__content p {
  line-height: 1.9;
  letter-spacing: 0.02em;
}

html[lang='zh-Hans'] .nw-tabs__btn {
  font-size: 0.8125rem;
}

/* Game SEO landing pages */
.page-game {
  background: var(--bg);
}

.gs-breadcrumb {
  padding: 1rem 0 0;
}

.gs-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.gs-breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  opacity: 0.45;
}

.gs-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.gs-breadcrumb a:hover {
  color: var(--gold);
}

.gs-hero {
  padding: 1.5rem 0 2.5rem;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.06) 0%, transparent 100%);
}

.gs-hero__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .gs-hero__inner {
    grid-template-columns: minmax(200px, 280px) 1fr;
    gap: 2.5rem;
  }
}

.gs-hero__media {
  margin-inline: auto;
  max-width: 280px;
}

.gs-hero__img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.gs-hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  color: var(--text);
}

.gs-hero__lead {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 40rem;
}

.gs-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.25rem;
  margin: 0 0 1.5rem;
  padding: 1rem 1.125rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

@media (min-width: 640px) {
  .gs-meta {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gs-meta dt {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.gs-meta dd {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.gs-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gs-article {
  padding-bottom: 2rem;
}

.gs-prose {
  max-width: 48rem;
}

.gs-block {
  margin-bottom: 2.5rem;
}

.gs-block__title {
  margin: 0 0 1rem;
  font-size: 1.375rem;
  color: var(--text);
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.gs-prose p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.gs-prose a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gs-prose a:hover {
  color: var(--gold);
}

.gs-subhead {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.0625rem;
  color: var(--gold-light);
}

.gs-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.gs-faq__item {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.gs-faq__q {
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.gs-faq__q::-webkit-details-marker {
  display: none;
}

.gs-faq__a {
  padding: 0 1rem 0.875rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.gs-faq__a p {
  margin: 0;
}

.gs-related {
  padding: 2.5rem 0;
}

.gs-related__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .gs-related__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gs-related-card__link {
  display: block;
  height: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.gs-related-card__link:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

.gs-related-card__media {
  padding: 0.75rem 0.75rem 0;
}

.gs-related-card__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.gs-related-card__body {
  padding: 0.75rem;
}

.gs-related-card__title {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
  color: var(--text);
}

.gs-related-card__desc {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gs-related-card__more {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}

.gs-final-cta {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.08) 100%);
}

.gs-final-cta__inner {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.gs-final-cta__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
}

.gs-final-cta__desc {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.gs-final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

