/* M-09: Roboto подключён локально — без запросов к fonts.googleapis.com.
   Переменное начертание 400-900: веса 500/600/700/800/900 настоящие,
   браузер больше не имитирует их синтетически. */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/roboto-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/roboto-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/roboto-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/roboto-cyrillic-ext.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

:root {
  --bg: #00060a;
  --bg-blue: #00253d;
  --panel: #001524;
  --panel-2: #1c1d1d;
  --panel-3: #002139;
  --text: #ffffff;
  --muted: #f2eee7;
  --muted-2: #ccb28c;
  --gold: #a0762e;
  --gold-light: #cc9f5c;
  --green: #2ad1c3;
  --red: #d94b43;
  --line: rgba(220, 199, 163, .15);
  --line-soft: rgba(251, 249, 246, .1);
  --shadow: 0 20px 50px rgba(0, 0, 0, .28);
  font-family: Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(86% 58% at 50% 0%, rgba(0, 37, 61, .62), rgba(0, 6, 10, 0) 58%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--gold);
  color: #111;
  padding: .75rem 1rem;
  border-radius: 6px;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .55rem;
  padding: .85rem 1rem;
  background:
    radial-gradient(89.57% 59% at 50% 100%, rgba(220, 199, 163, .16) 0%, rgba(0, 0, 0, 0) 100%),
    rgba(0, 6, 10, .61);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(104px, 32vw, 118px);
  min-width: 0;
  flex: 0 1 auto;
}
.brand img {
  width: 100%;
  height: auto;
}

.nav-links { display: none; }
.nav-links a {
  color: var(--muted);
  font-size: 1rem;
  transition: color .18s ease, filter .18s ease, text-shadow .18s ease, transform .18s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  filter: brightness(1.18);
  text-shadow:
    0 0 8px rgba(255, 255, 255, .46),
    0 0 18px rgba(255, 255, 255, .2);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex: 0 0 auto;
}
.lang-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.lang-switch button {
  min-width: 40px;
  border: 0;
  padding: .48rem .62rem;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.lang-switch button.active {
  background: var(--gold);
  color: var(--bg);
}
.menu-toggle {
  flex: 0 0 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--text);
  transition: transform .18s ease, opacity .18s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.menu-backdrop {
  position: fixed;
  inset: 72px 0 0;
  z-index: 8;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}
.site-menu {
  position: fixed;
  top: 77px;
  right: 1rem;
  left: 1rem;
  z-index: 31;
  width: auto;
  max-width: 420px;
  margin-left: auto;
  padding: 0 1rem;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(0,0,0,.36);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease;
}
body.menu-open .menu-backdrop {
  pointer-events: auto;
}
body.menu-open .site-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.menu-nav {
  display: grid;
  padding: 1rem 0;
}
.menu-nav a {
  display: flex;
  align-items: center;
  min-height: 53px;
  border-bottom: 1px solid var(--line-soft);
  padding: .85rem 0;
  background: transparent;
  color: var(--text);
  font-weight: 800;
}
.menu-nav a:last-child {
  border-bottom: 0;
}
.menu-nav a:hover {
  color: var(--gold);
}
.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  opacity: .74;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,6,10,.08), rgba(0,6,10,.96) 82%),
    linear-gradient(90deg, rgba(0,6,10,.94), rgba(0,33,57,.4) 62%, rgba(0,6,10,.76));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 5rem 1rem 1.1rem;
}

@media (max-width: 679px) {
  .site-header,
  .hero-content {
    width: 100%;
    max-width: 100vw;
  }

  .hero-content,
  .hero-content h1,
  .hero-copy,
  .hero-actions {
    min-width: 0;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 3.15rem);
  }

  .hero-copy {
    max-width: 100%;
  }

  .button {
    font-size: .95rem;
  }

  .hero-button-large {
    font-size: 1rem;
  }

  .bonus-hero .hero-content {
    padding-bottom: 10rem;
  }

  .app-hero .hero-content {
    padding-bottom: 10.5rem;
  }

  html[lang="ru"] .app-hero .hero-content {
    padding-bottom: 14rem;
  }

  html[lang="ru"] .app-hero .hero-actions {
    gap: .55rem;
    margin-top: 2rem;
  }

  .payment-hero .hero-content {
    padding-bottom: 12rem;
  }

  .app-hero .hero-actions {
    margin-top: 3.5rem;
  }

  .bonus-hero .hero-actions {
    margin-top: 3.5rem;
  }

  html[lang="ru"] .bonus-hero .hero-content {
    padding-bottom: 16rem;
  }
}

@media (max-width: 679px) and (max-height: 700px) {
  html[lang="ru"] .app-hero .hero-content {
    padding-top: 3rem;
    padding-bottom: 13.5rem;
  }

  html[lang="ru"] .app-hero .hero-actions {
    margin-top: 1.55rem;
  }

  html[lang="ru"] .app-hero .hero-button-large {
    min-height: 58px;
    padding-block: .9rem;
    font-size: 1.08rem;
  }
}
.eyebrow,
.section-kicker {
  margin: 0 0 .75rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.35rem, 12vw, 5.8rem);
  line-height: .95;
  letter-spacing: 0;
}
.hero-copy {
  max-width: 640px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.hero-actions {
  display: grid;
  gap: .85rem;
  margin-top: 1.35rem;
}
.hero-button-large {
  width: min(420px, 100%);
  min-width: 0;
  min-height: 96px;
  padding: 1.5rem 2.2rem;
  font-size: 1.22rem;
}
.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: 8px;
  padding: .85rem 1rem;
  font-weight: 800;
  isolation: isolate;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity .18s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button:active {
  transform: translateY(0);
}
.button.primary {
  border: 1px solid rgba(255, 193, 92, .42);
  background:
    radial-gradient(90% 130% at 50% -20%, rgba(255, 232, 170, .95), rgba(255, 232, 170, 0) 42%),
    linear-gradient(180deg, #d9af55 0%, #a87825 100%);
  color: #050505;
  box-shadow:
    0 12px 28px rgba(160, 118, 46, .32),
    inset 0 1px 0 rgba(255, 255, 255, .32),
    inset 0 -2px 0 rgba(81, 52, 10, .35);
}
.button.primary::before {
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.22), rgba(255,255,255,0));
  transform: translateX(-120%);
}
.button.primary:hover {
  box-shadow:
    0 16px 36px rgba(160, 118, 46, .42),
    0 0 0 1px rgba(255, 209, 119, .16),
    inset 0 1px 0 rgba(255, 255, 255, .36),
    inset 0 -2px 0 rgba(81, 52, 10, .35);
}
.button.primary:hover::before {
  opacity: 1;
  transform: translateX(120%);
  transition: transform .55s ease, opacity .18s ease;
}
.apk-download-button.is-downloading {
  padding-right: 3.25rem;
  border-color: rgba(48, 214, 137, .76);
  background:
    radial-gradient(90% 130% at 50% -20%, rgba(191, 255, 219, .92), rgba(191, 255, 219, 0) 42%),
    linear-gradient(180deg, #39d98a 0%, #11884f 100%);
  box-shadow:
    0 16px 36px rgba(42, 209, 126, .35),
    0 0 0 1px rgba(91, 255, 176, .18),
    inset 0 1px 0 rgba(255, 255, 255, .32),
    inset 0 -2px 0 rgba(6, 68, 37, .38);
}
.apk-download-button.is-downloading::after {
  content: "";
  position: absolute;
  right: 1.05rem;
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid rgba(5, 5, 5, .28);
  border-top-color: #050505;
  border-radius: 50%;
  animation: apk-download-spin .8s linear infinite;
}
@keyframes apk-download-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 679px) {
  .app-hero .hero-button-large {
    font-size: .92rem;
  }
}

.button.ghost {
  border: 1px solid rgba(220, 199, 163, .28);
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(160, 118, 46, .14), rgba(220, 199, 163, 0)),
    rgba(251,249,246,.035);
  box-shadow:
    inset 0 0 16px rgba(160, 118, 46, .16),
    0 10px 26px rgba(0, 0, 0, .18);
}
.button.ghost:hover {
  border-color: rgba(204, 159, 92, .58);
  color: var(--gold-light);
  box-shadow:
    inset 0 0 20px rgba(160, 118, 46, .22),
    0 12px 30px rgba(0, 0, 0, .24);
}

.hero-stats {
  display: grid;
  gap: .7rem;
  margin: 1.5rem 0 0;
}
.hero-stats div {
  padding: .8rem;
  background: rgba(0, 21, 36, .78);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.hero-stats dt { color: var(--gold); font-size: 1.25rem; font-weight: 900; }
.hero-stats dd { margin: .1rem 0 0; color: var(--muted); font-size: .9rem; }

section:not(.hero) {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.5rem 0;
}
.page-visual {
  padding-top: 2rem !important;
  padding-bottom: 1rem !important;
}
.page-visual img {
  width: 100%;
  max-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}
.image-caption {
  margin: .75rem 0 0;
  color: rgba(242, 238, 231, .62);
  font-size: .92rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 679px) {
  .page-visual {
    width: min(100% - 2rem, 420px) !important;
  }
  .page-visual img {
    height: clamp(240px, 78vw, 340px);
    object-fit: cover;
    object-position: center top;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    padding-top: .55rem;
  }
}
.content-page {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding-inline: 1rem !important;
}
.content-page section {
  display: grid;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0;
}
.content-page .lead {
  color: var(--text);
  font-size: 1.12rem;
}
.bonus-intro {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
}
.content-page p,
.content-page li {
  color: var(--muted);
}
.app-page .content-page p,
.app-page .content-page li {
  font-size: 1.08rem;
}
.app-store-content-button {
  width: min(340px, 100%);
  min-height: 64px;
  padding: 1.05rem 1.5rem;
  font-size: 1.08rem;
}
.responsible-note {
  color: rgba(242, 238, 231, .68) !important;
  font-style: italic;
}
.live-casino-page .content-page section {
  gap: 1.35rem;
}
.live-casino-page .content-page p,
.live-casino-page .content-page li {
  line-height: 1.9;
}
.live-casino-page h2 + p {
  margin-top: .45rem;
}
.content-page ul,
.content-page ol {
  display: grid;
  gap: .55rem;
  margin: 0;
  padding-left: 1.25rem;
}
.content-page .button {
  width: max-content;
  min-width: 220px;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, filter .2s ease;
}
.content-page table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--panel);
}
.content-page th,
.content-page td {
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
}
.content-page th {
  color: var(--text);
  background: var(--panel-3);
}
.content-page tr:last-child td {
  border-bottom: 0;
}
@media (max-width: 520px) {
  .table-wrap {
    overflow: visible;
    border: 0;
  }
  .content-page table,
  .content-page thead,
  .content-page tbody,
  .content-page tr,
  .content-page th,
  .content-page td {
    display: block;
    width: 100%;
    min-width: 0;
  }
  .content-page thead {
    display: none;
  }
  .content-page table {
    display: grid;
    gap: .75rem;
    background: transparent;
  }
  .content-page tr {
    display: grid;
    gap: .5rem;
    padding: .9rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
  }
  .content-page td {
    display: grid;
    grid-template-columns: minmax(92px, 42%) 1fr;
    gap: .75rem;
    align-items: start;
    padding: 0;
    border-bottom: 0;
    overflow-wrap: anywhere;
  }
  .content-page td::before {
    color: var(--muted-2);
    font-weight: 800;
  }
  .content-page td:nth-child(1)::before { content: "Тип"; }
  .content-page td:nth-child(2)::before { content: "Вейджер"; }
  .content-page td:nth-child(3)::before { content: "Срок"; }
  .app-comparison-table td:nth-child(1)::before { content: "Функция"; }
  .app-comparison-table td:nth-child(2)::before { content: "Сайт"; }
  .app-comparison-table td:nth-child(3)::before { content: "Приложение"; }
  .app-requirements-table td:nth-child(1)::before { content: "Параметр"; }
  .app-requirements-table td:nth-child(2)::before { content: "Android"; }
  .app-requirements-table td:nth-child(3)::before { content: "iOS"; }
  .app-page .app-comparison-table td:nth-child(1)::before { content: "Функция" !important; }
  .app-page .app-comparison-table td:nth-child(2)::before { content: "Сайт" !important; }
  .app-page .app-comparison-table td:nth-child(3)::before { content: "Приложение" !important; }
  .app-page .app-requirements-table td:nth-child(1)::before { content: "Параметр" !important; }
  .app-page .app-requirements-table td:nth-child(2)::before { content: "Android" !important; }
  .app-page .app-requirements-table td:nth-child(3)::before { content: "iOS" !important; }
  .app-page .app-comparison-table td:first-child,
  .app-page .app-requirements-table td:first-child {
    margin: -.9rem -.9rem .15rem;
    padding: .8rem .9rem;
    border-radius: 7px 7px 0 0;
    background: linear-gradient(90deg, rgba(160, 118, 46, .28), rgba(0, 33, 57, .35));
    color: var(--text);
    font-weight: 800;
  }
  html[lang="uz"] .content-page td:nth-child(1)::before { content: "Turi"; }
  html[lang="uz"] .content-page td:nth-child(2)::before { content: "Wager"; }
  html[lang="uz"] .content-page td:nth-child(3)::before { content: "Muddat"; }
}
.steps {
  display: grid;
  gap: 1rem;
}
h2 {
  margin: 0;
  font-size: clamp(1.9rem, 8vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
}
.bonus-band p,
.market-copy p,
.seo-copy p,
.steps p,
.faq p {
  color: var(--muted);
  margin: 0;
  font-size: 1.02rem;
}

.bonus-band {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.live-casino-page .bonus-band {
  gap: 2.25rem;
}
.live-casino-page .bonus-band > div {
  display: grid;
  gap: 1rem;
}
.live-casino-page .bonus-band p {
  line-height: 1.85;
}
.bonus-band .button {
  width: 100%;
}

.feature-grid {
  display: grid;
  gap: .75rem;
}
.feature{
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: linear-gradient(90deg, rgba(0, 33, 57, .42), rgba(0, 21, 36, .92));
  cursor: default;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, filter .2s ease;
}
.icon {
  display: inline-flex;
  color: var(--green);
  font-weight: 900;
  margin-bottom: 1rem;
}
h3 {
  margin: 0 0 .45rem;
  font-size: 1.1rem;
}
.feature p,
.market-list span {
  margin: 0;
  color: var(--muted);
}
.market-logo {
  width: 92px;
  height: 48px;
  margin-bottom: .35rem;
  object-fit: contain;
  object-position: left center;
}

.market {
  display: grid;
  gap: 1.2rem;
}
.market-list {
  display: grid;
  gap: .65rem;
}
.market-list div {
  display: grid;
  gap: .25rem;
  padding: 1rem;
  border-left: 3px solid var(--gold);
  background: var(--panel-2);
  border-radius: 0 8px 8px 0;
  cursor: default;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
}
.payment-method-list div {
  grid-template-columns: 1fr auto;
  column-gap: 1rem;
  align-items: center;
  min-height: 116px;
}
.payment-method-list div > strong,
.payment-method-list div > span:not(.payment-logos) {
  grid-column: 1;
}
.payment-logos {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: .35rem;
  min-width: 132px;
  margin: 0;
}
.payment-logos span {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .55rem;
}
.payment-logos img {
  width: clamp(58px, 8vw, 86px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
  border-radius: 6px;
}
.payment-logos img.payment-logo-padded {
  padding: .42rem .72rem;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08);
}
@media (max-width: 679px) {
  .payment-method-list div {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .payment-method-list div > strong,
  .payment-method-list div > span:not(.payment-logos),
  .payment-logos {
    grid-column: 1;
  }
  .payment-logos {
    grid-row: auto;
    min-width: 0;
    order: -1;
    margin-bottom: .35rem;
  }
  .payment-logos span {
    justify-content: flex-start;
  }
  .payment-logos img {
    width: clamp(86px, 31vw, 128px);
    max-height: 76px;
  }
  .payment-logos img.payment-logo-padded {
    padding: .52rem .88rem;
  }
}

.step-list {
  display: grid;
  gap: .75rem;
}
.step-list article {
  display: grid;
  gap: .45rem;
  padding: 1rem;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  cursor: default;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, filter .2s ease;
}
.step-list strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
}

.seo-copy {
  display: grid;
  gap: 1rem;
}

.faq {
  display: grid;
  gap: .75rem;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 1rem;
  cursor: default;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
}
.faq summary {
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}
.faq details p {
  margin-top: .65rem;
}

.site-footer {
  padding: 0 1rem 1.25rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0,37,61,.36), rgba(0,6,10,1)),
    var(--bg);
  color: var(--muted);
}
.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: center;
  padding: 1.35rem 0 1rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand {
  width: max-content;
  color: var(--text);
}
.footer-brand.brand {
  width: 140px;
  min-width: 140px;
}
.footer-grid {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 0;
}
.footer-grid section {
  display: grid;
  gap: .45rem;
  align-content: start;
}
.footer-grid h2 {
  margin: 0 0 .2rem;
  color: var(--text);
  font-size: .86rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-grid a,
.footer-grid span {
  color: var(--muted);
  font-size: .96rem;
}
.footer-grid a:hover {
  color: var(--gold);
}
.footer-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .8rem;
  align-items: start;
  padding: .85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251,249,246,.03);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
}
.footer-notice strong {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
}
.footer-notice p {
  margin: 0;
  font-size: .88rem;
}
@media (hover: hover) and (pointer: fine) {
  .feature:hover,
  .step-list article:hover,
  .market-list div:hover,
  .faq details:hover,
  .table-wrap:hover,
  .footer-notice:hover {
    transform: translateY(-10px) scale(1.012);
    border-color: rgba(204, 159, 92, .72);
    filter: brightness(1.12);
    box-shadow:
      0 22px 46px rgba(0, 0, 0, .42),
      0 0 22px rgba(204, 159, 92, .24),
      0 0 0 1px rgba(204, 159, 92, .16),
      inset 0 1px 0 rgba(255, 255, 255, .08);
  }
  .market-list div:hover,
  .faq details:hover,
  .footer-notice:hover {
    background:
      linear-gradient(90deg, rgba(160, 118, 46, .18), rgba(0, 33, 57, .22)),
      var(--panel-2);
  }
  .feature:hover h3,
  .step-list article:hover h3,
  .market-list div:hover strong,
  .faq details:hover summary {
    color: #fff;
    text-shadow: 0 0 12px rgba(255, 255, 255, .28);
  }
}
@media (hover: none), (pointer: coarse) {
  .feature:active,
  .step-list article:active,
  .market-list div:active,
  .market-list div:focus-within,
  .faq details:active,
  .table-wrap:active,
  .footer-notice:active {
    transform: translateY(-10px) scale(1.012);
    border-color: rgba(204, 159, 92, .72);
    filter: brightness(1.12);
    box-shadow:
      0 22px 46px rgba(0, 0, 0, .42),
      0 0 22px rgba(204, 159, 92, .24),
      0 0 0 1px rgba(204, 159, 92, .16),
      inset 0 1px 0 rgba(255, 255, 255, .08);
  }

  .market-list div:active,
  .market-list div:focus-within,
  .faq details:active,
  .footer-notice:active {
    background:
      linear-gradient(90deg, rgba(160, 118, 46, .18), rgba(0, 33, 57, .22)),
      var(--panel-2);
  }

  .feature:active h3,
  .step-list article:active h3,
  .market-list div:active strong,
  .market-list div:focus-within strong,
  .faq details:active summary {
    color: #fff;
    text-shadow: 0 0 12px rgba(255, 255, 255, .28);
  }
}
@media (max-width: 380px) {
  .site-header {
    padding-inline: .75rem;
  }
  .brand {
    width: 96px;
  }
  .lang-switch button {
    min-width: 36px;
    padding-inline: .5rem;
  }
  .menu-toggle {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }
  .menu-toggle span {
    width: 24px;
  }
  .hero-actions .button {
    min-height: 52px;
    padding-inline: .9rem;
  }
}

@media (min-width: 390px) and (max-width: 679px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    padding-top: .55rem;
  }
}

@media (min-width: 680px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .hero-content { padding-bottom: 2rem; }
  .hero-actions {
    display: flex;
    align-items: center;
  }
  .button { min-width: 188px; }
  .content-page {
    padding-inline: 1.5rem !important;
  }
  .hero-stats { grid-template-columns: repeat(3, 1fr); max-width: 760px; }
  .feature-grid,
  .step-list { grid-template-columns: repeat(2, 1fr); }
  .bonus-band {
    grid-template-columns: 1fr auto;
  }
  .bonus-band .button {
    width: auto;
  }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .site-header { padding: .95rem 2rem; }
  .site-header .brand,
  .site-header .header-actions {
    position: relative;
    z-index: 1;
  }
  .nav-links {
    position: absolute;
    left: 50%;
    width: min(780px, calc(100% - 360px));
    justify-content: center;
    gap: 1.35rem;
    transform: translateX(-50%);
  }
  .hero { min-height: 88vh; align-items: center; }
  .hero-content { padding: 5rem 1rem 3rem; }
  .page-visual {
    width: min(980px, calc(100% - 2rem)) !important;
  }
  .page-visual img {
    max-height: 460px;
  }
  .market{
    grid-template-columns: 1fr 1fr;
  }
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
  .step-list { grid-template-columns: repeat(3, 1fr); }

  .content-page {
    width: min(860px, calc(100% - 4rem));
    max-width: none;
    gap: 1.25rem;
    padding: 4rem 0 5rem !important;
  }

  .content-page .lead {
    max-width: 100%;
    margin: 0;
    padding: 1.4rem 1.6rem;
    border: 1px solid rgba(220, 199, 163, .18);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    background:
      linear-gradient(90deg, rgba(160, 118, 46, .13), rgba(0, 33, 57, .12)),
      rgba(251, 249, 246, .035);
    color: #fffaf0;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.72;
  }

  .content-page section {
    max-width: 100%;
    gap: 1rem;
    padding: 2rem 0 2.25rem;
    border-bottom: 1px solid var(--line);
  }

  .content-page section:nth-of-type(even) {
    margin-left: 0;
  }

  .content-page section:last-child {
    border-bottom: 0;
  }

  .content-page h2 {
    max-width: 100%;
    font-size: clamp(2rem, 3.4vw, 3.05rem);
    line-height: 1.04;
  }

  .content-page p,
  .content-page li {
    max-width: 100%;
    font-size: 1.03rem;
    line-height: 1.75;
  }

  .content-page p {
    margin: 0;
  }

  .content-page ul,
  .content-page ol {
    max-width: 100%;
    gap: .7rem;
    padding-left: 1.4rem;
  }

  .content-page li::marker {
    color: var(--gold-light);
    font-weight: 900;
  }

  .content-page .button {
    margin-top: .35rem;
  }

  .content-page .table-wrap {
    max-width: 100%;
  }

  .content-page .faq {
    max-width: 100%;
    margin-left: 0;
    padding: 2.25rem;
    border: 1px solid rgba(220, 199, 163, .18);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(0, 33, 57, .34), rgba(0, 21, 36, .42));
  }

  .content-page .faq h2 {
    font-size: clamp(2rem, 3vw, 2.75rem);
  }

  .content-page .faq details {
    background: rgba(0, 6, 10, .34);
  }
}

/* Хлебные крошки */
.breadcrumbs {
  max-width: 900px;
  margin: 1.25rem auto -0.5rem;
  padding-inline: 1rem;
  font-size: .82rem;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .3rem .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.breadcrumbs li + li::before {
  content: "\203A";
  color: var(--muted-2);
  opacity: .5;
}
.breadcrumbs a {
  color: var(--muted-2);
  text-decoration: none;
}
.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--gold-light);
  text-decoration: underline;
}
.breadcrumbs [aria-current="page"] {
  color: var(--muted);
  opacity: .7;
}
