@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,600;1,700&family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap");

:root {
  --black: #070604;
  --black-2: #0d0c09;
  --black-3: #14120d;
  --panel: rgba(18, 16, 11, 0.86);
  --panel-strong: #15120c;
  --gold: #d6a81c;
  --gold-bright: #f4d36f;
  --gold-dark: #8e6700;
  --gold-soft: rgba(214, 168, 28, 0.16);
  --white: #f7f4eb;
  --muted: #99958b;
  --line: rgba(215, 177, 65, 0.18);
  --line-strong: rgba(215, 177, 65, 0.42);
  --green: #48df92;
  --font-display: "Outfit", sans-serif;
  --font-hero: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -15%, rgba(214, 168, 28, 0.08), transparent 34%),
    var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: -100px;
  padding: 12px 18px;
  background: var(--gold);
  color: #090704;
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-top: 2px solid var(--gold-dark);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 6, 4, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 48px), var(--container));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 118px;
  height: 68px;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 5px 12px rgba(218, 169, 31, 0.15));
}

.footer-brand .brand-logo {
  width: 148px;
  height: 86px;
}

.brand-crown {
  position: relative;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  transform: rotate(45deg);
  border: 1px solid var(--line-strong);
  color: var(--gold-bright);
  background: linear-gradient(145deg, rgba(214, 168, 28, 0.19), rgba(214, 168, 28, 0.02));
  box-shadow: inset 0 0 16px rgba(244, 211, 111, 0.08);
  font-size: 10px;
}

.brand-crown::before,
.brand-crown::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold);
}

.brand-crown::before {
  top: 4px;
  left: 4px;
}

.brand-crown::after {
  right: 4px;
  bottom: 4px;
}

.brand-crown + .brand-name {
  transform: none;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-name span {
  color: var(--gold-bright);
}

.main-nav {
  display: flex;
  align-items: stretch;
  gap: 28px;
  align-self: stretch;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  display: grid;
  place-items: center;
  color: #aaa69c;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -1px;
  height: 2px;
  background: var(--gold);
  transition: left 0.2s ease, right 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
  left: 0;
  right: 0;
}

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

.language-link {
  min-height: 39px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.language-link img {
  width: 20px;
  height: 14px;
  object-fit: cover;
}

.button {
  min-height: 48px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button-small {
  min-height: 39px;
  padding: 0 18px;
  font-size: 10px;
}

.button-gold {
  border-color: #e6c24e;
  background: linear-gradient(135deg, #b27b00, #e1b92e 54%, #f2d675);
  color: #0c0902;
  box-shadow: 0 12px 35px rgba(214, 168, 28, 0.18);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: linear-gradient(135deg, #d09607, #f2ce4d 58%, #fff0a1);
  box-shadow: 0 14px 44px rgba(214, 168, 28, 0.29);
}

.button-outline,
.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.015);
  color: var(--white);
}

.button-outline:hover,
.button-outline:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.menu-toggle {
  display: none;
  width: 43px;
  height: 43px;
  margin-left: auto;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 42%, rgba(246, 201, 67, 0.18) 0%, rgba(141, 86, 3, 0.08) 27%, transparent 55%),
    radial-gradient(circle at 36% 110%, rgba(155, 76, 0, 0.16), transparent 42%),
    linear-gradient(100deg, rgba(4, 4, 3, 0.995) 0%, rgba(6, 5, 3, 0.97) 43%, rgba(10, 8, 3, 0.76) 72%, rgba(5, 5, 4, 0.94) 100%),
    #050403;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 0 47%, rgba(244, 211, 111, 0.09) 47.15% 47.4%, transparent 47.55% 100%),
    linear-gradient(118deg, transparent 0 66%, rgba(214, 168, 28, 0.055) 66.15% 66.7%, transparent 66.85% 100%),
    repeating-linear-gradient(118deg, transparent 0 72px, rgba(255, 219, 112, 0.018) 73px, transparent 74px 148px);
  mask-image: linear-gradient(90deg, transparent 5%, black 42%, black 100%);
}

.hero::after {
  content: "ETBET888";
  position: absolute;
  z-index: 0;
  right: -0.04em;
  bottom: -0.2em;
  color: transparent;
  font-family: var(--font-hero);
  font-size: clamp(180px, 25vw, 390px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.055em;
  -webkit-text-stroke: 1px rgba(244, 211, 111, 0.032);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(214, 168, 28, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 168, 28, 0.07) 1px, transparent 1px),
    radial-gradient(circle, rgba(244, 211, 111, 0.15) 1px, transparent 1.5px);
  background-size: 48px 48px, 48px 48px, 24px 24px;
  mask-image: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0.75) 48%, transparent 92%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-one {
  width: 520px;
  height: 520px;
  top: -210px;
  right: 1%;
  background: rgba(214, 168, 28, 0.2);
}

.hero-glow-two {
  width: 360px;
  height: 360px;
  bottom: -150px;
  left: 28%;
  background: rgba(157, 74, 0, 0.18);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--container));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding: 88px 0 84px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 46px;
  right: -80px;
  bottom: 46px;
  left: -100vw;
  border-right: 1px solid rgba(244, 211, 111, 0.12);
  background: linear-gradient(90deg, rgba(5, 4, 2, 0.72), rgba(8, 7, 4, 0.44) 82%, transparent);
  box-shadow: 42px 0 90px rgba(0, 0, 0, 0.2);
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 22px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-hero);
  font-size: clamp(62px, 6.5vw, 98px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.82;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 .hero-title-brand {
  margin-bottom: 0.08em;
  color: #fff8df;
  font-size: 0.56em;
  font-weight: 700;
  letter-spacing: 0.115em;
  line-height: 1;
  text-shadow: 0 8px 35px rgba(0, 0, 0, 0.45);
}

.hero h1 .hero-title-main {
  color: var(--white);
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.52);
}

.hero h1 em {
  color: #f5cc4e;
  font-style: normal;
  letter-spacing: 0.01em;
  text-shadow: 0 0 46px rgba(214, 168, 28, 0.22), 0 10px 42px rgba(0, 0, 0, 0.58);
}

.hero-description {
  max-width: 610px;
  margin: 30px 0 0;
  color: #c3beb1;
  font-size: 16px;
  line-height: 1.78;
}

.hero-actions {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #7e7a71;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-width: 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 610px;
  height: 610px;
  top: 45px;
  left: 1%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 221, 115, 0.08) 0 18%, transparent 43%),
    repeating-conic-gradient(from 18deg, rgba(244, 211, 111, 0.085) 0 1deg, transparent 1deg 20deg);
  mask-image: radial-gradient(circle, transparent 0 42%, black 43% 72%, transparent 73%);
  opacity: 0.72;
}

.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 440px;
  height: 170px;
  right: -40px;
  bottom: 65px;
  transform: rotate(-13deg);
  background: linear-gradient(90deg, transparent, rgba(244, 211, 111, 0.11), transparent);
  filter: blur(16px);
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  width: 560px;
  height: 560px;
  top: 78px;
  left: 6%;
  border: 1px solid rgba(244, 211, 111, 0.24);
  border-radius: 50%;
  box-shadow:
    inset 0 0 90px rgba(214, 168, 28, 0.045),
    0 0 0 58px rgba(214, 168, 28, 0.024),
    0 0 0 116px rgba(214, 168, 28, 0.015);
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 22px var(--gold);
}

.hero-orbit::before {
  width: 7px;
  height: 7px;
  left: 56px;
  top: 87px;
}

.hero-orbit::after {
  width: 5px;
  height: 5px;
  right: 38px;
  bottom: 116px;
}

.hero-model {
  position: absolute;
  z-index: 2;
  width: min(500px, 72%);
  max-height: 690px;
  right: 8%;
  bottom: 0;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 32px 48px rgba(0, 0, 0, 0.5));
}

.stat-card {
  position: absolute;
  z-index: 4;
  min-width: 146px;
  padding: 19px 18px 17px;
  border: 1px solid rgba(244, 211, 111, 0.32);
  border-left: 3px solid var(--gold);
  background: linear-gradient(145deg, rgba(25, 21, 11, 0.92), rgba(7, 7, 5, 0.82));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 237, 171, 0.04);
  backdrop-filter: blur(13px);
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.08em;
}

.stat-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.stat-card-one {
  top: 120px;
  right: 0;
}

.stat-card-two {
  top: 278px;
  right: -20px;
}

.stat-card-three {
  right: 15px;
  bottom: 116px;
}

.ticker {
  position: relative;
  z-index: 5;
  height: 45px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0b0905;
  color: #817d73;
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 80px;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, #0b0905, transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(-90deg, #0b0905, transparent);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  padding: 0 42px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.ticker-track span::before {
  content: "✦";
  margin-right: 18px;
  color: var(--gold);
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #0d0c09;
}

.trust-card {
  min-height: 128px;
  padding: 26px 38px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line);
  transition: background 0.2s ease;
}

.trust-card:last-child {
  border-right: 0;
}

.trust-card:hover,
.trust-card:focus-visible {
  background: var(--gold-soft);
}

.trust-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--gold-bright);
  background:
    linear-gradient(135deg, rgba(214, 168, 28, 0.12), transparent 62%),
    rgba(214, 168, 28, 0.025);
  box-shadow: inset 0 0 20px rgba(214, 168, 28, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.trust-card:hover .trust-icon,
.trust-card:focus-visible .trust-icon {
  transform: translateY(-2px);
  border-color: var(--gold-bright);
  background: rgba(214, 168, 28, 0.14);
}

.line-icon {
  position: relative;
  width: 26px;
  height: 26px;
  display: block;
  color: currentColor;
}

.line-icon-user::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 8px;
  top: 1px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}

.line-icon-user::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 10px;
  left: 2.5px;
  bottom: 1px;
  border: 1.7px solid currentColor;
  border-radius: 12px 12px 3px 3px;
}

.line-icon-user i {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  right: 0;
  top: 7px;
  border-radius: 50%;
  background: #171207;
  box-shadow: 0 0 0 1px rgba(214, 168, 28, 0.18);
}

.line-icon-user i::before,
.line-icon-user i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.line-icon-user i::before {
  width: 6px;
  height: 1.5px;
}

.line-icon-user i::after {
  width: 1.5px;
  height: 6px;
}

.line-icon-hub {
  width: 23px;
  height: 23px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.line-icon-hub i {
  position: relative;
  border: 1.6px solid currentColor;
  transition: background 0.2s ease;
}

.line-icon-hub i:nth-child(2) {
  border-radius: 50%;
}

.line-icon-hub i:nth-child(3) {
  transform: rotate(45deg) scale(0.78);
}

.line-icon-hub i:nth-child(4) {
  background: currentColor;
  box-shadow: 0 0 10px rgba(244, 211, 111, 0.35);
}

.line-icon-headset::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 18px;
  left: 3px;
  top: 2px;
  border: 1.7px solid currentColor;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.line-icon-headset::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 10px;
  left: 1px;
  top: 13px;
  border: 1.7px solid currentColor;
  border-radius: 4px 0 0 4px;
  box-shadow: 19px 0 0 -1.7px #171207, 19px 0 0 0 currentColor;
}

.line-icon-headset i {
  position: absolute;
  width: 8px;
  height: 6px;
  right: 1px;
  bottom: 0;
  border-bottom: 1.7px solid currentColor;
  border-radius: 0 0 8px 0;
}

.line-icon-headset i::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  right: -1px;
  bottom: -2px;
  border-radius: 50%;
  background: currentColor;
}

.line-icon-cards::before,
.line-icon-cards::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 13px;
  border: 1.7px solid currentColor;
  border-radius: 2px;
}

.line-icon-cards::before {
  left: 1px;
  top: 4px;
  transform: rotate(-8deg);
  opacity: 0.55;
}

.line-icon-cards::after {
  right: 1px;
  bottom: 3px;
  background: #18140a;
  box-shadow: 0 0 18px rgba(214, 168, 28, 0.08);
}

.line-icon-cards i {
  position: absolute;
  z-index: 2;
  width: 5px;
  height: 5px;
  right: 7px;
  bottom: 8px;
  transform: rotate(45deg);
  border: 1.4px solid currentColor;
}

.line-icon-play::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 13px rgba(214, 168, 28, 0.08);
}

.line-icon-play::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 7px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

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

.trust-card strong {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.03em;
}

.trust-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.trust-card b {
  color: var(--gold);
  font-size: 18px;
}

.section {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 110px 0;
}

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

.section-heading.centered {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.section-heading h2,
.promotion h2,
.seo-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.section-heading > p:last-child,
.section-heading.centered > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.process-section {
  position: relative;
}

.process-section .section-heading {
  margin-bottom: 72px;
}

.process-section .section-heading h2 em {
  color: var(--gold);
  font-style: normal;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  overflow: visible;
}

.process-card {
  position: relative;
  min-height: 250px;
  padding: 40px 25px 30px;
  border-right: 1px solid var(--line);
  background: #10100e;
  text-align: center;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.process-card:last-child {
  border-right: 0;
}

.process-card:hover {
  z-index: 1;
  border-color: rgba(216, 168, 28, 0.58);
  background: linear-gradient(145deg, #17150f, #10100e);
  transform: translateY(-3px);
}

.process-number {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--gold);
  color: #0b0902;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 0 0 5px var(--black), 0 5px 18px rgba(0, 0, 0, 0.45);
}

.process-symbol {
  width: 62px;
  height: 62px;
  margin: 7px auto 22px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.process-symbol img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.45));
}

.process-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.process-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.process-card::after {
  display: none;
}

.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.process-cta .button {
  min-width: 205px;
}

.game-section {
  border-top: 1px solid var(--line);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.game-tabs {
  display: flex;
  border: 1px solid var(--line);
}

.game-tabs button {
  min-height: 42px;
  padding: 0 20px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.game-tabs button:last-child {
  border-right: 0;
}

.game-tabs button.active,
.game-tabs button:hover,
.game-tabs button:focus-visible {
  background: var(--gold);
  color: #0b0802;
}

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

.game-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.game-card[hidden] {
  display: none;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
}

.game-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.game-art {
  position: relative;
  min-height: 250px;
  display: grid;
  place-items: end center;
  overflow: hidden;
  background:
    linear-gradient(rgba(214, 168, 28, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 168, 28, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 65%, rgba(214, 168, 28, 0.24), transparent 46%),
    #0a0906;
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.game-card-wide .game-art {
  min-height: 428px;
}

.game-art::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(transparent, rgba(6, 5, 3, 0.8));
}

.game-art img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 95%;
  height: 92%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.5));
}

.game-badge {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  padding: 5px 9px;
  border: 1px solid var(--line-strong);
  background: rgba(7, 6, 4, 0.78);
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.game-content {
  padding: 26px;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
}

.game-content p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.game-content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.game-content > span {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.game-content a {
  margin-top: 25px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.experience-section {
  border-top: 1px solid var(--line);
}

.experience-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.experience-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.experience-heading h2 em {
  color: var(--gold);
  font-style: normal;
}

.experience-heading > p {
  margin: 0 0 5px;
  padding-left: 26px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

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

.experience-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #090907;
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.22);
}

.experience-card-casino {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.experience-card-sports {
  grid-column: 8 / 13;
  grid-row: 1;
}

.experience-card-slots {
  grid-column: 8 / 13;
  grid-row: 2;
}

.experience-card-lottery {
  grid-column: 1 / 6;
  grid-row: 3;
}

.experience-card-vip {
  grid-column: 6 / 13;
  grid-row: 3;
}

.experience-card > a {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.35s ease;
}

.experience-card-casino img {
  object-position: center 28%;
}

.experience-card-sports img {
  object-position: center 38%;
}

.experience-card-slots img {
  object-position: center 45%;
}

.experience-card-lottery img {
  object-position: center 42%;
}

.experience-card-vip img {
  object-position: center 35%;
}

.experience-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 4, 3, 0.08) 20%, rgba(4, 4, 3, 0.2) 47%, rgba(4, 4, 3, 0.96) 100%),
    linear-gradient(90deg, rgba(4, 4, 3, 0.18), transparent 50%);
  transition: background 0.35s ease;
}

.experience-card:hover img,
.experience-card:focus-within img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.experience-card:hover,
.experience-card:focus-within {
  border-color: rgba(225, 185, 46, 0.62);
}

.experience-card:hover .experience-shade,
.experience-card:focus-within .experience-shade {
  background:
    linear-gradient(180deg, rgba(4, 4, 3, 0.04) 15%, rgba(4, 4, 3, 0.15) 42%, rgba(4, 4, 3, 0.94) 100%),
    linear-gradient(90deg, rgba(4, 4, 3, 0.08), transparent 55%);
}

.experience-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.experience-live {
  position: absolute;
  top: 20px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(226, 185, 46, 0.45);
  background: rgba(6, 6, 5, 0.62);
  color: #e6c34d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.experience-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dfb625;
  box-shadow: 0 0 13px #dfb625;
}

.experience-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.experience-card-casino .experience-copy {
  max-width: 610px;
  padding: 38px;
}

.experience-copy small {
  margin-bottom: 9px;
  color: #e3b62e;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.21em;
}

.experience-copy strong {
  color: #f7f3eb;
  font-family: var(--font-display);
  font-size: clamp(23px, 2.2vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.experience-card-casino .experience-copy strong {
  font-size: clamp(34px, 4vw, 54px);
}

.experience-copy > span {
  max-width: 500px;
  margin-top: 11px;
  color: #aaa59a;
  font-size: 12px;
  line-height: 1.55;
}

.experience-copy b {
  margin-top: 18px;
  color: #f0c843;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience-copy b i {
  display: inline-block;
  margin-left: 7px;
  font-style: normal;
  transition: transform 0.2s ease;
}

.experience-card:hover .experience-copy b i,
.experience-card:focus-within .experience-copy b i {
  transform: translateX(5px);
}

@media (max-width: 980px) {
  .experience-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .experience-heading > p {
    max-width: 620px;
  }

  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 520px repeat(2, 360px);
  }

  .experience-card-casino {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .experience-card-sports {
    grid-column: 1;
    grid-row: 2;
  }

  .experience-card-slots {
    grid-column: 2;
    grid-row: 2;
  }

  .experience-card-lottery {
    grid-column: 1;
    grid-row: 3;
  }

  .experience-card-vip {
    grid-column: 2;
    grid-row: 3;
  }

  .experience-copy,
  .experience-card-casino .experience-copy {
    padding: 26px;
  }
}

@media (max-width: 640px) {
  .experience-heading h2 {
    font-size: clamp(39px, 13vw, 56px);
  }

  .experience-heading > p {
    padding-left: 18px;
  }

  .experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .experience-card,
  .experience-card-casino,
  .experience-card-sports,
  .experience-card-slots,
  .experience-card-lottery,
  .experience-card-vip {
    grid-column: 1;
    grid-row: auto;
    min-height: 430px;
  }

  .experience-card-casino {
    min-height: 510px;
  }

  .experience-copy > span {
    display: block;
  }
}

.providers-section {
  padding-top: 50px;
}

.provider-rail {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.provider-logo {
  min-height: 104px;
  padding: 18px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
  filter: grayscale(1);
  opacity: 0.62;
  transition: filter 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.provider-logo:last-child {
  border-right: 0;
}

.provider-logo:hover {
  filter: none;
  opacity: 1;
  background: var(--gold-soft);
}

.provider-logo img {
  max-height: 55px;
  object-fit: contain;
}

.promotion {
  position: relative;
  width: min(calc(100% - 48px), var(--container));
  min-height: 430px;
  margin: 0 auto 110px;
  padding: 70px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(rgba(214, 168, 28, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 168, 28, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #171307, #080704 72%);
  background-size: 42px 42px, 42px 42px, auto;
}

.promotion-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  top: -180px;
  right: -50px;
  border-radius: 50%;
  background: rgba(214, 168, 28, 0.26);
  filter: blur(85px);
}

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

.promotion h2 {
  max-width: 700px;
}

.promotion-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 30px;
  color: var(--muted);
}

.promotion-mark {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: 320px;
  height: 320px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  transform: rotate(45deg);
  background: rgba(7, 6, 4, 0.48);
  box-shadow: 0 0 0 34px rgba(214, 168, 28, 0.03), inset 0 0 45px rgba(214, 168, 28, 0.08);
}

.promotion-mark strong,
.promotion-mark span {
  grid-area: 1 / 1;
  transform: rotate(-45deg);
  font-family: var(--font-display);
  font-weight: 800;
}

.promotion-mark strong {
  margin-top: -35px;
  font-size: 92px;
  letter-spacing: -0.09em;
}

.promotion-mark span {
  margin-top: 86px;
  color: var(--gold-bright);
  font-size: 52px;
  letter-spacing: 0.1em;
}

.seo-showcase {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 64px;
  align-items: center;
}

.seo-showcase::before {
  content: "";
  position: absolute;
  inset: 35px -70px;
  z-index: -1;
  border: 1px solid rgba(214, 168, 28, 0.1);
  background:
    radial-gradient(circle at 14% 50%, rgba(214, 168, 28, 0.11), transparent 34%),
    linear-gradient(120deg, rgba(214, 168, 28, 0.026), transparent 55%);
}

.seo-showcase-media {
  position: relative;
  margin: 0;
  padding: 9px;
  border: 1px solid var(--line-strong);
  background: #0b0905;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48), 0 0 55px rgba(214, 168, 28, 0.06);
}

.seo-showcase-media::before,
.seo-showcase-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 54px;
  height: 54px;
  pointer-events: none;
}

.seo-showcase-media::before {
  left: -1px;
  top: -1px;
  border-left: 2px solid var(--gold-bright);
  border-top: 2px solid var(--gold-bright);
}

.seo-showcase-media::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--gold-bright);
  border-bottom: 2px solid var(--gold-bright);
}

.seo-showcase-media img {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
}

.seo-showcase-media figcaption {
  position: absolute;
  left: 28px;
  bottom: -17px;
  min-height: 34px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  background: #0a0805;
  color: #c9c3b5;
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.seo-showcase-media figcaption span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px var(--gold);
}

.seo-showcase-copy h2 {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.seo-showcase-copy h2 em {
  color: var(--gold-bright);
  font-style: normal;
}

.seo-showcase-copy > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.seo-showcase-keywords {
  margin: 28px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.seo-showcase-keywords span {
  min-height: 44px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #d0cabd;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.seo-showcase-keywords span:nth-child(3) {
  color: var(--gold-bright);
  background: rgba(214, 168, 28, 0.08);
}

.seo-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.seo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background:
    linear-gradient(rgba(214, 168, 28, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 168, 28, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.seo-glow {
  position: absolute;
  width: 680px;
  height: 680px;
  top: -320px;
  right: -180px;
  border-radius: 50%;
  background: rgba(214, 168, 28, 0.12);
  filter: blur(110px);
  pointer-events: none;
}

.seo-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 92px;
  align-items: center;
}

.seo-copy h2,
.seo-faq-heading h2 {
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 5.4vw, 76px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.seo-copy h2 em,
.seo-faq-heading h2 em {
  color: var(--gold-bright);
  font-style: normal;
}

.seo-copy h2 strong {
  color: var(--gold-bright);
  font-weight: 800;
}

.seo-lead {
  max-width: 690px;
  margin: 30px 0 0;
  color: #aaa69c;
  font-size: 16px;
  line-height: 1.85;
}

.seo-keyword-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.seo-keyword-row span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  background: rgba(214, 168, 28, 0.035);
  color: #d1cbbd;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.seo-keyword-row span:nth-child(3) {
  border-color: var(--line-strong);
  background: rgba(214, 168, 28, 0.11);
  color: var(--gold-bright);
}

.seo-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.seo-text-link {
  position: relative;
  color: #c9c4b9;
  font-size: 12px;
  font-weight: 700;
}

.seo-text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.seo-text-link:hover::after {
  transform: scaleX(1);
}

.seo-index {
  position: relative;
  min-height: 440px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 50% 50%, rgba(214, 168, 28, 0.1), transparent 37%),
    rgba(10, 9, 6, 0.82);
  box-shadow: var(--shadow), inset 0 0 90px rgba(214, 168, 28, 0.035);
}

.seo-index::after {
  content: "ET";
  position: absolute;
  right: -12px;
  bottom: -48px;
  color: rgba(244, 211, 111, 0.045);
  font-family: var(--font-hero);
  font-size: 260px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.seo-orbit {
  position: absolute;
  width: 300px;
  height: 300px;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(214, 168, 28, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 52px rgba(214, 168, 28, 0.025), 0 0 0 104px rgba(214, 168, 28, 0.012);
}

.seo-index article {
  position: relative;
  z-index: 2;
  min-height: 220px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-index article:nth-child(3),
.seo-index article:nth-child(5) {
  border-right: 0;
}

.seo-index article:nth-child(4),
.seo-index article:nth-child(5) {
  border-bottom: 0;
}

.seo-index article span {
  position: absolute;
  top: 26px;
  right: 26px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
}

.seo-index article strong {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 29px);
  letter-spacing: -0.045em;
}

.seo-index article small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-editorial-grid {
  position: relative;
  z-index: 1;
  margin-top: 92px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.seo-editorial-card {
  position: relative;
  min-height: 265px;
  padding: 38px;
  overflow: hidden;
  background: #0c0a07;
}

.seo-card-featured {
  min-height: 531px;
  grid-row: 1 / 3;
  padding: 54px;
  background:
    radial-gradient(circle at 22% 18%, rgba(214, 168, 28, 0.15), transparent 33%),
    linear-gradient(145deg, #151107, #090806 62%);
}

.seo-card-number {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.seo-editorial-card h3 {
  margin: 52px 0 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.seo-editorial-card h3 em {
  color: var(--gold-bright);
  font-style: normal;
}

.seo-editorial-card p {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.seo-editorial-card > a {
  position: absolute;
  left: 38px;
  bottom: 34px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.seo-card-lines {
  position: absolute;
  width: 270px;
  height: 270px;
  right: -55px;
  bottom: -65px;
  transform: rotate(45deg);
}

.seo-card-lines i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(214, 168, 28, 0.13);
}

.seo-card-lines i:nth-child(2) { inset: 38px; }
.seo-card-lines i:nth-child(3) { inset: 76px; background: rgba(214, 168, 28, 0.035); }

.seo-link-rail {
  position: relative;
  z-index: 1;
  min-height: 74px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 26px;
  border: 1px solid var(--line);
  border-top: 0;
  background: rgba(9, 8, 5, 0.82);
}

.seo-link-rail span {
  margin-right: auto;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.seo-link-rail a {
  color: #d0cabe;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.seo-link-rail a:hover {
  color: var(--gold-bright);
}

.seo-faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  border-top: 1px solid var(--line);
}

.seo-faq-heading {
  align-self: start;
  position: sticky;
  top: 116px;
}

.seo-faq-heading h2 {
  font-size: clamp(42px, 4.5vw, 64px);
}

.seo-faq-heading > p:last-child {
  max-width: 440px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.seo-faq details {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, transparent, rgba(214, 168, 28, 0.018));
}

.seo-faq summary {
  min-height: 108px;
  padding: 25px 54px 25px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  position: relative;
  cursor: pointer;
  color: #e7e2d7;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

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

.seo-faq summary span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.seo-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--gold-bright);
  font-size: 24px;
  font-weight: 400;
}

.seo-faq details[open] summary::after {
  content: "\2212";
}

.seo-faq details p {
  margin: -8px 0 0 54px;
  padding: 0 54px 32px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.seo-faq details p a {
  color: var(--gold-bright);
  border-bottom: 1px solid rgba(244, 211, 111, 0.35);
}

.final-cta {
  padding: 115px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(214, 168, 28, 0.12), transparent 31%),
    linear-gradient(rgba(214, 168, 28, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 168, 28, 0.042) 1px, transparent 1px),
    #090805;
  background-size: auto, 48px 48px, 48px 48px, auto;
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta > p:not(.eyebrow) {
  margin: 18px 0 30px;
  color: var(--muted);
}

.final-cta > div {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.site-footer {
  padding: 70px max(24px, calc((100vw - var(--container)) / 2));
  background: #060503;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 60px;
}

.footer-brand p {
  max-width: 360px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-top h3 {
  margin: 2px 0 18px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-top > div:not(.footer-brand) a {
  width: fit-content;
  margin: 9px 0;
  display: block;
  color: #88847b;
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-top > div:not(.footer-brand) a:hover,
.footer-top > div:not(.footer-brand) a:focus-visible {
  color: var(--gold-bright);
}

.payment-row {
  margin-top: 56px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.payment-row span {
  color: #77736a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.payment-row img {
  max-width: min(520px, 70%);
  max-height: 46px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.58;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: #666159;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.floating-support {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 22px;
  min-height: 48px;
  padding: 0 18px 0 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  background: rgba(11, 9, 5, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
  font-size: 11px;
  text-transform: uppercase;
}

.floating-support span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #080602;
  font-weight: 900;
}

.floating-support b {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

body.auth-open {
  overflow: hidden;
}

.auth-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
}

.auth-modal.open {
  display: grid;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
}

.auth-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 48px));
  max-height: min(90vh, 820px);
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border: 1px solid rgba(221, 174, 38, 0.48);
  background: #0b0b09;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.72), 0 0 55px rgba(214, 168, 28, 0.07);
}

.auth-close {
  position: absolute;
  z-index: 4;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(7, 7, 6, 0.78);
  color: #a19b8f;
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
}

.auth-close:hover,
.auth-close:focus-visible {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.auth-intro {
  position: relative;
  min-height: 620px;
  padding: 58px 45px 38px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 25% 20%, rgba(218, 169, 28, 0.22), transparent 17rem),
    linear-gradient(rgba(214, 168, 28, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 168, 28, 0.07) 1px, transparent 1px),
    linear-gradient(145deg, #19150b, #080806 72%);
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.auth-intro::after {
  content: "ET";
  position: absolute;
  right: -25px;
  bottom: -35px;
  color: rgba(214, 168, 28, 0.055);
  font-family: var(--font-display);
  font-size: 210px;
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
}

.auth-intro > * {
  position: relative;
  z-index: 1;
}

.auth-intro-label,
.auth-form-heading > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.auth-intro h2 {
  margin: 22px 0 18px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.auth-intro h2 em {
  color: var(--gold);
  font-style: normal;
}

.auth-intro > p {
  margin: 0;
  color: #8e897f;
  font-size: 13px;
  line-height: 1.7;
}

.auth-points {
  display: grid;
  gap: 0;
  margin-top: 38px;
  border: 1px solid var(--line);
}

.auth-points span {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 15px;
  border-bottom: 1px solid var(--line);
  color: #b0aa9e;
  font-size: 11px;
}

.auth-points span:last-child {
  border-bottom: 0;
}

.auth-points i {
  color: var(--gold);
  font-style: normal;
  font-size: 9px;
  font-weight: 900;
}

.auth-intro > small {
  position: absolute;
  bottom: 34px;
  left: 45px;
  color: #5c574e;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-main {
  min-width: 0;
  max-height: min(90vh, 820px);
  overflow-y: auto;
  background: #0d0d0b;
  scrollbar-color: #a97b0d #15130d;
}

.auth-tabs {
  position: sticky;
  z-index: 3;
  top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 13, 11, 0.96);
  backdrop-filter: blur(14px);
}

.auth-tabs button {
  min-height: 58px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #777269;
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.auth-tabs button:last-child {
  border-right: 0;
}

.auth-tabs button.active {
  background: linear-gradient(135deg, #bb8303, #e1b92e 58%, #f2d675);
  color: #0b0802;
}

.auth-form {
  display: none;
  padding: 38px 42px 42px;
}

.auth-form.active {
  display: block;
}

.auth-form-heading {
  margin-bottom: 27px;
}

.auth-form-heading h3 {
  margin: 9px 0 6px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: -0.04em;
}

.auth-form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.auth-field {
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
}

.auth-field > span {
  color: #bdb7ab;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-field > span small {
  color: #625e56;
  font-size: 8px;
}

.auth-field input {
  width: 100%;
  height: 49px;
  padding: 0 15px;
  border: 1px solid #2a271f;
  border-radius: 0;
  outline: 0;
  background: #090908;
  color: #f0ece3;
  font: inherit;
  font-size: 13px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.auth-field input::placeholder {
  color: #555149;
}

.auth-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 168, 28, 0.09);
}

.auth-register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 15px;
}

.auth-captcha-row {
  display: grid;
  grid-template-columns: 1fr 120px;
  align-items: end;
  gap: 12px;
}

.auth-captcha {
  min-height: 71px;
  margin-bottom: 17px;
  display: grid;
  place-items: center;
  gap: 3px;
  border: 1px solid #2a271f;
  background: #090908;
  color: #78736a;
  cursor: pointer;
  font: inherit;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.auth-captcha img {
  width: 100px;
  height: 30px;
  object-fit: contain;
  background: #fff;
}

.auth-submit {
  width: 100%;
  margin-top: 4px;
}

.auth-help {
  display: block;
  margin-top: 16px;
  color: #827d72;
  font-size: 10px;
  text-align: center;
}

.auth-help:hover,
.auth-help:focus-visible {
  color: var(--gold-bright);
}

.auth-disclaimer {
  margin: 14px 0 0;
  color: #5e5a52;
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 760px) {
  .auth-modal {
    padding: 10px;
  }

  .auth-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    grid-template-columns: 1fr;
  }

  .auth-intro {
    display: none;
  }

  .auth-main {
    max-height: calc(100vh - 20px);
  }

  .auth-form {
    padding: 30px 20px 28px;
  }

  .auth-register-grid {
    grid-template-columns: 1fr;
  }

  .auth-captcha-row {
    grid-template-columns: 1fr 112px;
  }
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 18px;
  }

  .main-nav {
    gap: 18px;
  }

  .language-link span {
    display: none;
  }

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

  .hero-model {
    width: min(430px, 76%);
    right: 4%;
  }

  .stat-card-two {
    right: -5px;
  }

  .seo-hero-grid {
    gap: 58px;
  }

  .seo-faq {
    gap: 55px;
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    height: calc(100vh - 69px);
    padding: 38px 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(7, 6, 4, 0.985);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    min-height: 60px;
    place-items: center start;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions .button-outline,
  .language-link {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }

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

  .hero-copy {
    padding: 76px 0 310px;
  }

  .hero h1 {
    font-size: clamp(58px, 11vw, 86px);
  }

  .hero-visual {
    position: absolute;
    inset: auto 0 0;
    height: 420px;
    opacity: 0.83;
  }

  .hero-model {
    max-height: 420px;
    right: 12%;
  }

  .hero-orbit {
    width: 360px;
    height: 360px;
    top: 35px;
    left: 33%;
  }

  .stat-card-one { top: 70px; right: 3%; }
  .stat-card-two { top: 190px; right: 0; }
  .stat-card-three { bottom: 34px; right: 7%; }

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

  .trust-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-card:last-child {
    border-bottom: 0;
  }

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

  .process-card {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .process-card:nth-child(2n) {
    border-right: 0;
  }

  .process-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .split-heading {
    display: block;
  }

  .game-tabs {
    width: fit-content;
    margin-top: 28px;
  }

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

  .game-card-wide {
    grid-column: span 2;
  }

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

  .provider-logo:nth-child(4) {
    border-right: 0;
  }

  .provider-logo:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .promotion {
    padding: 56px;
    grid-template-columns: 1fr;
  }

  .promotion-mark {
    position: absolute;
    right: -80px;
    bottom: -100px;
    opacity: 0.28;
  }

  .seo-showcase,
  .seo-hero-grid,
  .seo-faq {
    grid-template-columns: 1fr;
  }

  .seo-showcase {
    gap: 54px;
  }

  .seo-index {
    min-height: 400px;
  }

  .seo-index article {
    min-height: 200px;
  }

  .seo-faq-heading {
    position: static;
  }

  .seo-faq-grid {
    margin-top: 4px;
  }

  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .header-inner,
  .hero-inner,
  .section,
  .promotion {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-actions .button-small {
    min-height: 37px;
    padding: 0 13px;
    font-size: 9px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-crown {
    width: 31px;
    height: 31px;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero-copy {
    padding-top: 58px;
    padding-bottom: 320px;
  }

  .eyebrow {
    font-size: 9px;
    letter-spacing: 0.17em;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 67px);
    letter-spacing: -0.075em;
  }

  .hero-description {
    max-width: 420px;
    font-size: 14px;
  }

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

  .hero-actions .button {
    padding: 0 13px;
    font-size: 9px;
  }

  .hero-trust {
    gap: 10px 15px;
    font-size: 9px;
  }

  .hero-visual {
    height: 360px;
  }

  .hero-model {
    max-height: 360px;
    right: 6%;
  }

  .hero-orbit {
    width: 310px;
    height: 310px;
    left: 9%;
  }

  .stat-card {
    min-width: 112px;
    padding: 12px;
  }

  .stat-card strong {
    font-size: 12px;
  }

  .stat-card span {
    font-size: 8px;
  }

  .stat-card-one { top: 45px; }
  .stat-card-two { top: 140px; }
  .stat-card-three { bottom: 28px; }

  .trust-card {
    min-height: 110px;
    padding: 22px 18px;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading h2,
  .promotion h2,
  .seo-copy h2,
  .final-cta h2 {
    font-size: clamp(35px, 11vw, 48px);
  }

  .process-card {
    padding: 30px 25px;
  }

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

  .process-card,
  .process-card:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .process-card:last-child {
    border-bottom: 0;
  }

  .game-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .game-tabs button {
    flex: 1;
    padding: 0 13px;
  }

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

  .game-card,
  .game-card-wide {
    grid-column: auto;
    display: flex;
  }

  .game-card-wide .game-art,
  .game-art {
    min-height: 290px;
  }

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

  .provider-logo:nth-child(even) {
    border-right: 0;
  }

  .provider-logo:nth-child(-n + 6) {
    border-bottom: 1px solid var(--line);
  }

  .promotion {
    min-height: 430px;
    margin-bottom: 80px;
    padding: 42px 28px;
  }

  .promotion-mark {
    width: 250px;
    height: 250px;
  }

  .promotion-mark strong {
    font-size: 70px;
  }

  .seo-showcase {
    padding-top: 72px;
    padding-bottom: 72px;
    gap: 48px;
  }

  .seo-showcase::before {
    inset: 28px -24px;
  }

  .seo-showcase-media {
    padding: 6px;
  }

  .seo-showcase-media figcaption {
    left: 18px;
    max-width: calc(100% - 36px);
    white-space: nowrap;
  }

  .seo-showcase-copy h2 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .seo-showcase-copy > p:not(.eyebrow) {
    font-size: 13px;
  }

  .seo-section {
    padding-top: 88px;
  }

  .seo-copy h2,
  .seo-faq-heading h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .seo-lead {
    font-size: 14px;
  }

  .seo-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .seo-text-link {
    width: fit-content;
  }

  .seo-index {
    min-height: 350px;
  }

  .seo-index article {
    min-height: 175px;
    padding: 22px 18px;
  }

  .seo-index article span {
    top: 18px;
    right: 18px;
  }

  .seo-orbit {
    width: 220px;
    height: 220px;
  }

  .seo-editorial-grid {
    margin-top: 58px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .seo-card-featured {
    min-height: 450px;
    grid-row: auto;
    padding: 36px 28px;
  }

  .seo-editorial-card {
    min-height: 310px;
    padding: 32px 28px;
  }

  .seo-editorial-card h3 {
    margin-top: 40px;
  }

  .seo-editorial-card > a {
    left: 28px;
    bottom: 28px;
  }

  .seo-link-rail {
    align-items: flex-start;
    gap: 14px 22px;
    flex-wrap: wrap;
  }

  .seo-link-rail span {
    width: 100%;
    margin-right: 0;
  }

  .seo-faq {
    gap: 42px;
  }

  .seo-faq summary {
    min-height: 94px;
    padding-right: 38px;
    grid-template-columns: 42px 1fr;
    font-size: 14px;
  }

  .seo-faq details p {
    margin-left: 42px;
    padding-right: 18px;
  }

  .final-cta {
    padding: 85px 16px;
  }

  .final-cta > div {
    display: grid;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 45px 30px;
  }

  .payment-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .payment-row img {
    max-width: 100%;
  }

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

  .floating-support {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* 2026 refined visual system */
body {
  background:
    radial-gradient(circle at 82% 0%, rgba(214, 168, 28, 0.08), transparent 28rem),
    radial-gradient(circle at 18% 32%, rgba(126, 73, 5, 0.05), transparent 34rem),
    var(--black);
  color: #f4f0e8;
  font-size: 15px;
  letter-spacing: -0.01em;
  line-height: 1.7;
}

.site-header {
  border-top-color: rgba(244, 211, 111, 0.72);
  background: #000;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: none;
}

.header-inner {
  min-height: 74px;
  gap: 28px;
  background: #000;
}

.brand-logo {
  width: 112px;
  height: 64px;
}

.main-nav {
  gap: 26px;
}

.main-nav a {
  color: #a6a198;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.language-link,
.button,
.menu-toggle,
.game-tabs,
.game-tabs button {
  border-radius: var(--radius-sm);
}

.language-link {
  background: rgba(255, 255, 255, 0.018);
}

.button {
  min-height: 49px;
  padding-inline: 27px;
  gap: 15px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.button-gold {
  border-color: rgba(255, 226, 126, 0.74);
  background: linear-gradient(135deg, #b98105 0%, #e2b832 52%, #f7df89 100%);
}

.button-outline,
.button-ghost {
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px);
}

.hero {
  min-height: 700px;
  background:
    radial-gradient(circle at 74% 42%, rgba(246, 201, 67, 0.16) 0%, rgba(141, 86, 3, 0.07) 28%, transparent 56%),
    radial-gradient(circle at 36% 110%, rgba(155, 76, 0, 0.12), transparent 42%),
    linear-gradient(100deg, rgba(3, 3, 2, 0.995) 0%, rgba(7, 6, 4, 0.97) 43%, rgba(10, 8, 3, 0.76) 72%, rgba(5, 5, 4, 0.95) 100%),
    #050403;
}

.hero-inner {
  min-height: 700px;
}

.hero-copy {
  padding-block: 92px 88px;
}

.hero-copy::before {
  border-right-color: rgba(244, 211, 111, 0.08);
  background: linear-gradient(90deg, rgba(5, 4, 2, 0.78), rgba(8, 7, 4, 0.34) 84%, transparent);
}

.eyebrow {
  margin-bottom: 22px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(54px, 5.15vw, 80px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-transform: none;
}

.hero h1 .hero-title-brand {
  margin-bottom: 0.42em;
  color: var(--gold-bright);
  font-size: 0.31em;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 .hero-title-main {
  color: #f7f3eb;
  font-weight: 600;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero h1 em {
  margin-top: -0.08em;
  color: #f4cf61;
  font-family: var(--font-accent);
  font-size: 1.2em;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: none;
}

.hero-description {
  max-width: 620px;
  margin-top: 31px;
  color: #b8b2a7;
  font-size: 15px;
  line-height: 1.82;
}

.hero-trust {
  color: #8f8a80;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.stat-card,
.trust-card,
.process-card,
.game-card,
.provider-logo,
.promotion,
.seo-showcase-media,
.seo-index,
.seo-editorial-grid,
.seo-faq details {
  border-radius: var(--radius-md);
}

.stat-card,
.trust-card {
  border-color: rgba(230, 190, 67, 0.22);
  background: linear-gradient(145deg, rgba(22, 19, 12, 0.9), rgba(10, 9, 7, 0.86));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.section {
  padding-block: 104px;
}

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

.section-heading h2,
.promotion h2,
.seo-copy h2,
.final-cta h2 {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.section-heading h2 em,
.promotion h2 em,
.seo-copy h2 em,
.seo-showcase-copy h2 em,
.seo-faq-heading h2 em,
.seo-editorial-card h3 em,
.final-cta h2 em {
  color: var(--gold-bright);
  font-family: var(--font-accent);
  font-size: 1.13em;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.03em;
  text-transform: none;
}

.process-grid {
  gap: 12px;
  border: 0;
}

.process-card {
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(20, 18, 13, 0.96), rgba(11, 10, 8, 0.96));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.process-card:last-child {
  border-right: 1px solid var(--line);
}

.process-card h3,
.game-card h3 {
  font-weight: 600;
  letter-spacing: -0.035em;
}

.game-tabs {
  padding: 4px;
  gap: 3px;
  background: rgba(255, 255, 255, 0.02);
}

.game-tabs button {
  border-right: 0;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.game-card {
  overflow: hidden;
  border-color: rgba(215, 177, 65, 0.2);
  background: linear-gradient(155deg, rgba(19, 17, 12, 0.96), rgba(9, 8, 6, 0.96));
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

.provider-rail {
  gap: 10px;
  border: 0;
  background: transparent;
}

.provider-logo {
  border: 1px solid var(--line) !important;
  background: rgba(255, 255, 255, 0.018);
}

.promotion {
  overflow: hidden;
  border-color: rgba(230, 190, 67, 0.34);
  background:
    radial-gradient(circle at 80% 20%, rgba(214, 168, 28, 0.14), transparent 28rem),
    linear-gradient(135deg, #171307, #080704 72%);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.32);
}

.seo-showcase::before {
  border-radius: 26px;
}

.seo-showcase-media {
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44), 0 0 55px rgba(214, 168, 28, 0.05);
}

.seo-showcase-media::before,
.seo-showcase-media::after {
  display: none;
}

.seo-showcase-copy h2,
.seo-copy h2,
.seo-faq-heading h2 {
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.seo-showcase-keywords {
  gap: 8px;
  border: 0;
}

.seo-showcase-keywords span,
.seo-keyword-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(214, 168, 28, 0.035);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.seo-showcase-keywords span {
  min-height: 42px;
  justify-content: center;
}

.seo-index,
.seo-editorial-grid {
  overflow: hidden;
}

.seo-editorial-card h3 {
  font-weight: 600;
  letter-spacing: -0.045em;
}

.seo-faq-grid {
  display: grid;
  gap: 10px;
  border-top: 0;
}

.seo-faq details {
  border: 1px solid var(--line);
  background: linear-gradient(100deg, rgba(17, 15, 11, 0.9), rgba(9, 8, 6, 0.76));
  overflow: hidden;
}

.seo-faq summary {
  padding-inline: 24px 58px;
  font-size: 15px;
  font-weight: 600;
}

.seo-faq summary::after {
  right: 24px;
}

.seo-faq details p {
  margin-left: 78px;
}

.final-cta {
  border-color: rgba(215, 177, 65, 0.16);
}

.site-footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(214, 168, 28, 0.055), transparent 30rem),
    #050403;
}

.footer-top h3 {
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media (max-width: 980px) {
  .main-nav {
    gap: 0;
  }

  .main-nav a {
    font-size: 11px;
  }

  .hero,
  .hero-inner {
    min-height: 730px;
  }

  .hero h1 {
    max-width: 640px;
    font-size: clamp(52px, 9.2vw, 76px);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    width: 98px;
    height: 58px;
  }

  .hero-copy {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(44px, 13.5vw, 61px);
    letter-spacing: -0.06em;
    line-height: 1;
  }

  .hero h1 .hero-title-brand {
    font-size: 0.34em;
  }

  .hero h1 em {
    font-size: 1.16em;
  }

  .hero-description {
    margin-top: 25px;
    font-size: 13px;
    line-height: 1.75;
  }

  .button {
    min-height: 46px;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading h2,
  .promotion h2,
  .seo-copy h2,
  .final-cta h2 {
    font-size: clamp(32px, 9.8vw, 44px);
  }

  .process-grid {
    gap: 10px;
  }

  .process-card,
  .process-card:nth-child(2n),
  .process-card:nth-last-child(-n + 2),
  .process-card:last-child {
    border: 1px solid var(--line);
  }

  .seo-showcase::before {
    border-radius: 18px;
  }

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

  .seo-faq summary {
    padding-inline: 18px 46px;
    grid-template-columns: 38px 1fr;
    font-size: 13px;
  }

  .seo-faq summary::after {
    right: 18px;
  }

  .seo-faq details p {
    margin-left: 56px;
  }
}

/* Secure member popup */
.auth-dialog {
  border-radius: var(--radius-lg);
  border-color: rgba(234, 194, 72, 0.42);
  background: linear-gradient(145deg, #11100d, #090806);
}

.auth-close,
.auth-tabs button,
.auth-field input,
.auth-captcha {
  border-radius: var(--radius-sm);
}

.auth-tabs {
  padding: 6px;
  gap: 6px;
  border-bottom-color: rgba(214, 168, 28, 0.14);
}

.auth-tabs button {
  border-right: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.auth-intro h2,
.auth-form-heading h3 {
  font-weight: 600;
}

.auth-intro h2 em {
  color: var(--gold-bright);
  font-family: var(--font-accent);
  font-size: 1.14em;
  font-weight: 700;
  font-style: italic;
}

.auth-field input {
  background: rgba(7, 7, 6, 0.78);
}

.auth-submit {
  border-radius: var(--radius-sm);
}

@media (max-width: 760px) {
  .auth-dialog {
    border-radius: var(--radius-md);
  }
}

/* Mobile hero layout repair */
@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .header-inner {
    width: calc(100% - 24px);
    min-height: 62px;
    gap: 9px;
  }

  .brand-logo {
    width: 82px;
    height: 50px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .button-small {
    min-height: 36px;
    padding-inline: 11px;
    font-size: 8px;
    letter-spacing: 0.07em;
  }

  .hero,
  .hero-inner {
    min-height: 730px;
  }

  .hero-inner {
    width: calc(100% - 28px);
    align-items: start;
  }

  .hero-copy {
    padding: 44px 0 310px;
  }

  .hero-copy::before {
    top: 22px;
    right: -28px;
    bottom: 270px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    max-width: 330px;
    font-size: clamp(39px, 12vw, 50px);
    letter-spacing: -0.045em;
    line-height: 0.96;
  }

  .hero h1 .hero-title-brand {
    margin-bottom: 0.38em;
    font-size: 0.33em;
    letter-spacing: 0.14em;
  }

  .hero h1 em {
    margin-top: 0;
    font-size: 1.08em;
    line-height: 0.98;
  }

  .hero-description {
    max-width: 330px;
    margin-top: 19px;
    font-size: 12px;
    line-height: 1.62;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 8px;
  }

  .hero-actions .button {
    min-height: 42px;
    padding-inline: 10px;
    font-size: 8px;
    letter-spacing: 0.06em;
  }

  .hero-trust {
    margin-top: 18px;
    gap: 8px 12px;
    font-size: 8px;
    letter-spacing: 0.025em;
  }

  .hero-visual {
    height: 270px;
    opacity: 0.72;
  }

  .hero-model {
    width: min(245px, 68vw);
    max-height: 280px;
    right: -3%;
    bottom: -8px;
  }

  .hero-orbit {
    width: 238px;
    height: 238px;
    top: 14px;
    left: 27%;
  }

  .hero-visual::before {
    width: 300px;
    height: 300px;
    top: -10px;
    left: 14%;
    opacity: 0.44;
  }

  .hero-visual::after {
    width: 280px;
    height: 95px;
    right: -60px;
    bottom: 24px;
  }

  .stat-card {
    display: none;
  }

  .floating-support {
    right: 10px;
    bottom: 10px;
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .floating-support b {
    display: none;
  }
}
