:root {
  color-scheme: dark;
  --bg: #061523;
  --panel: #0d2134;
  --panel-2: #12304a;
  --gold: #cea03b;
  --gold-2: #a97e2d;
  --mint: #5db7ff;
  --text: #f6f1e4;
  --muted: #b9c7d6;
  --line: rgba(246, 241, 228, 0.16);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.text-link {
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--mint);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 21, 35, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  max-width: min(calc(100vw - 190px), 178px);
}

.brand span:last-child {
  font-family: "Arial Black", Impact, "Roboto", Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 4.4vw, 1.18rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  color: var(--text);
  text-shadow: 1px 1px 0 rgba(206, 160, 59, 0.9), 0 0 12px rgba(206, 160, 59, 0.22);
  transform: skewX(-6deg);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  /* курсив, тень и свечение выходят за метрику текста — без запаса overflow их срезает */
  padding-right: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(196, 147, 47, 0.2));
}

.nav {
  display: none;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 40px;
  font-weight: 700;
  white-space: nowrap;
}

.language-switch {
  display: none;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.language-switch a {
  min-width: 34px;
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.language-switch a[aria-current="page"] {
  background: var(--gold);
  color: #141608;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  gap: 4px;
  flex: 0 0 auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-cta {
  min-height: 40px;
  padding: 9px 11px;
  border-radius: 8px;
  background: var(--gold);
  color: #141608;
  font-weight: 800;
  font-size: 0.94rem;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

@media (max-width: 679px) {
  .brand {
    max-width: min(calc(100vw - 165px), 178px);
  }

  .page-hero {
    text-align: center;
    padding-top: 52px;
  }

  .page-hero h1 {
    margin-inline: auto;
    font-size: clamp(2.35rem, 10vw, 3.2rem);
  }

  .app-hero h1 {
    font-size: clamp(2.05rem, 8.5vw, 2.75rem);
  }

  .page-copy {
    font-size: 1.08rem;
    line-height: 1.5;
  }

  .app-hero-visual,
  .bonus-hero-visual,
  .registration-hero-visual {
    min-height: 280px;
    margin-top: 8px;
    background-size: min(340px, 96vw) auto;
  }

  .app-hero-visual {
    min-height: 320px;
    margin-inline: -16px;
    background-size: auto, auto, cover;
    background-position: center;
  }

  .hero-content {
    width: min(392px, 100%);
  }

  .hero-copy {
    font-size: 1.16rem;
    line-height: 1.48;
  }

  .btn {
    font-size: 1.02rem;
  }

  .header-actions {
    position: absolute;
    top: 13px;
    right: 12px;
    left: auto;
    display: grid;
    grid-template-columns: auto 42px;
    gap: 8px;
    margin-left: 0;
  }

  .language-switch {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 12px;
  width: min(230px, calc(100vw - 24px));
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 23, 17, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text);
  font-weight: 800;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: rgba(196, 147, 47, 0.14);
}

.hero {
  position: relative;
  min-height: calc(100svh - 64px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 72px 16px 54px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  --hero-glow-x: 18%;
  --hero-glow-y: 18%;
  background:
    linear-gradient(180deg, rgba(7, 19, 15, 0.1), rgba(7, 19, 15, 0.94) 78%),
    radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y), rgba(93, 183, 255, 0.34), transparent 34%),
    radial-gradient(circle at 82% 28%, rgba(196, 147, 47, 0.18), transparent 26%),
    linear-gradient(135deg, #08213a, #0a1828 54%, #1b2742);
  will-change: background;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(358px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--mint);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--gold);
}

.section-head .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0 auto;
  max-width: min(100%, 15ch);
  font-size: clamp(2.55rem, 12.5vw, 6.8rem);
  line-height: 0.98;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 9vw, 4.1rem);
  line-height: 1;
}

h3 {
  margin: 10px 0 8px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn::after {
  content: "->";
  font-weight: 900;
  transform: translateX(-2px);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 0 35%, rgba(255, 255, 255, 0.26) 45%, transparent 55% 100%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #161304;
  box-shadow: 0 12px 28px rgba(159, 116, 36, 0.18);
}

.app-download-cta {
  min-height: 62px;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.promo-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  justify-content: start;
  border-color: rgba(196, 147, 47, 0.36);
  background: rgba(196, 147, 47, 0.08);
  cursor: pointer;
}

.promo-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-copy strong,
.offer-box .promo-copy strong {
  display: inline;
  color: var(--gold);
  font-size: 1.08rem;
  line-height: 1;
  letter-spacing: 0;
}

.promo-copy::after {
  content: none;
}

.promo-copy.is-copied {
  border-color: rgba(63, 240, 162, 0.62);
  background: rgba(63, 240, 162, 0.12);
}

.promo-copy.is-copied strong {
  color: #3ff0a2;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@media (hover: none) {
  .btn:not(.is-downloading)::after {
    display: none;
  }
}

.btn.is-downloading {
  padding-right: 48px;
  background: linear-gradient(135deg, #3ff0a2, #20bd74);
  color: #04110c;
  box-shadow: 0 16px 34px rgba(63, 240, 162, 0.22);
}

.btn.is-downloading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(4, 17, 12, 0.28);
  border-top-color: #04110c;
  border-radius: 50%;
  opacity: 1;
  transform: none;
  animation: download-spin 0.75s linear infinite;
}

.btn.is-downloading::before {
  transform: translateX(120%);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary:hover,
.header-cta:hover {
  box-shadow: 0 16px 34px rgba(196, 147, 47, 0.24);
}

.btn-secondary:hover {
  border-color: rgba(93, 183, 255, 0.48);
  background: rgba(93, 183, 255, 0.1);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.btn:active,
.header-cta:active {
  transform: translateY(0) scale(0.98);
}

@keyframes download-spin {
  to {
    transform: rotate(360deg);
  }
}

.btn:focus-visible,
.header-cta:focus-visible,
.menu-toggle:focus-visible,
.language-switch a:focus-visible,
.nav a:focus-visible,
.footer-links a:focus-visible,
.license-link:focus-visible {
  outline: 3px solid rgba(93, 183, 255, 0.72);
  outline-offset: 3px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.trust-row span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(7, 19, 15, 0.62);
  font-size: 0.88rem;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0;
}

.page-hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 18px;
  padding: 64px 0 34px;
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  line-height: 1;
}

.app-hero h1 {
  font-size: clamp(2.35rem, 5.8vw, 4.25rem);
  line-height: 1.04;
}

.page-copy {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.page-hero .hero-actions {
  margin-top: 4px;
}

.app-hero,
.registration-hero {
  align-items: center;
}

.app-hero {
  overflow: hidden;
}

.bonus-hero,
.app-hero-content,
.registration-hero-content {
  align-items: center;
}

.bonus-hero-content,
.app-hero-content,
.registration-hero-content {
  display: grid;
  gap: 18px;
}

.app-hero-visual,
.bonus-hero-visual,
.registration-hero-visual {
  position: relative;
  min-height: 360px;
  margin: 0;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  filter: none;
  overflow: hidden;
}

.app-hero-visual img,
.bonus-hero-visual img,
.registration-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-hero-visual {
  margin-inline: -26px -44px;
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(7, 19, 15, 0.68) 0%, rgba(7, 19, 15, 0.12) 24%, rgba(7, 19, 15, 0) 52%, rgba(7, 19, 15, 0.34) 100%),
    radial-gradient(circle at 38% 54%, rgba(196, 147, 47, 0.28), transparent 38%);
  filter: brightness(1.18) contrast(1.18) saturate(1.12);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
}

.app-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 19, 15, 0.06), rgba(7, 19, 15, 0.32) 90%),
    linear-gradient(90deg, rgba(7, 19, 15, 0.54), transparent 30%);
  pointer-events: none;
}

.registration-hero-visual {
  background:
    linear-gradient(90deg, rgba(3, 7, 11, 0.92), rgba(7, 26, 43, 0.18) 42%, rgba(3, 7, 11, 0.68));
}

.bonus-hero-visual {
  background:
    radial-gradient(circle at 52% 46%, rgba(196, 147, 47, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(3, 7, 11, 0.92), rgba(7, 26, 43, 0.18) 44%, rgba(3, 7, 11, 0.68));
}

.nav a[aria-current="page"] {
  color: var(--gold);
}

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

.nav a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a {
  position: relative;
}

.mobile-menu a[aria-current="page"] {
  color: var(--gold);
}

.intro {
  display: grid;
  gap: 12px;
}

.intro article,
.feature-grid article,
.content-grid article,
.offer-box,
details {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.intro article::after,
.feature-grid article::after,
.content-grid article::after,
.offer-box::after,
details::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(196, 147, 47, 0.16) 48%, transparent 58% 100%),
    radial-gradient(circle at 85% 16%, rgba(93, 183, 255, 0.14), transparent 30%);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 180ms ease, transform 360ms ease;
  pointer-events: none;
}

.intro article:hover,
.feature-grid article:hover,
.content-grid article:hover,
.offer-box:hover,
details:hover,
.intro article:focus-within,
.feature-grid article:focus-within,
.content-grid article:focus-within,
.offer-box:focus-within,
details:focus-within {
  transform: translateY(-4px);
  border-color: rgba(196, 147, 47, 0.48);
  background: linear-gradient(180deg, rgba(196, 147, 47, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(196, 147, 47, 0.08);
}

.intro article:hover::after,
.feature-grid article:hover::after,
.content-grid article:hover::after,
.offer-box:hover::after,
details:hover::after,
.intro article:focus-within::after,
.feature-grid article:focus-within::after,
.content-grid article:focus-within::after,
.offer-box:focus-within::after,
details:focus-within::after {
  opacity: 1;
  transform: translateX(18%);
}

.intro article {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.intro span,
.split p,
.feature-grid p,
.payment p,
details p,
.footer p {
  color: var(--muted);
}

.split,
.payment {
  display: grid;
  gap: 22px;
  align-items: center;
}

.offer-box {
  padding: 22px;
}

.offer-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--mint);
  font-weight: 800;
}

.offer-box strong {
  display: block;
  font-size: clamp(2.4rem, 14vw, 5rem);
  line-height: 1;
}

.bonus-cta-card {
  display: grid;
  gap: 18px;
}

.bonus-cta-card p {
  margin: 0;
}

.bonus-cta-actions {
  display: grid;
  gap: 12px;
}

.bonus-cta-actions .btn {
  width: 100%;
}

.section-head {
  max-width: 700px;
  margin-bottom: 22px;
}

.feature-grid {
  display: grid;
  gap: 12px;
}

.feature-grid article {
  padding: 18px;
}

.content-section {
  display: grid;
  gap: 18px;
}

.content-section > p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
}

.content-grid {
  display: grid;
  gap: 12px;
}

.content-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.content-grid h3 {
  margin-top: 0;
}

.content-grid p {
  margin: 0;
  color: var(--muted);
}

.sport-section,
.esports-section {
  position: relative;
  isolation: isolate;
}

.sport-section .content-grid article,
.esports-section .content-grid article {
  position: relative;
  isolation: isolate;
  min-height: 190px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(90deg, rgba(7, 19, 15, 0.98), rgba(7, 19, 15, 0.78) 52%, rgba(7, 19, 15, 0.34));
  transition: transform 180ms ease, border-color 180ms ease, background-size 260ms ease, box-shadow 180ms ease;
}

.card-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sport-section .content-grid article:hover,
.esports-section .content-grid article:hover,
.sport-section .content-grid article:focus-within,
.esports-section .content-grid article:focus-within {
  background: linear-gradient(90deg, rgba(7, 19, 15, 0.96), rgba(7, 19, 15, 0.7) 50%, rgba(7, 19, 15, 0.24));
}

.sport-section .content-grid article::before,
.esports-section .content-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 19, 15, 0.08), rgba(6, 21, 35, 0.92)),
    radial-gradient(circle at 86% 18%, rgba(196, 147, 47, 0.18), transparent 34%);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pill-list li {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(93, 183, 255, 0.28);
  border-radius: 999px;
  background: rgba(93, 183, 255, 0.08);
  color: var(--text);
  font-weight: 800;
}

.steps-grid,
.requirement-grid {
  display: grid;
  gap: 12px;
}

.steps-grid article,
.requirement-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.steps-grid article:hover,
.requirement-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 147, 47, 0.48);
  background: linear-gradient(180deg, rgba(196, 147, 47, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(196, 147, 47, 0.08);
}

.steps-grid span {
  color: var(--gold);
  font-weight: 900;
}

.requirement-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.05rem;
}

.requirement-grid span {
  color: var(--muted);
}

.spec-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.spec-table table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-table th {
  color: var(--gold);
  font-weight: 900;
}

.spec-table td {
  color: var(--muted);
}

.note-box {
  padding: 16px 18px;
  border: 1px solid rgba(196, 147, 47, 0.34);
  border-radius: 8px;
  background: rgba(196, 147, 47, 0.08);
  color: var(--text) !important;
  font-weight: 700;
}

.feature-grid span {
  color: var(--gold);
  font-weight: 900;
}

.payment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.payment-list li {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: 8px;
  background: var(--panel-2);
  color: var(--text);
  font-weight: 800;
  text-align: center;
}

.feature-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.feature-list span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-weight: 800;
}

.clean-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 18px;
  padding-left: 18px;
  color: var(--muted);
}

.inline-link {
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  padding: 16px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.footer {
  position: relative;
  padding: 42px 16px 28px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 0%, rgba(93, 183, 255, 0.16), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(196, 147, 47, 0.12), transparent 24%),
    linear-gradient(180deg, #061a2d, #030b13);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--mint), transparent);
  opacity: 0.8;
}

.footer-inner {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-brand strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
}

.footer-brand strong::before {
  content: "";
  width: 34px;
  height: 34px;
  background: url("/images/favicon-96x96.png") center / contain no-repeat;
  filter: drop-shadow(0 0 10px rgba(196, 147, 47, 0.18));
}

.footer p {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.footer-links a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-color: rgba(196, 147, 47, 0.5);
  background: rgba(196, 147, 47, 0.1);
  color: var(--gold);
}

.license-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(196, 147, 47, 0.35);
  border-radius: 8px;
  background: rgba(196, 147, 47, 0.1);
  color: var(--gold);
  font-weight: 900;
}

.license-link::after {
  content: "->";
  margin-left: 8px;
  font-size: 0.9em;
}

.footer-inner::after {
  content: "18+ · oltinbetuzb.com · Oltinbet";
  display: block;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: rgba(246, 241, 228, 0.58);
  font-size: 0.86rem;
}

@media (min-width: 760px) {
  .footer-inner {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    justify-content: flex-end;
  }

  .footer-inner::after {
    grid-column: 1 / -1;
  }

  .app-hero,
  .bonus-hero,
  .registration-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
    min-height: 560px;
  }

  .app-hero {
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.16fr);
  }

  .app-hero-visual,
  .bonus-hero-visual,
  .registration-hero-visual {
    min-height: 520px;
  }

  .app-hero-visual {
    min-height: 560px;
  }
}

@media (min-width: 680px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 12px clamp(16px, 4vw, 56px);
  }

  .header-cta {
    padding: 9px 14px;
    font-size: 1rem;
  }

  .brand {
    justify-self: start;
    max-width: none;
  }

  .language-switch {
    display: inline-flex;
  }

  .header-actions {
    justify-self: end;
    margin-left: 0;
  }

  .menu-toggle {
    display: none;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 12vw, 6.8rem);
  }

  .nav {
    display: flex;
    gap: 8px;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .mobile-menu {
    display: none;
  }

  .hero {
    padding-inline: 56px;
  }

  .hero-content {
    width: min(760px, 100%);
    margin-left: 0;
    text-align: left;
  }

  .hero-actions {
    display: flex;
  }

  .trust-row {
    justify-content: flex-start;
  }

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

@media (min-width: 960px) {
  .hero {
    align-items: center;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
    align-items: center;
    min-height: 560px;
  }

  .hero-visual {
    background:
      linear-gradient(90deg, rgba(7, 19, 15, 0.94), rgba(7, 19, 15, 0.48) 46%, rgba(7, 19, 15, 0.76)),
      radial-gradient(circle at 75% 35%, rgba(196, 147, 47, 0.24), transparent 28%),
      linear-gradient(135deg, #08213a, #0a1828 54%, #1b2742);
  }

  .split,
  .payment {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

body {
  background: #04111c;
}

main {
  background:
    radial-gradient(circle at 16% 10%, rgba(18, 65, 96, 0.26), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(9, 34, 58, 0.34), transparent 36%),
    linear-gradient(135deg, #03070b 0%, #061827 48%, #020509 100%);
}

.hero,
.page-hero,
.section,
.content-section,
.cta-section {
  background-color: transparent;
}

.hero-visual {
  background:
    linear-gradient(180deg, rgba(3, 7, 11, 0.08), rgba(3, 8, 13, 0.9) 78%),
    radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y), rgba(28, 94, 138, 0.64), transparent 38%),
    radial-gradient(circle at 84% 26%, rgba(9, 35, 62, 0.5), transparent 32%),
    linear-gradient(135deg, #03070b, #071a2b 54%, #020509);
}

.app-hero,
.bonus-hero,
.registration-hero {
  background: #061827;
}

.app-hero-visual,
.bonus-hero-visual,
.registration-hero-visual {
  background-color: transparent;
}

@media (min-width: 960px) {
  .hero-visual {
    background:
      linear-gradient(90deg, rgba(3, 7, 11, 0.96), rgba(4, 14, 24, 0.56) 46%, rgba(3, 8, 13, 0.86)),
      radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y), rgba(28, 94, 138, 0.56), transparent 34%),
      linear-gradient(135deg, #03070b, #071a2b 54%, #020509);
  }
}

.hero h1 {
  max-width: min(100%, 760px);
  margin-left: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

@media (min-width: 680px) {
  .hero h1 {
    font-size: clamp(3.8rem, 8.8vw, 6.4rem);
  }
}

.bonus-hero {
  overflow: hidden;
}

.bonus-hero-content,
.bonus-hero-visual {
  min-width: 0;
}

.bonus-hero h1 {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

@media (min-width: 760px) {
  .bonus-hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    column-gap: clamp(24px, 4vw, 56px);
  }

  .bonus-hero h1 {
    font-size: clamp(3rem, 5.8vw, 4.9rem);
  }

  .bonus-hero-visual {
    min-height: 500px;
    background-position: center;
    background-size: auto, auto, cover;
  }

  .registration-hero-visual {
    background-position: center;
    background-size: auto, cover;
  }
}

