html[lang="ru"] {
  --display: var(--font);
}

html[lang="bn"] {
  --font: "Noto Sans Bengali", Inter, ui-sans-serif, system-ui, sans-serif;
  --display: "Noto Sans Bengali", Inter, ui-sans-serif, system-ui, sans-serif;
}

:root {
  --bg: #141415;
  --bg-2: #1a1a1b;
  --card: #1c1c1e;
  --card-2: #222224;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f0f2f5;
  --muted: #8b8f97;
  --green: #00b24b;
  --green-hover: #00c853;
  --green-press: #009a41;
  --blue: #0075ff;
  --blue-hover: #1f84ff;
  --blue-press: #0062d6;
  --radius: 20px;
  --radius-btn: 12px;
  --radius-sm: 14px;
  --header: 64px;
  --font: "Inter", ui-sans-serif, system-ui, sans-serif;
  --display: "Poppins", Inter, ui-sans-serif, sans-serif;
  --color-bg-secondary: var(--bg);
  --color-bg-card: var(--card);
  --color-bg-elevated: var(--card-2);
  --color-bg-card-hover: #2a2a2c;
  --color-text-primary: var(--text);
  --color-text-secondary: #c5c9d0;
  --color-text-muted: var(--muted);
  --color-border-light: var(--line);
  --color-border: rgba(255, 255, 255, 0.06);
  --color-primary: var(--blue);
  --color-primary-light: var(--blue-hover);
  --color-primary-hover: var(--blue-press);
  --color-error: #ef4444;
  --font-primary: var(--font);
  --font-display: var(--display);
  --radius-lg: var(--radius);
  --radius-md: var(--radius-btn);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  background: var(--bg);
  padding-bottom: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: #4da3ff;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--blue);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  background: var(--bg);
}

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo:hover {
  text-decoration: none;
}

.logo-img {
  width: 78px;
  height: 32px;
  object-fit: contain;
}

.header-panel {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.header-inner > .header-auth {
  margin-left: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 44px;
  padding: 2px;
  background: rgba(179, 182, 189, 0.12);
  border-radius: 14px;
  flex-shrink: 0;
}

.nav-menu > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 8px 16px;
  color: #9aa1b1;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  border-radius: 12px;
}

.nav-menu > a::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: none;
  background: currentColor;
  -webkit-mask: var(--nav-icon) center / contain no-repeat;
  mask: var(--nav-icon) center / contain no-repeat;
}

.nav-menu > a + a::after,
.nav-menu > a + .lang-picker::after {
  content: "";
  position: absolute;
  left: -2px;
  top: 50%;
  width: 1px;
  height: 24px;
  background: rgba(179, 182, 189, 0.12);
  transform: translateY(-50%);
  pointer-events: none;
}

.nav-menu > a.nav-home {
  --nav-icon: url("../images/nav/home.svg?v=2");
  width: 56px;
  font-size: 0;
  gap: 0;
}

.nav-menu > a[href$="bonuses"] {
  --nav-icon: url("../images/nav/bonuses.svg");
}

.nav-menu > a[href$="casino"] {
  --nav-icon: url("../images/nav/casino.svg");
}

.nav-menu > a[href$="betting"] {
  --nav-icon: url("../images/nav/sport.svg");
}

.nav-menu > a[href$="app"] {
  --nav-icon: url("../images/nav/app.svg?v=15");
}

.nav-menu > a:hover,
.nav-menu > a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

.nav-menu > a.active {
  color: #fff;
  font-weight: 600;
  background: var(--blue);
}

.nav-menu > a.active:hover,
.nav-menu > a.active:focus-visible {
  color: #fff;
  background: var(--blue-hover);
}

.nav-menu > a.active::after,
.nav-menu > a.active + a::after,
.nav-menu > a.active + .lang-picker::after {
  opacity: 0;
}

.header-auth {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-picker {
  position: relative;
  flex-shrink: 0;
}

.nav-menu > .lang-picker .lang-panel {
  left: auto;
  right: 0;
}

.nav-menu > .lang-picker summary {
  height: 40px;
  padding: 0 12px 0 10px;
  border-radius: 12px;
  color: #9aa1b1;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.nav-menu > .lang-picker summary:hover,
.nav-menu > .lang-picker[open] summary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.lang-picker__icon {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

.lang-picker__flag {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
}

.lang-picker__code {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
}

.lang-picker summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
  height: 44px;
  padding: 0 10px 0 8px;
  border: 0;
  border-radius: var(--radius-btn);
  background: transparent;
  color: #f0f2f5;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.lang-picker summary::-webkit-details-marker {
  display: none;
}

.lang-picker summary::marker {
  content: "";
}

.lang-picker summary:hover,
.lang-picker[open] summary {
  background: transparent;
  color: #fff;
}

.lang-picker summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.lang-panel {
  position: absolute;
  left: 0;
  right: auto;
  top: calc(100% + 8px);
  display: flex;
  flex-direction: column;
  width: min(308px, calc(100vw - 24px));
  max-height: min(calc(376px + 3.25rem), calc(100dvh - 24px));
  padding: 4px 0 0;
  border-radius: 16px;
  background: #f4f6fa;
  color: #111;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  z-index: 20;
  overflow: hidden;
}

.footer-lang .lang-panel {
  top: auto;
  bottom: calc(100% + 8px);
  z-index: 8;
}

.lang-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  padding: 12px 16px 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.lang-panel__list {
  min-height: 0;
  max-height: 376px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 0 10px;
  scrollbar-width: thin;
  scrollbar-color: #c5c9d1 transparent;
}

.lang-panel__list::-webkit-scrollbar {
  width: 6px;
}

.lang-panel__list::-webkit-scrollbar-track {
  background: transparent;
}

.lang-panel__list::-webkit-scrollbar-thumb {
  background: #c5c9d1;
  border-radius: 6px;
}

.lang-panel__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: -4px -6px -4px 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #111;
  cursor: pointer;
}

.lang-panel__close svg {
  pointer-events: none;
}

.lang-panel__close:hover,
.lang-panel__close:focus-visible {
  background: rgba(0, 0, 0, 0.06);
}

.lang-panel__section {
  padding: 8px 16px 4px;
  color: #8b8f97;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.header-auth .lang-panel a,
.lang-panel a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  height: auto;
  min-height: 56px;
  padding: 8px 16px;
  border-radius: 0;
  background: transparent;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  white-space: normal;
}

.header-auth .lang-panel a:hover,
.lang-panel a:hover,
.header-auth .lang-panel a:focus-visible,
.lang-panel a:focus-visible {
  color: #111;
  background: rgba(0, 117, 255, 0.06);
}

.header-auth .lang-panel a[aria-current="page"],
.lang-panel a[aria-current="page"] {
  color: #111;
  background: transparent;
}

.lang-panel__flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  object-fit: cover;
}

.lang-panel__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.lang-panel__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.lang-panel__desc {
  color: #8b8f97;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.lang-panel__check {
  flex-shrink: 0;
  color: var(--blue);
}

.btn,
.header-auth a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-btn);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s ease, filter 0.15s ease;
}

.btn:hover,
.header-auth a:hover {
  text-decoration: none;
}

.btn-ghost,
.header-auth .btn-login {
  background: #2a2a2c;
  color: #f0f2f5;
}

.btn-ghost:hover,
.header-auth .btn-login:hover {
  background: #333336;
  color: #fff;
}

.btn-green,
.header-auth .btn-register {
  background: var(--green);
  color: #fff;
}

.btn-green:hover,
.header-auth .btn-register:hover {
  background: var(--green-hover);
  color: #fff;
}

.btn-blue {
  background: var(--blue);
  color: #fff;
}

.btn-blue:hover {
  background: var(--blue-hover);
  color: #fff;
}

.btn-lg {
  height: 48px;
  padding: 0 22px;
  font-size: 0.95rem;
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: #2a2a2c;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.hero {
  padding: 12px 0 0;
}

.hero:not(:has(.promo-wrap)) {
  padding-bottom: 36px;
}

.hero:not(:has(.promo-wrap)):has(+ .section > .container > .stats:first-child) {
  padding-bottom: 14px;
}

.hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  background: #0e0e10 center / cover no-repeat;
}

.hero-copy > .note {
  margin: 14px 0 0;
  background: rgba(18, 14, 8, 0.72);
}

.hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 28%;
  z-index: 0;
}

.hero-banner--404 img {
  object-position: 92% 78%;
}

.hero-banner--sports img {
  object-position: 88% 42%;
}

.hero-banner--aviator img {
  object-position: 88% 38%;
}

.hero-banner--lucky-jet img {
  object-position: 88% 42%;
}

.hero-banner--not-working img {
  object-position: 92% 52%;
}

.hero-banner--crypto img {
  object-position: 82% 48%;
}

.aviator-demo {
  position: relative;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #070b14;
}

.aviator-demo__header {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 8px 12px 8px 10px;
  background: #171d28;
  border-bottom: 1px solid var(--line);
}

.aviator-demo__brand {
  min-width: 0;
}

.aviator-demo__titles {
  min-width: 0;
}

.aviator-demo__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.aviator-demo__by {
  margin: 2px 0 0;
  font-size: 0.8rem;
  line-height: 1.2;
  color: var(--muted);
}

.aviator-demo__real {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 38px;
  padding: 0 16px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.aviator-demo__real:hover,
.aviator-demo__real:focus-visible {
  background: var(--green-hover);
  color: #fff;
}

.aviator-demo__real:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.aviator-demo__stage {
  position: relative;
  aspect-ratio: 16 / 9;
}

.aviator-demo__poster,
.aviator-demo iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  overflow: hidden;
}

.aviator-demo__poster {
  object-fit: cover;
  object-position: 72% 50%;
}

.aviator-demo__actions {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: radial-gradient(
    ellipse 52% 68% at 50% 50%,
    rgba(7, 11, 20, 0.7) 0%,
    rgba(7, 11, 20, 0.42) 58%,
    rgba(7, 11, 20, 0.22) 100%
  );
}

.aviator-demo__btn {
  flex-direction: column;
  gap: 2px;
  width: min(320px, 100%);
  height: auto;
  min-height: 56px;
  padding: 12px 24px;
  white-space: normal;
  line-height: 1.15;
  text-align: center;
}

.aviator-demo__btn-label {
  font-weight: 700;
}

.aviator-demo__btn-hint {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.92;
}

.aviator-demo.is-playing .aviator-demo__header {
  display: flex;
}

.aviator-demo.is-playing .aviator-demo__poster,
.aviator-demo.is-playing .aviator-demo__actions {
  display: none;
}

@media (max-width: 720px) {
  .aviator-demo {
    border-radius: 12px;
  }

  .aviator-demo__header {
    flex-wrap: wrap;
    min-height: 0;
    padding: 10px;
  }

  .aviator-demo__title {
    font-size: 0.84rem;
  }

  .aviator-demo__real {
    height: 36px;
    padding: 0 12px;
    font-size: 0.8rem;
    margin-left: auto;
  }

  .aviator-demo__stage {
    aspect-ratio: 16 / 9;
    min-height: 0;
    max-height: none;
    overflow: hidden;
  }

  .aviator-demo.is-playing iframe {
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    transform: none;
  }

  .aviator-demo__actions {
    gap: 8px;
    padding: 12px;
  }

  .aviator-demo__btn {
    width: min(280px, 100%);
    min-height: 48px;
    padding: 10px 16px;
  }
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 14, 16, 0.92) 0%,
    rgba(14, 14, 16, 0.62) 42%,
    rgba(14, 14, 16, 0.12) 72%,
    rgba(14, 14, 16, 0.04) 100%
  );
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 40px;
  max-width: 640px;
  width: 100%;
}

.hero-copy .breadcrumb {
  margin-bottom: 10px;
}

.hero-copy .breadcrumb,
.hero-copy .breadcrumb a {
  color: #c5c9d0;
}

.hero-copy .breadcrumb a:hover {
  color: #fff;
}

.hero-actions .copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.hero-actions:has(.btn-lg) .copy-btn {
  height: 48px;
  padding: 0 22px;
  font-size: 0.95rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}

h3 {
  font-size: 1.05rem;
}

.lead {
  margin: 0 0 18px;
  color: #c8ccd3;
  font-size: 1.02rem;
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.disclosure {
  margin: 0 0 14px;
  font-size: 0.82rem;
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d7dbe1;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
}

.promo-wrap {
  margin-top: 14px;
  scroll-margin-top: calc(var(--header) + 12px);
}

.promo-card {
  position: relative;
  overflow: hidden;
  min-height: 271px;
  border-radius: var(--radius);
  color: #fff;
}

.promo-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 12, 14, 0.86) 0%, rgba(12, 12, 14, 0.35) 58%, rgba(12, 12, 14, 0.1) 100%);
  pointer-events: none;
}

.promo-card__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.45fr);
  gap: 24px;
  align-items: center;
  padding: 24px 24px 22px;
  min-height: 271px;
}

.promo-code-label {
  margin: 0;
  color: #cfd3da;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promo-code {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 4px 0 12px;
}

.copy-btn {
  height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius-btn);
  background: var(--blue);
  color: #fff;
  font: 600 0.88rem var(--font);
  cursor: pointer;
}

.copy-btn:hover,
.copy-btn.is-copied {
  background: var(--blue-hover);
}

.promo-note {
  margin: 12px 0 0;
  color: #cfd3da;
  font-size: 0.9rem;
  max-width: 36ch;
}

.promo-note a {
  white-space: nowrap;
}

.muted {
  color: var(--muted);
  margin: 0;
}

.bonus-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  min-height: 128px;
}

.bonus-step {
  background: rgba(12, 12, 14, 0.82);
  border: 0;
  border-radius: var(--radius-sm);
  padding: 16px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bonus-step span:first-child {
  font-size: 0.75rem;
  color: #cfd3da;
}

.bonus-step span:nth-child(2) {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

.bonus-step b {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
}

.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 14px 0;
}

.tile {
  position: relative;
  display: block;
  min-height: 168px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
}

.tile:hover {
  color: #fff;
  text-decoration: none;
  filter: brightness(1.06);
}

.tile img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}

.tile-apk img {
  object-position: 82% 48%;
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 12, 14, 0.86) 0%, rgba(12, 12, 14, 0.35) 58%, rgba(12, 12, 14, 0.1) 100%);
}

.tile-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 70%;
}

.tile-copy p {
  margin: 0;
  color: #cfd3da;
  font-size: 0.92rem;
}

.tile-title {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.section {
  padding: 36px 0;
  /* Offset sticky header, minus section padding so the h2 sits under the bar */
  scroll-margin-top: calc(var(--header) + 16px - 36px);
}

.hero + .section {
  padding-top: 0;
  scroll-margin-top: calc(var(--header) + 16px);
}

.prose article[id],
h2[id] {
  scroll-margin-top: calc(var(--header) + 16px);
}

.section h2 {
  margin-bottom: 8px;
}

.section:has(> .container > .faq-item) > .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section:has(> .container > .faq-item) > .container > h2 {
  margin-bottom: 6px;
}

#games > .container > h2 {
  margin-bottom: 32px;
}

.section > .container > .muted {
  margin-bottom: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.stat {
  background: var(--card);
  border: 0;
  border-radius: var(--radius-sm);
  padding: 16px 16px 18px;
}

a.stat {
  display: block;
  color: inherit;
  transition: filter 0.2s ease, transform 0.2s ease;
}

a.stat:hover {
  color: inherit;
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--text);
}

.stat span {
  color: var(--muted);
  font-size: 0.86rem;
}

.prose p {
  margin: 0 0 12px;
  color: #c5c9d0;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose article + article {
  margin-top: 32px;
}

.prose article > h2 {
  margin-bottom: 12px;
}

.note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 117, 255, 0.12);
  color: #d4e6ff;
  font-size: 0.92rem;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 12px;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cat-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 188px;
  border-radius: var(--radius-sm);
  color: #fff;
  scroll-margin-top: calc(var(--header) + 12px);
}

.cat-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 12, 14, 0.9) 0%, rgba(12, 12, 14, 0.62) 52%, rgba(12, 12, 14, 0.28) 100%);
  pointer-events: none;
}

.cat-card__copy {
  position: relative;
  z-index: 1;
  padding: 18px 18px 20px;
}

.cat-card:hover {
  color: #fff;
  text-decoration: none;
  filter: brightness(1.06);
}

.cat-card h3 {
  margin-bottom: 8px;
  color: #fff;
}

.cat-card p {
  margin: 0;
  color: #cfd3da;
  font-size: 0.92rem;
}

.grid-3 > .cat-card {
  min-height: 200px;
}

.grid-3 > .cat-card > img {
  object-position: 92% center;
}

.grid-3 > .cat-card::after {
  background: linear-gradient(90deg, rgba(12, 12, 14, 0.94) 0%, rgba(12, 12, 14, 0.78) 48%, rgba(12, 12, 14, 0.38) 100%);
}

.grid-3 > .cat-card .cat-card__copy {
  padding-right: 42%;
}

.grid-2 > .cat-card .cat-card__copy {
  padding-right: 40%;
}

.cat-card--wide {
  min-height: 220px;
}

.cat-card--wide > img {
  object-position: right center;
}

.cat-card--wide .cat-card__copy {
  max-width: 34rem;
  padding-right: 24px;
}

.cat-card--hero-lucky-jet > img {
  object-position: 88% 42%;
}

.cat-card--hero-aviator > img {
  object-position: 88% 38%;
}

.card,
.step {
  display: block;
  background: var(--card);
  border: 0;
  border-radius: var(--radius-sm);
  padding: 18px 18px 20px;
  color: inherit;
}

a.card:hover,
a.step:hover {
  text-decoration: none;
  color: inherit;
}

.card h3,
.step h3 {
  margin-bottom: 8px;
}

.card p,
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.step-num {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
}

.games-block + .games-block {
  margin-top: 32px;
}

.games-block + .grid-2 {
  margin-top: 48px;
}

.games-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 32px;
  margin: 0 0 16px;
}

.games-heading {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--text);
}

.games-heading__link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}

.games-heading__link:hover {
  color: inherit;
  text-decoration: none;
}

.games-heading__icon {
  width: 32px;
  height: 32px;
  flex: none;
  object-fit: contain;
}

.games-heading__chevron {
  width: 16px;
  height: 16px;
  flex: none;
  color: #9aa1b1;
}

.games-nav {
  display: flex;
  gap: 4px;
  flex: none;
}

.games-nav-btn {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: rgba(179, 182, 189, 0.12);
  color: var(--text);
  cursor: pointer;
}

.games-nav-btn:hover:not(:disabled) {
  background: rgba(179, 182, 189, 0.2);
}

.games-nav-btn:disabled {
  opacity: 0.38;
  cursor: default;
}

.games-row {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 12px 0;
  margin: -12px 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.games-row::-webkit-scrollbar {
  display: none;
}

.game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text);
  min-height: 0;
  flex: 0 0 133px;
  transition: transform 0.3s ease-out;
}

.game-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  max-width: none;
  object-fit: cover;
}

.game-card__art {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 3 / 4;
  background: rgba(179, 182, 189, 0.12);
}

.game-card:has(img) .game-provider,
.game-card:has(img) .game-title {
  display: none;
}

.game-card:hover,
.game-card:hover .game-playing,
.game-see-all:hover {
  color: inherit;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .game-card:hover,
  .game-see-all:hover {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .game-card,
  .game-see-all {
    transition: none;
  }
}

.game-playing {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: #9aa1b1;
}

.game-playing__n {
  color: var(--text);
}

.game-playing__dot {
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 999px;
  background: var(--green);
}

.game-see-all {
  flex: 0 0 133px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px;
  border-radius: 12px;
  background: rgba(179, 182, 189, 0.12);
  color: var(--text);
  text-align: center;
  transition: transform 0.3s ease-out, background 0.2s ease;
}

.game-see-all:hover {
  color: var(--text);
  text-decoration: none;
  background: rgba(179, 182, 189, 0.2);
}

.game-see-all__title {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}

.game-see-all__count {
  font-size: 12px;
  line-height: 16px;
  color: #9aa1b1;
}

.game-provider {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.82;
}

.game-title {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.15;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.game-aviator {
  background: linear-gradient(180deg, #c62828 0%, #8e1212 100%);
}

.game-lucky {
  background: linear-gradient(180deg, #1565c0 0%, #0d3b73 100%);
}

.game-bonanza {
  background: linear-gradient(180deg, #d81b60 0%, #8e1240 100%);
}

.game-olympus {
  background: linear-gradient(180deg, #ef6c00 0%, #8d3d00 100%);
}

.game-crash {
  background: linear-gradient(180deg, #3949ab 0%, #1a237e 100%);
}

.game-mines {
  background: linear-gradient(180deg, #2e7d32 0%, #1b5e20 100%);
}

.game-jet {
  background: linear-gradient(180deg, #00838f 0%, #004d56 100%);
}

.game-live {
  background: linear-gradient(180deg, #6a1b9a 0%, #4a148c 100%);
}

.faq-item {
  margin-bottom: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--card);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 52px;
  padding: 14px 16px 14px 18px;
  text-align: left;
  background: transparent;
  color: #fff;
  border: 0;
  font: 500 0.95rem/1.35 var(--font);
  cursor: pointer;
}

.faq-item button:focus,
.faq-item button:focus-visible {
  outline: none;
}

.faq-item button::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open button::after {
  margin-top: 4px;
  transform: rotate(225deg);
}

.faq-item .faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item .faq-body-inner {
  padding: 0 18px 22px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-item.open .faq-body-inner {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item .faq-body,
  .faq-item .faq-body-inner,
  .faq-item button::after {
    transition: none;
  }

  .faq-item .faq-body-inner {
    transform: none;
  }
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 32px;
  background: #101011;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 32px 40px;
  align-items: start;
}

.footer-brand {
  min-width: 0;
}

.footer-brand p {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 36ch;
  font-size: 0.9rem;
}

.footer-social-and-lang {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: 36px;
  margin-top: 16px;
}

.footer-social {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px;
  margin-top: 0;
  flex: 1;
  min-width: 0;
}

.footer-lang {
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
}

.footer-lang summary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 36px;
  padding: 0 8px;
  border-radius: 10px;
  background: rgba(179, 182, 189, 0.12);
  color: #f0f2f5;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.footer-lang summary::-webkit-details-marker {
  display: none;
}

.footer-lang summary::marker {
  content: "";
}

.footer-lang summary:hover,
.footer-lang[open] summary {
  background: rgba(179, 182, 189, 0.2);
}

.footer-lang summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.footer-lang__flag {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

.footer-lang__flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-lang__chevron {
  display: block;
  width: 16px;
  height: 16px;
  color: #797f8b;
  transition: transform 0.15s ease;
}

.footer-lang[open] .footer-lang__chevron {
  transform: rotate(180deg);
}

.footer-lang .lang-panel {
  left: auto;
  right: 0;
}

.footer-social a,
.footer-social-more summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: #f0f2f5;
  background: rgba(179, 182, 189, 0.12);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.footer-social a[hidden],
.footer-social-more[hidden] {
  display: none;
}

.footer-social-more {
  position: relative;
}

.footer-social-more summary {
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.footer-social-more summary::-webkit-details-marker {
  display: none;
}

.footer-social-more summary::marker {
  content: "";
}

.footer-social a:hover,
.footer-social a:focus-visible,
.footer-social-more summary:hover,
.footer-social-more[open] summary,
.footer-social-more summary:focus-visible {
  color: #fff;
  background: rgba(179, 182, 189, 0.2);
}

.footer-social a:focus-visible,
.footer-social-more summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.footer-social-panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  display: flex;
  flex-direction: column;
  width: min(308px, calc(100vw - 32px));
  max-height: min(calc(376px + 3.25rem), calc(100dvh - 24px));
  padding: 4px 0 0;
  border-radius: 16px;
  background: #f4f6fa;
  color: #111;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  z-index: 8;
  overflow: hidden;
}

.footer-social-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  padding: 12px 16px 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.footer-social-more__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: -4px -6px -4px 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #111;
  cursor: pointer;
}

.footer-social-more__close svg {
  pointer-events: none;
}

.footer-social-more__close:hover,
.footer-social-more__close:focus-visible {
  background: rgba(0, 0, 0, 0.06);
}

.footer-social-more__close:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.footer-social-panel__list {
  min-height: 0;
  max-height: 376px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 0 10px;
  scrollbar-width: thin;
  scrollbar-color: #c5c9d1 transparent;
}

.footer-social-panel__list::-webkit-scrollbar {
  width: 6px;
}

.footer-social-panel__list::-webkit-scrollbar-track {
  background: transparent;
}

.footer-social-panel__list::-webkit-scrollbar-thumb {
  background: #c5c9d1;
  border-radius: 6px;
}

.footer-social-panel a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: auto;
  height: 48px;
  padding: 0 16px;
  border-radius: 0;
  color: #111;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}

.footer-social-panel a + a {
  border-top: 1px solid #e6e9ef;
}

.footer-social-panel a:hover,
.footer-social-panel a:focus-visible {
  color: #111;
  background: rgba(0, 0, 0, 0.04);
}

.footer-social-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eef0f4;
  color: #111;
  flex-shrink: 0;
}

.footer-social a > svg,
.footer-social-panel__icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.footer-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) minmax(0, 1.1fr) minmax(0, 1.35fr);
  gap: 28px 20px;
  min-width: 0;
}

.footer-nav-group h2 {
  margin: 0 0 10px;
  color: #8d929b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 8px;
  margin-left: -8px;
  border-radius: 8px;
  color: #d5d8de;
  font-size: 0.9rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.footer-links a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.footer-contacts a {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
  min-height: 0;
  padding: 6px 8px;
  overflow-wrap: anywhere;
  font-size: 0.84rem;
  line-height: 1.35;
}

.footer-contact-label {
  color: #8d929b;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
}

.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 28px;
  padding: 0 8px;
  margin-left: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer-age:hover,
.footer-age:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.footer-trust a:not(.footer-age) {
  color: #b8bcc4;
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-trust a:not(.footer-age):hover,
.footer-trust a:not(.footer-age):focus-visible {
  color: var(--text);
}

.footer-trust a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.footer-copy {
  margin: 0;
  color: #7a7e86;
  font-size: 0.8rem;
  line-height: 1.45;
}

.footer-copy a {
  color: #b8bcc4;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-copy a:hover,
.footer-copy a:focus-visible {
  color: var(--text);
}

.footer-copy a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.legal {
  margin-top: 28px;
  font-size: 0.75rem;
  color: #6a6e76;
}

.legal p {
  margin: 0 0 8px;
  line-height: 1.5;
}

.legal p:last-child {
  margin-bottom: 0;
}

.legal a {
  color: #b8bcc4;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal a:hover,
.legal a:focus-visible {
  color: var(--text);
}

.legal a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.cookie-notice {
  --cookie-left: 12px;
  --cookie-chat: 84px;
  position: fixed;
  left: var(--cookie-left);
  right: var(--cookie-chat);
  bottom: 20px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 12px 12px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: #222226;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  color: #d5d8de;
  font-size: 0.84rem;
  line-height: 1.4;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(calc(100% + 28px));
  transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s ease;
}

.cookie-notice.is-visible {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: none;
}

.cookie-notice.is-leaving {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.cookie-notice p {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.cookie-notice a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-notice a:hover,
.cookie-notice a:focus-visible {
  color: #fff;
}

.cookie-notice a:focus-visible,
.cookie-notice__ok:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.cookie-notice__ok {
  flex: 0 0 auto;
  height: 36px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.cookie-notice__ok:hover {
  background: var(--blue-hover);
}

@media (max-width: 480px) {
  .cookie-notice {
    --cookie-left: 12px;
    --cookie-chat: 78px;
    bottom: 10px;
    padding: 12px 12px 12px 16px;
  }
}

.shot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.shot {
  margin: 0;
  background: var(--card);
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.container.prose + .container .shot {
  margin-top: 28px;
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
}

.shot-grid .shot img {
  object-fit: contain;
  object-position: top center;
  background: #0e0e0f;
}

.shot-wide img {
  width: 100%;
  height: auto;
}

.shot figcaption {
  padding: 10px 14px 14px;
  font-size: 0.84rem;
  color: var(--muted);
}

.shot-portrait {
  max-width: 420px;
}

@media (max-width: 980px) {
  .header-panel {
    position: fixed;
    inset: var(--header) 0 auto;
    display: none;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 10px 12px 12px;
    background: #1a1a1b;
    border-bottom: 1px solid var(--line);
    z-index: 51;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: var(--header) 0 0;
    z-index: 40;
    background: rgba(0, 0, 0, 0.5);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-nav-group:nth-child(2) {
    order: 3;
  }

  .footer-nav-group:nth-child(3) {
    order: 4;
  }

  .footer-nav-group:nth-child(4) {
    order: 2;
  }

  body.nav-open .header-panel {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    height: auto;
    padding: 0;
    background: none;
    border-radius: 0;
  }

  .nav-menu > .nav-home {
    display: flex;
  }

  .nav-menu > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 44px;
    height: auto;
    padding: 10px 14px;
    font-size: 0.95rem;
    border-radius: 8px;
  }

  .nav-menu > a.nav-home {
    width: auto;
    padding: 10px 14px;
    font-size: 0.95rem;
    gap: 8px;
  }

  .nav-menu > a::before {
    width: 20px;
    height: 20px;
  }

  .nav-menu > a + a::after,
  .nav-menu > a + .lang-picker::after {
    display: none;
  }

  .header-inner > .header-auth {
    margin-left: auto;
  }

  .nav-menu > .lang-picker {
    order: 1;
    margin-left: 0;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .nav-menu > .lang-picker summary {
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
    height: auto;
    padding: 10px 14px;
  }

  .header-auth a {
    height: 40px;
    padding: 0 14px;
  }

  .mobile-toggle {
    display: flex;
    margin-left: 8px;
  }

  .header-inner {
    display: flex;
    gap: 10px;
  }

  .hero-copy {
    padding: 28px 22px;
    max-width: none;
  }

  .hero-banner {
    min-height: 320px;
  }

  .promo-card__inner,
  .tiles,
  .stats,
  .grid-2,
  .grid-3,
  .bonus-steps,
  .shot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .game-card {
    flex: 0 0 133px;
  }

  #sportsbook .cat-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-nav-group:nth-child(2),
  .footer-nav-group:nth-child(3),
  .footer-nav-group:nth-child(4) {
    order: 0;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 8px;
  }

  .footer-links a {
    min-height: 40px;
    margin-left: 0;
  }

  .footer-contacts {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 2px;
    width: 100%;
  }

  .footer-contacts a {
    min-height: 0;
  }

  .hero-banner {
    min-height: 0;
  }

  .hero-banner:has(.hero-promo-code)::after,
  .hero-banner--games::after,
  .hero-banner--sports::after,
  .hero-banner--aviator::after,
  .hero-banner--lucky-jet::after,
  .hero-banner--payments::after,
  .hero-banner--crypto::after,
  .hero-banner--mobile::after,
  .hero-banner--404::after,
  .hero-banner--not-working::after {
    background: linear-gradient(
      180deg,
      rgba(14, 14, 16, 0.72) 0%,
      rgba(14, 14, 16, 0.68) 48%,
      rgba(14, 14, 16, 0.9) 100%
    );
  }

  .hero-copy {
    padding: 20px 16px 22px;
  }

  .hero-copy h1 {
    font-size: 1.55rem;
    margin-bottom: 10px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 8px;
  }

  .hero-copy .lead {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }

  .hero-copy .disclosure {
    margin-bottom: 12px;
  }

  .hero-actions {
    flex-direction: column;
    margin-bottom: 12px;
  }

  .hero-actions .btn,
  .hero-actions .copy-btn {
    width: 100%;
  }

  .promo-card,
  .promo-card__inner {
    min-height: 0;
  }

  .promo-card__inner,
  .tiles,
  .stats,
  .grid-2,
  .grid-3,
  .bonus-steps,
  .shot-grid {
    grid-template-columns: 1fr;
  }

  #sportsbook .cat-grid.grid-3 {
    grid-template-columns: 1fr;
  }

  .bonus-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tile img,
  .tile {
    min-height: 150px;
  }

  .tile img {
    height: 150px;
  }
}

@media (max-width: 420px) {
  .header-auth .btn-login {
    padding: 0 12px;
  }

  .logo-img {
    width: 68px;
    height: 28px;
  }
}

/* AZ inner pages — promo tokens */

.page-hero {
  padding: 24px 0 8px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.page-hero-copy,
.page-hero-grid .shot {
  min-width: 0;
  width: 100%;
}

.page-hero-copy p,
.page-hero > .container > p {
  margin: 0 0 16px;
  color: #c8ccd3;
}

.page-hero-copy .disclosure {
  margin: 0 0 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 12px;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--text);
}

.hero-promo-code {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin: 0 0 16px;
}

.copy-btn--code {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  height: auto;
  min-height: 0;
  margin: 0.08em 0 0;
  padding: 0.12em 0.5em 0.14em 0.58em;
  font-family: var(--display);
  font-size: 0.78em;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.hero-promo-code .copy-btn--code {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.copy-btn--code svg {
  flex-shrink: 0;
  width: 0.72em;
  height: 0.72em;
}

.prose ul,
.prose ol {
  color: #c5c9d0;
  padding-left: 1.2rem;
}

.note.warn,
.warn {
  background: rgba(246, 196, 83, 0.12);
  color: #fde68a;
}

.page-card {
  display: block;
  background: var(--card);
  border: 0;
  border-radius: var(--radius-sm);
  padding: 18px 18px 20px;
  color: inherit;
}

a.page-card {
  text-decoration: none;
}

a.page-card:hover {
  text-decoration: none;
  color: inherit;
  filter: brightness(1.06);
}

.page-card .kicker {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-card h3 {
  margin: 8px 0 8px;
}

.page-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.welcome-row {
  position: relative;
  margin-top: 8px;
  overflow: visible;
}

.welcome-row__nav {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 164px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 20, 22, 0.78);
  color: #fff;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.welcome-row__nav:hover:not(:disabled) {
  background: rgba(20, 20, 22, 0.94);
}

.welcome-row__nav:disabled {
  opacity: 0;
  pointer-events: none;
}

.welcome-cards {
  display: flex;
  gap: 16px;
  margin-top: 0;
  padding: 36px 0 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.welcome-cards::-webkit-scrollbar {
  display: none;
}

.welcome-card {
  position: relative;
  flex: 0 0 254px;
  width: 254px;
  height: 256px;
  min-height: 256px;
  padding: 64px 0 0;
  border-radius: 24px;
  color: #fff;
  overflow: visible;
  scroll-snap-align: start;
}

.welcome-card--1 {
  background: radial-gradient(138.19% 136.5% at 98.17% 97.75%, #b29d81 0%, #806c50 50%, #5e492d 100%);
}

.welcome-card--2 {
  background: radial-gradient(186.44% 143.37% at 100% 100%, #77b9da 0%, #386780 50.7%, #144a66 100%);
}

.welcome-card--3 {
  background: radial-gradient(151.01% 138.12% at 98.17% 100%, #86a8e1 0%, #1d4588 100%);
}

.welcome-card--4 {
  background: radial-gradient(151.01% 138.12% at 98.17% 100%, #a984c3 0%, #562b74 100%);
}

.welcome-card__gift {
  position: absolute;
  top: -36px;
  left: 50%;
  display: block;
  width: 200px;
  height: 150px;
  max-width: none;
  margin: 0;
  object-fit: contain;
  object-position: center top;
  transform: translateX(-50%);
  pointer-events: none;
}

.welcome-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 192px;
  padding: 52px 16px 18px;
}

.welcome-card__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.welcome-card__value-row {
  position: relative;
  width: 100%;
  height: 24px;
}

.welcome-card__value {
  display: block;
  font-family: Inter, Poppins, ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.47px;
  color: #fff;
  text-align: center;
}

.welcome-card__info {
  position: absolute;
  top: 4px;
  right: 0;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: #fff;
}

.welcome-card__info:hover {
  color: #fff;
}

.welcome-card__order {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.64);
}

.welcome-card__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.welcome-card__timer {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 20px;
  margin: 8px 0 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.welcome-card__timer span:nth-child(odd) {
  width: 16px;
  color: #fff;
  text-align: center;
}

.welcome-card__timer span:nth-child(even) {
  width: 5px;
  color: rgba(255, 255, 255, 0.64);
}

.welcome-card__claim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.welcome-card__claim:hover {
  color: #000;
  background: #f3f5f8;
}

.welcome-card__lock {
  display: grid;
  place-items: center;
  width: 100%;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  opacity: 0.5;
}

.shot-grid .shot {
  display: flex;
  flex-direction: column;
}

.shot-grid .shot figcaption {
  flex: 1;
}

@media (max-width: 991px) {
  .welcome-row__nav {
    display: none;
  }

  .welcome-card {
    flex-basis: 254px;
  }
}
.table-wrapper {
  overflow: hidden;
  background-color: var(--card);
  border-radius: var(--radius-sm);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.34) transparent;
  background-image:
    linear-gradient(to right, var(--card) 30%, transparent),
    linear-gradient(to left, var(--card) 30%, transparent),
    linear-gradient(to left, rgba(0, 0, 0, 0.42), transparent 72%),
    linear-gradient(var(--card), var(--card));
  background-position: left top, right top, right top, right bottom;
  background-repeat: no-repeat;
  background-size: 40px calc(100% - 6px), 40px calc(100% - 16px), 18px calc(100% - 16px), 22px 16px;
  background-attachment: local, local, scroll, scroll;
}

.table-scroll::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}

.table-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  margin: 0 8px 2px;
}

.table-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.34);
  border-radius: 99px;
}

.table-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

.table-scroll::-webkit-scrollbar-button,
.table-scroll::-webkit-scrollbar-button:single-button,
.table-scroll::-webkit-scrollbar-button:horizontal:decrement,
.table-scroll::-webkit-scrollbar-button:horizontal:increment {
  display: none;
  width: 0;
  height: 0;
}

.table-scroll::-webkit-scrollbar-corner {
  background: transparent;
}

.info-table {
  width: max(100%, 36rem);
  border-collapse: collapse;
  font-size: 0.92rem;
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: #c5c9d0;
}

.info-table th:not(:first-child),
.info-table td:not(:first-child) {
  min-width: 7.5rem;
}

.info-table th:first-child,
.info-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  min-width: 9rem;
  background: var(--card);
}

.info-table thead th:first-child {
  z-index: 2;
}

.info-table th {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.th-short,
.cell-short {
  display: none;
}

.info-table tr:last-child td {
  border-bottom: 0;
}

.info-table--methods th:first-child,
.info-table--methods td:first-child {
  min-width: 15.5rem;
}

.info-table--methods td:first-child {
  vertical-align: middle;
}

.pay-method {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pay-method-logos {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.pay-logo {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}

@media (max-width: 720px) {
  .info-table {
    font-size: 0.88rem;
  }

  .info-table th,
  .info-table td {
    padding: 12px 14px;
  }

  .table-wrapper:has(.info-table--compact) {
    padding-bottom: 0;
  }

  .table-wrapper:has(.info-table--compact) .table-scroll {
    overflow-x: visible;
    padding-bottom: 0;
    background: none;
  }

  .info-table--compact {
    width: 100%;
    table-layout: fixed;
    font-size: 0.82rem;
  }

  .info-table--compact .th-long,
  .info-table--compact .cell-long {
    display: none;
  }

  .info-table--compact .th-short,
  .info-table--compact .cell-short {
    display: inline;
  }

  .info-table--compact th,
  .info-table--compact td,
  .info-table--compact th:first-child,
  .info-table--compact td:first-child,
  .info-table--compact th:not(:first-child),
  .info-table--compact td:not(:first-child) {
    min-width: 0;
    padding: 10px 6px;
    overflow-wrap: break-word;
    hyphens: manual;
  }

  .info-table--compact th:first-child,
  .info-table--compact td:first-child {
    width: 32%;
    padding-left: 12px;
    position: static;
  }

  .info-table--compact th:not(:first-child),
  .info-table--compact td:not(:first-child) {
    width: 22.66%;
    padding-right: 10px;
    white-space: nowrap;
  }

  .info-table--compact th {
    font-size: 0.65rem;
    letter-spacing: 0.03em;
  }

  .table-wrapper:has(.info-table--stack) {
    overflow: visible;
    background: transparent;
    border-radius: 0;
    padding-bottom: 0;
  }

  .table-wrapper:has(.info-table--stack) .table-scroll {
    overflow: visible;
    padding-bottom: 0;
    background: none;
  }

  .info-table--stack {
    display: block;
    width: 100%;
  }

  .info-table--stack thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .info-table--stack tbody {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .info-table--stack tr {
    display: block;
    background: var(--card);
    border-radius: var(--radius-sm);
    padding: 16px 16px 18px;
  }

  .info-table--stack th,
  .info-table--stack td,
  .info-table--stack th:first-child,
  .info-table--stack td:first-child,
  .info-table--stack th:not(:first-child),
  .info-table--stack td:not(:first-child) {
    display: block;
    position: static;
    width: auto;
    min-width: 0;
    padding: 0;
    border: 0;
    background: none;
    z-index: auto;
  }

  .info-table--stack td:first-child,
  .info-table--stack tr:last-child td:first-child {
    padding-bottom: 12px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-weight: 600;
  }

  .info-table--stack td:not(:first-child) {
    padding-top: 12px;
  }

  .info-table--stack td:not(:first-child)::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .info-table--stack td[data-label="Safe response"] {
    color: var(--text);
  }

  .info-table--stack .pay-method {
    flex-wrap: wrap;
  }
}

.code {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

.bonus-ladder {
  margin-top: 18px;
  padding: 8px 6px 8px;
  background: var(--card);
  border-radius: var(--radius-sm);
}

.bonus-ladder__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: auto repeat(7, minmax(0, 1fr));
  grid-template-rows: auto 18px auto;
  align-items: stretch;
}

.bonus-ladder__list > li:not(.bonus-ladder__track) {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1 / span 3;
  justify-items: center;
  min-width: 0;
  padding: 8px 2px 8px;
  --rail: #1c3f2c;
  --rail-next: #1c3f2c;
  --dot: #3a6148;
  --punch: var(--card);
  --rate: #d0d3d8;
}

.bonus-ladder__list > li:nth-child(2) {
  grid-column: 2;
  --rail-next: #244a34;
  --dot: #3a6148;
  --rate: #d0d3d8;
}

.bonus-ladder__list > li:nth-child(3) {
  grid-column: 3;
  --rail: #244a34;
  --rail-next: #2d6f48;
  --dot: #4a7d59;
  --rate: #d6d9de;
}

.bonus-ladder__list > li:nth-child(4) {
  grid-column: 4;
  --rail: #2d6f48;
  --rail-next: #1e8a4c;
  --dot: #3d9a58;
  --rate: #dfe2e6;
}

.bonus-ladder__list > li:nth-child(5) {
  grid-column: 5;
  --rail: #1e8a4c;
  --rail-next: #12a84c;
  --dot: #2aa84e;
  --rate: #e8eaee;
}

.bonus-ladder__list > li:nth-child(6) {
  grid-column: 6;
  --rail: #12a84c;
  --rail-next: #00b24b;
  --dot: var(--green);
  --rate: var(--text);
}

.bonus-ladder__list > li:nth-child(7) {
  grid-column: 7;
  --rail: #00b24b;
  --rail-next: #3ee06a;
  --dot: var(--green-hover);
  --rate: var(--text);
}

.bonus-ladder__list > li.bonus-ladder__peak {
  grid-column: 8;
  --rail: #3ee06a;
  --rail-next: #5cff88;
  --dot: #5cff88;
  --rate: var(--green-hover);
  border-radius: 12px;
  background: rgba(0, 178, 75, 0.16);
  padding: 8px 10px;
}

.bonus-ladder__track {
  grid-column: 2 / -1;
  grid-row: 2;
  align-self: center;
  justify-self: center;
  width: calc(100% * 6 / 7);
  height: 4px;
  padding: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    90deg,
    #3a6148 0%,
    #4a7d59 16.6%,
    #2aa84e 33.3%,
    #00b24b 50%,
    #00c853 66.6%,
    #3ee06a 83.3%,
    #5cff88 100%
  );
}

.bonus-ladder__rate {
  grid-row: 1;
  align-self: end;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--rate);
  padding-bottom: 8px;
}

.bonus-ladder__list > li:nth-child(6) .bonus-ladder__rate,
.bonus-ladder__list > li:nth-child(7) .bonus-ladder__rate {
  font-size: 1.12rem;
}

.bonus-ladder__peak .bonus-ladder__rate {
  color: var(--green-hover);
  font-size: 1.38rem;
}

.bonus-ladder__events {
  grid-row: 3;
  align-self: start;
  position: relative;
  color: var(--rate);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-top: 8px;
}

.bonus-ladder__list > li:nth-child(6) .bonus-ladder__events,
.bonus-ladder__list > li:nth-child(7) .bonus-ladder__events,
.bonus-ladder__peak .bonus-ladder__events {
  color: var(--text);
}

.bonus-ladder__unit {
  display: none;
}

.bonus-ladder__rail {
  grid-row: 2;
  align-self: stretch;
  justify-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: auto;
  min-width: 0;
}

.bonus-ladder__rail::before {
  content: none;
}

.bonus-ladder__list > li.bonus-ladder__axis {
  grid-column: 1;
  --rail: transparent;
  --rail-next: transparent;
  --dot: transparent;
  --punch: transparent;
  --rate: var(--muted);
  justify-items: start;
  padding-left: 10px;
  padding-right: 12px;
}

.bonus-ladder__axis .bonus-ladder__rate,
.bonus-ladder__axis .bonus-ladder__events {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.bonus-ladder__axis .bonus-ladder__dot {
  display: none;
}

.bonus-ladder__dot {
  position: relative;
  z-index: 2;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--dot);
}

.bonus-ladder__list > li.bonus-ladder__peak .bonus-ladder__dot {
  width: 14px;
  height: 14px;
}

@media (max-width: 720px) {
  .bonus-ladder {
    padding: 8px 0 0;
    overflow: hidden;
  }

  .bonus-ladder__list {
    position: relative;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .bonus-ladder__list > li:not(.bonus-ladder__track) {
    grid-template-columns: 16px auto minmax(12px, 1fr) auto;
    grid-template-rows: none;
    grid-column: auto;
    grid-row: auto;
    grid-template-areas: "rail events lead rate";
    justify-items: stretch;
    align-items: stretch;
    column-gap: 8px;
    min-height: 36px;
    padding: 0 14px;
  }

  .bonus-ladder__list > li:not(.bonus-ladder__axis):not(.bonus-ladder__peak):not(.bonus-ladder__track)::after {
    content: "";
    grid-area: lead;
    align-self: center;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
  }

  .bonus-ladder__list > li.bonus-ladder__peak {
    min-height: 48px;
    margin: 0;
    padding: 0 14px;
    border-radius: 0;
  }

  .bonus-ladder__track {
    display: block;
    position: absolute;
    grid-column: auto;
    grid-row: auto;
    inset: 0 auto 0 14px;
    width: 16px;
    height: auto;
    justify-self: start;
    align-self: stretch;
    background: none;
    z-index: 1;
  }

  .bonus-ladder__track::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 18px;
    bottom: 24px;
    width: 4px;
    transform: translateX(-50%);
    background: linear-gradient(
      180deg,
      #3a6148 0%,
      #4a7d59 16.6%,
      #2aa84e 33.3%,
      #00b24b 50%,
      #00c853 66.6%,
      #3ee06a 83.3%,
      #5cff88 100%
    );
  }

  .bonus-ladder__list > li.bonus-ladder__axis {
    display: none;
  }

  .bonus-ladder__unit {
    display: inline;
    margin-left: 0.32em;
    font-family: var(--font);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-transform: none;
    color: var(--muted);
    white-space: nowrap;
  }

  .bonus-ladder__rate {
    grid-row: auto;
    grid-area: rate;
    display: flex;
    align-items: baseline;
    align-self: stretch;
    padding: 6px 0;
    font-size: 0.98rem;
    white-space: nowrap;
  }

  .bonus-ladder__list > li:nth-child(6) .bonus-ladder__rate,
  .bonus-ladder__list > li:nth-child(7) .bonus-ladder__rate {
    font-size: 1.05rem;
  }

  .bonus-ladder__peak .bonus-ladder__rate {
    font-size: 1.22rem;
  }

  .bonus-ladder__events {
    grid-row: auto;
    grid-area: events;
    display: flex;
    align-items: baseline;
    align-self: stretch;
    justify-self: start;
    padding: 6px 0;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--rate);
    letter-spacing: 0;
    white-space: nowrap;
  }

  .bonus-ladder__list > li:nth-child(6) .bonus-ladder__events,
  .bonus-ladder__list > li:nth-child(7) .bonus-ladder__events,
  .bonus-ladder__peak .bonus-ladder__events {
    color: var(--text);
    font-weight: 600;
  }

  .bonus-ladder__rail {
    grid-row: auto;
    grid-area: rail;
    width: 16px;
    height: auto;
    min-height: 36px;
  }

  .bonus-ladder__list > li.bonus-ladder__peak .bonus-ladder__rail {
    min-height: 48px;
  }
}
