/* === GLOBAL COLORS === */
:root {
  --color-bg: #0b0a10;
  --color-bg-deep: #09080d;
  --color-bg-header: #13121c;
  --color-bg-header-dark: #0f0e17;
  --color-surface: #15141f;
  --color-surface-2: #1b1a27;

  --color-text: #abb1bf;
  --color-text-soft: #d7dbe3;
  --color-text-muted: #8f96a6;

  --color-border: #a6e845;
  --color-border-soft: rgba(166, 232, 69, 0.35);
  --color-glow: rgba(166, 232, 69, 0.22);

  --color-button-primary: #c4c9d2;
  --color-button-primary-2: #d7dbe3;
  --color-button-primary-dark: #aeb4bf;
  --color-button-primary-text: #20222e;

  --color-login-bg: #c4c9d2;
  --color-login-bg-2: #afb5c0;

  --color-pill: #1b1f1a;
  --color-pill-2: #141711;

  --color-content-card-base-bg: #13121c;
  --color-content-card-base-border: rgba(166, 232, 69, 0.28);

  --shadow-text: 0 1px 0 rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 10px 26px rgba(0, 0, 0, 0.28);

  --radius-main: 18px;
  --radius-pill: 999px;
  --radius-button-primary: 18px;
}

/* === RESET === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
}

body {
  min-width: 320px;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  background:
    radial-gradient(circle at top center, rgba(166, 232, 69, 0.06), transparent 30%),
    linear-gradient(180deg, #111019 0%, #0b0a10 26%, #09080d 100%);
  color: var(--color-text);
  line-height: 1.65;
  letter-spacing: 0.15px;
}

/* === ACCESSIBILITY === */
.accessibility-skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.accessibility-skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: #ffffff;
  color: #0b0a10;
  border-radius: 10px;
  z-index: 9999;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* === LINKS === */
a {
  color: inherit;
  text-decoration: none;
}

/* === LAYOUT === */
section,
header,
footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 20px;
}

section {
  background: transparent;
}

/* === HEADER === */
header {
  background: linear-gradient(180deg, #15141f 0%, #111019 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-radius: 0 0 20px 20px;
  border: 1px solid rgba(166, 232, 69, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.18);
}

.site-header__brand img {
  display: block;
}

.site-header__nav-toggle {
  display: none;
}

.site-header__nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  color: #e4e7ee;
}

.site-header__nav a {
  opacity: 0.92;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-header__nav a:hover,
.site-header__nav a[aria-current="page"] {
  opacity: 1;
  color: var(--color-border);
}

.site-header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.site-header__actions a {
  min-height: 46px;
  padding: 11px 22px;
  border-radius: 18px;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(166, 232, 69, 0.24);
  color: var(--color-button-primary-text);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.site-header__actions .button-primary-login {
  background: linear-gradient(180deg, #d2d6de 0%, #c4c9d2 100%);
}

.site-header__actions .button-primary-register {
  background: linear-gradient(180deg, #d7e8b2 0%, #c9de91 100%);
}

.site-header__actions a:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* === BURGER === */
.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}

.site-header__burger span {
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__nav-toggle:checked + .site-header__burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header__nav-toggle:checked + .site-header__burger span:nth-child(2) {
  opacity: 0;
}

.site-header__nav-toggle:checked + .site-header__burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* === HERO === */
.hero-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding-top: 28px;
  padding-bottom: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
  border-bottom: 1px solid rgba(166, 232, 69, 0.18);
}

.hero-banner-text {
  width: 60%;
}

.hero-banner-image {
  width: 40%;
}

.hero-banner-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  margin-bottom: 0;
}

.hero-banner-text h1,
.hero-banner-text h2,
.hero-banner-text h3 {
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
  color: #f4f6fa;
  text-shadow: var(--shadow-text);
  margin-bottom: 16px;
}

.hero-banner-text h1 span,
.hero-banner-text h2 span,
.hero-banner-text h3 span {
  color: var(--color-border);
}

.hero-banner-text p {
  color: #c2c8d4;
  margin-bottom: 16px;
}

.hero-banner-text small,
.hero-banner-text .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-border);
  letter-spacing: 0.8px;
}

.hero-banner-text a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 28px;
  border-radius: 18px;
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--color-button-primary-text);
  margin-top: 14px;
  background: linear-gradient(180deg, #d4d8df 0%, #bfc5cf 100%);
  border: 1px solid rgba(166, 232, 69, 0.22);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16);
}

.hero-banner-text a:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* === HEADINGS / TEXT === */
section h1,
section h2,
section h3 {
  margin-bottom: 16px;
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-weight: 900;
  color: #f4f6fa;
  text-shadow: var(--shadow-text);
}

section h1 span,
section h2 span,
section h3 span {
  color: var(--color-border);
}

section h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -1.4px;
}

section h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.04;
}

section h3 {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.12;
}

section p,
section li {
  color: #b6bcc8;
  font-size: 18px;
}

section p {
  margin-bottom: 16px;
}

section ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

/* === BUTTONS === */
.section-action {
  text-align: center;
  margin-top: 10px;
}

.section-action .button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  background: linear-gradient(180deg, #d2d6de 0%, #c4c9d2 100%);
  color: var(--color-button-primary-text);
  padding: 12px 24px;
  border-radius: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.45px;
  border: 1px solid rgba(166, 232, 69, 0.24);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.section-action .button-primary:hover {
  filter: brightness(1.03);
}

/* === SIMPLE IMAGE BLOCKS === */
.bonuses-list,
.bonus-row,
.hero-banner,
footer {
  position: relative;
}

.bonuses-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bonuses-list a,
.bonus-row-image a {
  display: block;
}

.bonuses-list img,
.bonus-row-image img {
  border-radius: 16px;
  border: 1px solid rgba(166, 232, 69, 0.24);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.bonus-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.bonus-row-text {
  width: 60%;
}

.bonus-row-image {
  width: 40%;
}

.bonus-row-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  margin-bottom: 0;
}

/* === TABS === */
.section-tabs,
.filters,
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section-tabs a,
.filters a,
.category-list a,
.section-tabs button,
.filters button,
.category-list button {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1d1d29 0%, #15141f 100%);
  border: 1px solid rgba(166, 232, 69, 0.22);
  color: #d7dbe3;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

/* === CONTENT CARDS === */
.game-content-card-base,
.content-card-base,
article,
.bonus-content-card-base {
  background: linear-gradient(180deg, #13121c 0%, #101019 100%);
  border: 1px solid var(--color-content-card-base-border);
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.game-content-card-base h3,
.content-card-base h3,
article h3,
.bonus-content-card-base h3 {
  color: #f4f6fa;
}

/* === BONUS SLIDER / HORIZONTAL BANNERS === */
.bonus-slider {
  position: relative;
  width: 100%;
  max-width: 980px;
  overflow: hidden;
  margin: 18px auto 26px;
  padding: 0;
  border-radius: 24px;
}

.bonus-slider-track {
  display: flex;
  transition: none;
  will-change: auto;
}

.bonus-slider.is-slider-active .bonus-slider-track {
  transition: transform 0.35s ease;
  will-change: transform;
}

.bonus-slide {
  min-width: 100%;
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bonus-slide img {
  width: 100%;
  max-width: 980px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 24px;
  border: 1px solid rgba(166, 232, 69, 0.24);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(166, 232, 69, 0.1) inset;
}

.bonus-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  pointer-events: none;
}

.bonus-slider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  opacity: 1;
}

.bonus-slider-dots span.active {
  background: var(--color-border);
  transform: scale(1.15);
}

.bonus-slider-dots span:hover {
  background: rgba(166, 232, 69, 0.8);
}

/* === CAROUSEL BASE === */
.carousel {
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
}

.carousel-track {
  display: flex;
  gap: 12px;
  width: max-content;
}

.carousel-track img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  margin-bottom: 0;
  border: 1px solid rgba(166, 232, 69, 0.24);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

/* === SLOTS + SPORTS === */
.slots-carousel,
.sports-carousel {
  width: 100%;
  overflow: hidden;
  margin: 16px 0 24px;
}

.slots-carousel .carousel-track,
.sports-carousel .carousel-track {
  display: flex;
  gap: 12px;
  width: auto;
  will-change: transform;
}

.slots-carousel .carousel-track a,
.sports-carousel .carousel-track a {
  flex: 0 0 calc((100vw - 128px) / 7) !important;
  width: calc((100vw - 128px) / 7) !important;
  max-width: calc((100vw - 128px) / 7) !important;
  display: block;
}

.slots-carousel .carousel-track img,
.sports-carousel .carousel-track img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  border-radius: 10px;
}

@media (min-width: 1312px) {
  .slots-carousel .carousel-track a,
  .sports-carousel .carousel-track a {
    flex: 0 0 calc((1280px - 32px - 72px) / 7) !important;
    width: calc((1280px - 32px - 72px) / 7) !important;
    max-width: calc((1280px - 32px - 72px) / 7) !important;
  }
}

@media (max-width: 992px) {
  .slots-carousel .carousel-track a,
  .sports-carousel .carousel-track a {
    flex: 0 0 calc((100vw - 88px) / 4) !important;
    width: calc((100vw - 88px) / 4) !important;
    max-width: calc((100vw - 88px) / 4) !important;
  }
}

@media (max-width: 768px) {
  .slots-carousel .carousel-track,
  .sports-carousel .carousel-track {
    gap: 0;
  }

  .slots-carousel .carousel-track a,
  .sports-carousel .carousel-track a {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

.sports-carousel {
  position: relative;
}

.sports-carousel .carousel-track {
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: max-content;
  animation: none !important;
  will-change: transform;
}

.sport-content-card-base {
  flex: 0 0 165px;
  width: 165px;
  min-width: 165px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 12px 10px 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, #171621 0%, #101019 100%);
  border: 1px solid rgba(166, 232, 69, 0.22);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.sport-content-card-base::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.sport-content-card-base__image {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 116px;
  padding: 8px 6px 2px;
}

.sport-content-card-base__image img {
  max-width: 80px;
  max-height: 80px;
  width: auto;
  height: auto;
  display: block;
  margin: 0;
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.18));
}

.sport-content-card-base__title {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
  color: #f3f5f8;
  padding: 6px 6px 0;
  min-height: 34px;
}

.sport-content-card-base:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

/* === FOOTER === */
footer {
  background: linear-gradient(180deg, #13121c 0%, #0f0e17 100%);
  margin-top: 40px;
  padding-top: 24px;
  padding-bottom: 24px;
  text-align: center;
  font-size: 14px;
  border-radius: 18px 18px 0 0;
  border: 1px solid rgba(166, 232, 69, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 -8px 24px rgba(0, 0, 0, 0.18);
  color: #c5cad5;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  margin: 0;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  color: #d7dbe3;
}

.footer-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.footer-payments {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 18px 0 12px;
}

.footer-copy {
  color: #a6adbb;
}

/* === BONUS PAGE HERO === */
.hero-banner-bonus-page {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 22px 30px;
  min-height: 430px;
  border-radius: 0;
  border-bottom: 1px solid rgba(166, 232, 69, 0.18);
  background: linear-gradient(180deg, #14131d 0%, #0d0c13 100%);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

.hero-banner-bonus-page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner-bonus-page__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  filter: saturate(1.02);
}

.hero-banner-bonus-page__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 10, 16, 0.95) 0%, rgba(11, 10, 16, 0.9) 34%, rgba(11, 10, 16, 0.56) 62%, rgba(11, 10, 16, 0.32) 100%);
}

.hero-banner-bonus-page__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
}

.hero-banner-bonus-page__left {
  width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-banner-bonus-page__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 7px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(166, 232, 69, 0.08);
  border: 1px solid rgba(166, 232, 69, 0.25);
  color: var(--color-border);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-banner-bonus-page h1 {
  margin: 0 0 18px;
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-size: 64px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -1.3px;
  text-transform: none;
  color: #ffffff;
}

.hero-banner-bonus-page h1 span {
  color: var(--color-border);
}

.hero-banner-bonus-page p {
  max-width: 690px;
  margin: 0 0 28px;
  color: #c0c6d1;
  font-size: 18px;
  line-height: 1.62;
}

.hero-banner-bonus-page__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-banner-bonus-page__button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.hero-banner-bonus-page__button-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.hero-banner-bonus-page__button-primary--primary {
  background: linear-gradient(180deg, #d2d6de 0%, #c4c9d2 100%);
  color: #171717;
}

.hero-banner-bonus-page__button-primary--secondary {
  background: linear-gradient(180deg, #1a1c1f 0%, #13141a 100%);
  color: var(--color-border);
  border: 1px solid rgba(166, 232, 69, 0.22);
}

.hero-banner-bonus-page__right {
  width: 42%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-banner-bonus-page__content-card-base {
  width: 420px;
  max-width: 100%;
  border-radius: 24px;
  padding: 26px 26px 22px;
  background: linear-gradient(180deg, rgba(25, 24, 35, 0.94) 0%, rgba(15, 14, 23, 0.98) 100%);
  border: 1px solid rgba(166, 232, 69, 0.24);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
  text-align: center;
  backdrop-filter: blur(1px);
}

.hero-banner-bonus-page__content-card-base-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 28px;
  padding: 6px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(166, 232, 69, 0.12);
  color: var(--color-border);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(166, 232, 69, 0.22);
}

.hero-banner-bonus-page__content-card-base-title {
  margin-bottom: 12px;
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-size: 42px;
  line-height: 1.02;
  font-weight: 900;
  color: #f5f7fa;
}

.hero-banner-bonus-page__content-card-base-text {
  margin-bottom: 22px;
  color: #c0c6d1;
  font-size: 17px;
  line-height: 1.45;
}

.hero-banner-bonus-page__content-card-base-button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #d2d6de 0%, #c4c9d2 100%);
  color: #151515;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.hero-banner-bonus-page__content-card-base-note {
  margin-top: 14px;
  color: rgba(171, 177, 191, 0.72);
  font-size: 11px;
  line-height: 1.4;
}

/* === BONUS ZIGZAG / SMALLER IMAGES === */
.bonus-zigzag {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 18px;
}

.bonus-zigzag__item {
  display: flex;
  align-items: center;
  gap: 36px;
  background: linear-gradient(180deg, rgba(20, 19, 29, 0.82) 0%, rgba(14, 13, 21, 0.84) 100%);
  border: 1px solid rgba(166, 232, 69, 0.16);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}

.bonus-zigzag__item--reverse {
  flex-direction: row-reverse;
}

.bonus-zigzag__media {
  width: 320px;
  flex: 0 0 320px;
  max-width: 320px;
}

.bonus-zigzag__media img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  margin: 0 auto;
  border: 1px solid rgba(166, 232, 69, 0.22);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.bonus-zigzag__text {
  width: auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bonus-zigzag__text h3 {
  margin-bottom: 16px;
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 900;
  text-transform: none;
  color: #f4f6fa;
}

.bonus-zigzag__text p:last-of-type {
  margin-bottom: 0;
}

.bonus-zigzag__text .section-action {
  text-align: left;
  margin-top: 18px;
}

/* === FAQ === */
section[itemtype="https://schema.org/FAQPage"] {
  max-width: 1280px;
  margin: 46px auto 0;
  padding: 10px 20px 6px;
}

section[itemtype="https://schema.org/FAQPage"] > h2 {
  margin: 0 0 22px;
  text-align: left;
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
}

section[itemtype="https://schema.org/FAQPage"] .faq-item,
section[itemtype="https://schema.org/FAQPage"] [itemprop="mainEntity"] {
  position: relative;
  margin-bottom: 16px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #15141f 0%, #101019 100%);
  border: 1px solid rgba(166, 232, 69, 0.18);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

section[itemtype="https://schema.org/FAQPage"] .faq-item::before,
section[itemtype="https://schema.org/FAQPage"] [itemprop="mainEntity"]::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

section[itemtype="https://schema.org/FAQPage"] .faq-item:hover,
section[itemtype="https://schema.org/FAQPage"] [itemprop="mainEntity"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
}

section[itemtype="https://schema.org/FAQPage"] .faq-title {
  margin: 0;
}

section[itemtype="https://schema.org/FAQPage"] .faq-question,
section[itemtype="https://schema.org/FAQPage"] [itemprop="name"] {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 22px 82px 22px 24px;
  border: 0;
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-align: left;
  color: #f5f7fa;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
}

section[itemtype="https://schema.org/FAQPage"] .faq-question::after,
section[itemtype="https://schema.org/FAQPage"] [itemprop="name"]::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  color: #101019;
  background: var(--color-border);
  box-shadow: 0 4px 14px rgba(166, 232, 69, 0.18);
}

section[itemtype="https://schema.org/FAQPage"] .faq-answer,
section[itemtype="https://schema.org/FAQPage"] [itemprop="acceptedAnswer"] {
  position: relative;
  background: linear-gradient(180deg, #13121c 0%, #101019 100%);
  border-top: 1px solid rgba(166, 232, 69, 0.12);
}

section[itemtype="https://schema.org/FAQPage"] .faq-answer[hidden] {
  display: none !important;
}

section[itemtype="https://schema.org/FAQPage"] [itemprop="acceptedAnswer"][aria-hidden="true"] {
  display: none !important;
}

section[itemtype="https://schema.org/FAQPage"] .faq-answer [itemprop="text"],
section[itemtype="https://schema.org/FAQPage"] [itemprop="acceptedAnswer"] [itemprop="text"] {
  padding: 20px 24px 24px;
}

section[itemtype="https://schema.org/FAQPage"] .faq-answer [itemprop="text"] p,
section[itemtype="https://schema.org/FAQPage"] [itemprop="acceptedAnswer"] [itemprop="text"] p {
  margin: 0;
  font-size: 17px;
  line-height: 1.72;
  color: #b9bfca;
}

section[itemtype="https://schema.org/FAQPage"] .faq-open .faq-question,
section[itemtype="https://schema.org/FAQPage"] .faq-open [itemprop="name"] {
  color: #ffffff;
}

section[itemtype="https://schema.org/FAQPage"] .faq-open .faq-question::after,
section[itemtype="https://schema.org/FAQPage"] .faq-open [itemprop="name"]::after {
  content: "−";
}

section[itemtype="https://schema.org/FAQPage"] .faq-question:focus-visible,
section[itemtype="https://schema.org/FAQPage"] [itemprop="name"]:focus-visible {
  outline: 2px solid var(--color-border);
  outline-offset: -2px;
}

/* === TABLET === */
@media (max-width: 992px) {
  .site-header__nav {
    gap: 18px;
    font-size: 13px;
  }

  .hero-banner {
    gap: 24px;
  }

  .hero-banner-text {
    width: 55%;
  }

  .hero-banner-image {
    width: 45%;
  }

  .bonus-slider {
    max-width: 100%;
  }

  .bonus-slide img {
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
  }

  .slots-carousel .carousel-track a,
  .sports-carousel .carousel-track a {
    flex: 0 0 calc((100% - 36px) / 4);
    width: calc((100% - 36px) / 4);
    max-width: calc((100% - 36px) / 4);
  }

  .bonus-zigzag__item {
    gap: 24px;
  }

  .bonus-zigzag__media {
    width: 280px;
    flex-basis: 280px;
    max-width: 280px;
  }

  .bonus-zigzag__media img {
    max-width: 280px;
  }

  .hero-banner-bonus-page {
    min-height: 390px;
    padding: 28px 18px 24px;
  }

  .hero-banner-bonus-page h1 {
    font-size: 52px;
  }

  .hero-banner-bonus-page__left {
    width: 56%;
  }

  .hero-banner-bonus-page__right {
    width: 44%;
  }

  .hero-banner-bonus-page__content-card-base {
    width: 360px;
    padding: 22px 20px 18px;
  }

  .hero-banner-bonus-page__content-card-base-title {
    font-size: 34px;
  }
}

/* === MOBILE === */
@media (max-width: 768px) {
  header {
    flex-wrap: nowrap;
    gap: 8px;
    border-radius: 0;
  }

  .site-header__brand {
    flex-shrink: 0;
  }

  .site-header__burger {
    display: flex;
  }

  .site-header__nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    background: linear-gradient(180deg, #15141f 0%, #0f0e17 100%);
    flex-direction: column;
    padding: 12px 16px 16px;
    display: none;
    border-top: 1px solid rgba(166, 232, 69, 0.14);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    gap: 0;
  }

  .site-header__nav a {
    padding: 12px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__nav-toggle:checked ~ .site-header__nav {
    display: flex;
  }

  .site-header__actions {
    display: none;
  }

  .hero-banner {
    flex-direction: column;
    text-align: center;
  }

  .hero-banner-text,
  .hero-banner-image,
  .bonus-row-text,
  .bonus-row-image {
    width: 100%;
  }

  .hero-banner-image img {
    max-width: 72%;
    margin: 0 auto 16px;
  }

  .bonus-row {
    flex-direction: column;
  }

  section img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 16px;
  }

  .bonus-slider {
    margin: 14px auto 22px;
    border-radius: 18px;
  }

  .bonus-slide img {
    border-radius: 18px;
    aspect-ratio: 16 / 9;
  }

  .bonus-slider-dots {
    margin-top: 12px;
  }

  .slots-carousel .carousel-track,
  .sports-carousel .carousel-track {
    gap: 0;
  }

  .slots-carousel .carousel-track a,
  .sports-carousel .carousel-track a {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  body,
  section,
  .hero-banner-text,
  .site-header__nav,
  .footer-nav {
    text-align: center;
  }

  section ul {
    margin-left: 0;
    padding-left: 0;
    list-style-position: inside;
  }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }

  .footer-nav a {
    width: 100%;
    max-width: 420px;
  }

  .hero-banner-bonus-page {
    min-height: auto;
    padding: 22px 16px 20px;
  }

  .hero-banner-bonus-page__overlay {
    background: linear-gradient(180deg, rgba(11, 10, 16, 0.9) 0%, rgba(11, 10, 16, 0.86) 50%, rgba(11, 10, 16, 0.84) 100%);
  }

  .hero-banner-bonus-page__content {
    flex-direction: column;
    gap: 22px;
  }

  .hero-banner-bonus-page__left,
  .hero-banner-bonus-page__right {
    width: 100%;
  }

  .hero-banner-bonus-page__badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-banner-bonus-page h1 {
    font-size: 40px;
    line-height: 1.02;
    text-align: center;
  }

  .hero-banner-bonus-page p {
    max-width: 100%;
    text-align: center;
    font-size: 16px;
    margin-bottom: 22px;
  }

  .hero-banner-bonus-page__actions {
    justify-content: center;
  }

  .hero-banner-bonus-page__button-primary {
    width: 100%;
  }

  .hero-banner-bonus-page__content-card-base {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-banner-bonus-page__content-card-base-title {
    font-size: 30px;
  }

  .hero-banner-bonus-page__content-card-base-text {
    font-size: 15px;
  }

  .bonus-zigzag {
    gap: 20px;
  }

  .bonus-zigzag__item,
  .bonus-zigzag__item--reverse {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
  }

  .bonus-zigzag__media,
  .bonus-zigzag__text {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  .bonus-zigzag__media img {
    max-width: 260px;
    width: 100%;
    height: auto;
  }

  .bonus-zigzag__text h3 {
    font-size: 22px;
    text-align: center;
  }

  .bonus-zigzag__text .section-action {
    text-align: center;
  }

  section[itemtype="https://schema.org/FAQPage"] {
    margin: 34px auto 0;
    padding: 8px 14px 4px;
  }

  section[itemtype="https://schema.org/FAQPage"] > h2 {
    font-size: 32px;
    margin-bottom: 18px;
  }

  section[itemtype="https://schema.org/FAQPage"] .faq-item,
  section[itemtype="https://schema.org/FAQPage"] [itemprop="mainEntity"] {
    margin-bottom: 12px;
    border-radius: 16px;
  }

  section[itemtype="https://schema.org/FAQPage"] .faq-item::before,
  section[itemtype="https://schema.org/FAQPage"] [itemprop="mainEntity"]::before {
    inset: 3px;
    border-radius: 12px;
  }

  section[itemtype="https://schema.org/FAQPage"] .faq-question,
  section[itemtype="https://schema.org/FAQPage"] [itemprop="name"] {
    padding: 18px 64px 18px 18px;
    font-size: 17px;
    line-height: 1.22;
  }

  section[itemtype="https://schema.org/FAQPage"] .faq-question::after,
  section[itemtype="https://schema.org/FAQPage"] [itemprop="name"]::after {
    right: 14px;
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  section[itemtype="https://schema.org/FAQPage"] .faq-answer [itemprop="text"],
  section[itemtype="https://schema.org/FAQPage"] [itemprop="acceptedAnswer"] [itemprop="text"] {
    padding: 16px 18px 18px;
  }

  section[itemtype="https://schema.org/FAQPage"] .faq-answer [itemprop="text"] p,
  section[itemtype="https://schema.org/FAQPage"] [itemprop="acceptedAnswer"] [itemprop="text"] p {
    font-size: 15px;
    line-height: 1.65;
  }
}

/* === PERFORMANCE + PAGESPEED PATCH === */
main > section:not(.hero-banner-bonus-page):not(:first-child) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.bonus-slider-track {
  backface-visibility: hidden;
}

.bonus-slider-dots span {
  display: block;
}

@media (max-width: 768px) {
  main > section:not(.hero-banner-bonus-page):not(:first-child) {
    contain-intrinsic-size: 1px 900px;
  }
}

/* Speed Index patch: keep above-the-fold paints stable during Lighthouse capture. */
.hero-banner-bonus-page__content-card-base {
  backdrop-filter: none;
}

@media (max-width: 768px) {
  body {
    background: #0b0a10;
  }
}

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

/* === PLAY NOW IMAGE LINK PATCH === */
.image-play-link {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
}
.image-play-link img {
  display: block;
}
.bonus-slide .image-play-link {
  max-width: 980px;
}
.hero-banner-bonus-page__bg .image-play-link {
  width: 100%;
  height: 100%;
}
.hero-banner-bonus-page__bg .image-play-link img {
  width: 100%;
  height: 100%;
}
