/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { overflow-x: hidden; width: 100%; scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --dark-bg:        #140826;
  --dark-text:      #F2F2F2;
  --dark-muted:     #c4b5d6;
  --dark-accent-lt: #b57dff;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-btn:  0 4px 14px rgba(0,0,0,0.18);
  --transition:  0.22s ease;
  --container:   1200px;
  --header-h:    72px;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

/* ============================================================
   BUTTONS — black on white
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
  text-align: center;
  min-width: 0;
}

.btn--primary {
  background: linear-gradient(135deg, #8F40FF 0%, #6d28d9 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(143,64,255,0.38);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #a560ff 0%, #7c3aed 100%);
  border-color: transparent;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(143,64,255,0.5);
}
.btn--primary:active { transform: translateY(0) scale(0.98); }

.btn--ghost {
  background: transparent;
  color: #8F40FF;
  border-color: #8F40FF;
}
.btn--ghost:hover {
  background: #8F40FF;
  color: #ffffff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(143,64,255,0.38);
}
.btn--ghost:active { transform: translateY(0) scale(0.98); }

.btn--xl {
  min-height: 56px;
  padding: 14px 36px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  border-radius: var(--radius-lg);
}

/* Dark section button overrides */
.dark-section .btn--primary {
  background: linear-gradient(135deg, #8F40FF 0%, #6d28d9 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(143,64,255,0.45);
}
.dark-section .btn--primary:hover {
  background: linear-gradient(135deg, #a560ff 0%, #7c3aed 100%);
  transform: translateY(-2px) scale(1.02);
}
.dark-section .btn--ghost {
  color: #b57dff;
  border-color: rgba(143,64,255,0.6);
}
.dark-section .btn--ghost:hover {
  background: rgba(143,64,255,0.15);
  border-color: #8F40FF;
  color: #ffffff;
}

/* ============================================================
   HEADER — white bar
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}

.header__logo { flex-shrink: 0; display: flex; align-items: center; }

.header__logo-img {
  height: clamp(36px, 5vw, 48px);
  width: auto;
  object-fit: contain;
  max-width: 160px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.header__nav::-webkit-scrollbar { display: none; }

.header__nav-link {
  color: #333333;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0.75;
  transition: opacity var(--transition), color var(--transition);
}
.header__nav-link:hover { opacity: 1; color: #111111; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.header__cta { white-space: nowrap; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 40px;
  height: 40px;
}
.burger span {
  display: block;
  height: 2px;
  background: #111111;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  padding: 16px clamp(16px, 4vw, 48px) 24px;
  border-top: 1px solid #e8e8e8;
  gap: 4px;
}
.mobile-menu.is-open { display: flex; }

.mobile-menu__link {
  color: #111111;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color var(--transition);
}
.mobile-menu__link:hover { color: #555555; }

.mobile-menu__cta { margin-top: 12px; width: 100%; }

/* ============================================================
   SECTIONS SHARED
   ============================================================ */
.section { padding-block: clamp(56px, 8vw, 96px); background: #ffffff; }

.section__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #111111;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section__subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: #666666;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: clamp(32px, 5vw, 56px);
}

/* Dark — ONLY support + faq */
.dark-section { background: var(--dark-bg) !important; }
.dark-section .section__title    { color: var(--dark-text); }
.dark-section .section__subtitle { color: var(--dark-muted); }

/* ============================================================
   HERO — white bg, black text
   ============================================================ */
.hero { background: #ffffff; overflow: hidden; }

.hero__media-wrap {
  display: block;
  width: 100%;
  overflow: hidden;
  max-height: 520px;
}

.hero__img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%);
}

.hero__content { padding-block: clamp(36px, 6vw, 64px); }

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  background: #f4f4f4;
  border: 1px solid #dddddd;
  color: #111111;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #111111;
  margin-bottom: 28px;
  line-height: 1.1;
}

.hero__brand { color: #111111; }

.hero__bonus-block {
  background: #f9f9f9;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-xl);
  padding: clamp(20px, 4vw, 36px) clamp(24px, 5vw, 56px);
  margin-bottom: 32px;
  width: 100%;
  max-width: 640px;
}

.hero__bonus-label {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: #666666;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero__bonus-value {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 900;
  color: #111111;
  line-height: 1;
  margin-bottom: 4px;
}

.hero__bonus-spins {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 800;
  color: #444444;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
  max-width: 480px;
}
.hero__cta-group .btn { flex: 1 1 180px; min-width: 0; }

.hero__disclaimer {
  font-size: 0.78rem;
  color: #aaaaaa;
  max-width: 500px;
}

/* ============================================================
   ADVANTAGES — white
   ============================================================ */
.advantages { background: #ffffff; }

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}

.advantage-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow-card);
  border: 1px solid #eeeeee;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-width: 0;
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border-color: #cccccc;
}

.advantage-card__icon { font-size: 2rem; margin-bottom: 14px; }
.advantage-card__title { font-size: clamp(1rem,1.8vw,1.15rem); font-weight: 800; color: #111111; margin-bottom: 10px; }
.advantage-card__text  { font-size: 0.92rem; color: #666666; line-height: 1.65; }

/* ============================================================
   BONUSES — white
   ============================================================ */
.bonuses { background: #ffffff; }
.bonuses .section__title    { color: #111111; }
.bonuses .section__subtitle { color: #666666; }

.bonuses__featured {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  background: #f9f9f9;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px);
  margin-bottom: clamp(32px, 5vw, 56px);
  min-width: 0;
}

.bonuses__featured-text { flex: 1 1 300px; min-width: 0; }

.bonuses__tag {
  display: inline-block;
  background: #111111;
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bonuses__featured-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 900;
  color: #111111;
  margin-bottom: 14px;
  line-height: 1.25;
}

.bonuses__featured-desc {
  font-size: clamp(0.9rem,1.5vw,1rem);
  color: #666666;
  margin-bottom: 24px;
  line-height: 1.65;
}

.bonuses__featured-media {
  flex: 0 0 clamp(200px, 35%, 360px);
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e8e8e8;
  display: block;
}
.bonuses__featured-media img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: transform 0.4s ease;
}
.bonuses__featured-media:hover img { transform: scale(1.03); }

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-bottom: 28px;
}

.bonus-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.bonus-card:hover {
  border-color: #aaaaaa;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.bonus-card__icon  { font-size: 1.8rem; }
.bonus-card__title { font-size: 1rem; font-weight: 800; color: #111111; }
.bonus-card__text  { font-size: 0.88rem; color: #666666; line-height: 1.6; flex: 1; }

.bonuses__disclaimer { text-align: center; font-size: 0.78rem; color: #aaaaaa; }

/* ============================================================
   HOW TO START — white
   ============================================================ */
.howto { background: #ffffff; }

.howto__steps {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.howto__step {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2.5vw, 28px);
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow-card);
  border: 1px solid #eeeeee;
  border-left: 4px solid #8F40FF;
  min-width: 0;
  transition: box-shadow var(--transition), transform var(--transition);
}
.howto__step:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateX(4px);
}

.howto__step-num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #8F40FF;
  line-height: 1;
  flex-shrink: 0;
  min-width: 56px;
}

.howto__step-title { font-size: clamp(1.05rem,2vw,1.2rem); font-weight: 800; color: #111111; margin-bottom: 8px; }
.howto__step-text  { font-size: 0.95rem; color: #666666; line-height: 1.65; }

.howto__cta { display: flex; justify-content: center; }

/* ============================================================
   SPORTS — white
   ============================================================ */
.sports { background: #ffffff; }

.sports__layout {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 56px);
  min-width: 0;
}

.sports__content { flex: 1 1 320px; min-width: 0; display: flex; flex-direction: column; gap: 16px; }
.sports__text { font-size: clamp(0.9rem,1.5vw,1rem); color: #666666; line-height: 1.7; }

.sports__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #eeeeee;
  box-shadow: var(--shadow-card);
}
.sports__list li {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111111;
  padding: 4px 0;
  border-bottom: 1px solid #f5f5f5;
}
.sports__list li:last-child { border-bottom: none; }

.sports__media {
  flex: 0 0 clamp(240px, 40%, 420px);
  min-width: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid #eeeeee;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: block;
  align-self: flex-start;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.sports__media img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: transform 0.4s ease;
}
.sports__media:hover img { transform: scale(1.03); }

/* ============================================================
   CASINO SECTION — white
   ============================================================ */
.casino-section { background: #ffffff; }

.casino-section__media {
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid #eeeeee;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  margin-bottom: clamp(32px, 5vw, 52px);
  width: 100%;
  max-height: 400px;
}
.casino-section__media img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: transform 0.4s ease;
}
.casino-section__media:hover img { transform: scale(1.02); }

.casino-section__categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.cat-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid #eeeeee;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #bbbbbb;
}

.cat-card__icon  { font-size: 1.8rem; }
.cat-card__title { font-size: 1rem; font-weight: 800; color: #111111; }
.cat-card__text  { font-size: 0.88rem; color: #666666; line-height: 1.6; flex: 1; }

/* ============================================================
   MOBILE SECTION — white
   ============================================================ */
.mobile-section { background: #ffffff; }

.mobile-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-bottom: clamp(32px, 5vw, 48px);
}

.mobile-feature {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid #eeeeee;
  box-shadow: var(--shadow-card);
  min-width: 0;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.mobile-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border-color: #bbbbbb;
}

.mobile-feature__icon  { font-size: 1.8rem; margin-bottom: 12px; }
.mobile-feature__title { font-size: 1rem; font-weight: 800; color: #111111; margin-bottom: 8px; }
.mobile-feature__text  { font-size: 0.88rem; color: #666666; line-height: 1.6; }

.mobile-section__cta { display: flex; justify-content: center; }

/* ============================================================
   PAYMENTS — white
   ============================================================ */
.payments { background: #ffffff; }

.payments__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-bottom: 24px;
}

.payment-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid #eeeeee;
  box-shadow: var(--shadow-card);
  min-width: 0;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.payment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border-color: #bbbbbb;
}

.payment-card__icon  { font-size: 1.8rem; margin-bottom: 12px; }
.payment-card__title { font-size: 1rem; font-weight: 800; color: #111111; margin-bottom: 8px; }
.payment-card__text  { font-size: 0.88rem; color: #666666; line-height: 1.6; }

.payments__note {
  background: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
}
.payments__note p { font-size: 0.88rem; color: #666666; }

/* ============================================================
   FINAL CTA — white
   ============================================================ */
.final-cta {
  background: #ffffff;
  padding-block: clamp(56px, 8vw, 96px);
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.final-cta__inner { display: flex; justify-content: center; }

.final-cta__content {
  text-align: center;
  max-width: 680px;
  width: 100%;
}

.final-cta__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #111111;
  margin-bottom: 16px;
  line-height: 1.15;
}

.final-cta__bonus {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: #111111;
  margin-bottom: 20px;
  display: inline-block;
  border: 2px solid #dddddd;
  padding: 6px 24px;
  border-radius: 999px;
}

.final-cta__sub {
  font-size: clamp(0.9rem,1.6vw,1.05rem);
  color: #666666;
  margin-bottom: 28px;
  line-height: 1.6;
}

.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

.final-cta__disclaimer { font-size: 0.78rem; color: #aaaaaa; }

/* ============================================================
   SUPPORT — dark #140826
   ============================================================ */
.support__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.support-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.5vw, 28px);
  min-width: 0;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.support-card:hover {
  background: rgba(143,64,255,0.08);
  border-color: rgba(143,64,255,0.3);
  transform: translateY(-3px);
}

.support-card__icon  { font-size: 1.8rem; margin-bottom: 12px; }
.support-card__title { font-size: 1rem; font-weight: 800; color: var(--dark-text); margin-bottom: 8px; }
.support-card__text  { font-size: 0.88rem; color: var(--dark-muted); line-height: 1.65; }

/* ============================================================
   FAQ — dark #140826
   ============================================================ */
.faq__list {
  max-width: 840px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(14px,2.5vw,20px) clamp(16px,3vw,24px);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-text);
  font-size: clamp(0.9rem,1.6vw,1rem);
  font-weight: 700;
  text-align: left;
  transition: background var(--transition);
  min-width: 0;
}
.faq__question:hover              { background: rgba(255,255,255,0.04); }
.faq__question[aria-expanded="true"] { background: rgba(255,255,255,0.06); }

.faq__icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--dark-accent-lt);
  transition: transform var(--transition);
}
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }

.faq__answer {
  display: none;
  padding: 0 clamp(16px,3vw,24px) clamp(14px,2.5vw,20px);
}
.faq__answer.is-open { display: block; }

.faq__answer p {
  font-size: clamp(0.85rem,1.4vw,0.95rem);
  color: var(--dark-muted);
  line-height: 1.7;
}

/* ============================================================
   FOOTER — white
   ============================================================ */
.footer {
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  padding-block: clamp(40px,6vw,72px) clamp(24px,4vw,40px);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(28px,4vw,44px);
}

.footer__top {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px,3vw,36px);
  flex-wrap: wrap;
}

.footer__logo-img {
  height: clamp(40px,5vw,56px);
  width: auto;
  object-fit: contain;
  max-width: 180px;
  flex-shrink: 0;
}

.footer__desc {
  font-size: 0.82rem;
  color: #999999;
  line-height: 1.65;
  max-width: 640px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px,3vw,40px);
}

.footer__col { display: flex; flex-direction: column; gap: 10px; min-width: 0; }

.footer__col-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.footer__link {
  font-size: 0.88rem;
  color: #777777;
  transition: color var(--transition);
}
.footer__link:hover { color: #111111; }

.footer__bottom {
  border-top: 1px solid #eeeeee;
  padding-top: clamp(20px,3vw,32px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__legal { font-size: 0.78rem; color: #bbbbbb; line-height: 1.65; }
.footer__copy  { font-size: 0.75rem; color: #cccccc; }

/* ============================================================
   CATFISH — white bar with border
   ============================================================ */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #ffffff;
  border-top: 2px solid #dddddd;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 10px clamp(12px,3vw,24px);
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  transition: transform 0.35s ease;
}
.catfish.is-hidden { transform: translateY(110%); }

.catfish__inner {
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.catfish__text {
  flex: 1 1 0;
  font-size: clamp(0.75rem,1.5vw,0.92rem);
  font-weight: 700;
  color: #111111;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.catfish__btn {
  flex-shrink: 0;
  min-height: 40px;
  padding: 8px 20px;
  font-size: 0.88rem;
}

.catfish__close {
  background: none;
  border: none;
  color: #aaaaaa;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 4px 6px;
  flex-shrink: 0;
  transition: color var(--transition);
}
.catfish__close:hover { color: #111111; }

/* ============================================================
   EXIT POPUP — white modal
   ============================================================ */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.exit-popup.is-open { display: flex; }

.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.exit-popup__box {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-xl);
  padding: clamp(28px,5vw,52px);
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 16px 56px rgba(0,0,0,0.15);
  animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.exit-popup__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: #aaaaaa;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
  padding: 4px 6px;
}
.exit-popup__close:hover { color: #111111; }

.exit-popup__badge {
  display: inline-block;
  background: #f4f4f4;
  border: 1px solid #e0e0e0;
  color: #111111;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.exit-popup__title { font-size: clamp(1.4rem,3vw,2rem); font-weight: 900; color: #111111; margin-bottom: 16px; }

.exit-popup__bonus {
  font-size: clamp(1rem,2vw,1.25rem);
  color: #333333;
  margin-bottom: 12px;
  line-height: 1.5;
}
.exit-popup__bonus strong { color: #111111; font-size: 1.15em; }

.exit-popup__sub { font-size: 0.8rem; color: #aaaaaa; margin-bottom: 24px; }

.exit-popup__btn { width: 100%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .advantages__grid,
  .bonuses__grid,
  .casino-section__categories,
  .mobile-section__grid,
  .payments__grid,
  .support__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sports__media { position: static; flex: 0 0 clamp(200px,45%,340px); }
  .footer__links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .burger      { display: flex; }

  .bonuses__featured { flex-direction: column; }
  .bonuses__featured-media { flex: 0 0 auto; width: 100%; max-height: 240px; }
  .bonuses__featured-media img { max-height: 240px; }

  .sports__layout { flex-direction: column; }
  .sports__media  { width: 100%; flex: 0 0 auto; }
  .sports__media img { max-height: 260px; }

  .hero__cta-group .btn { flex: 1 1 100%; }
}

@media (max-width: 600px) {
  .advantages__grid,
  .bonuses__grid,
  .casino-section__categories,
  .mobile-section__grid,
  .payments__grid,
  .support__grid { grid-template-columns: 1fr; gap: 16px; }

  .footer__links { grid-template-columns: 1fr; gap: 24px; }
  .final-cta__buttons .btn { width: 100%; }
  .catfish__text { font-size: 0.74rem; }
  .hero__bonus-block { padding: 20px 16px; }
}

@media (max-width: 400px) {
  :root { --header-h: 60px; }
  .hero__bonus-value { font-size: 2.2rem; }
  .btn--xl { min-height: 52px; padding: 12px 20px; font-size: 1rem; }
  .howto__step { flex-direction: column; gap: 10px; }
  .howto__step-num { min-width: auto; }
}
.boocnz-experience {
  background: linear-gradient(180deg, #fdfbff 0%, #f5eeff 100%);
  padding: clamp(48px, 7vw, 88px) clamp(16px, 4vw, 48px);
  color: #2a1e3f;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  border-top: 1px solid rgba(143, 64, 255, 0.12);
  border-bottom: 1px solid rgba(143, 64, 255, 0.12);
}

.boocnz-experience * {
  box-sizing: border-box;
}

.boocnz-experience__head {
  max-width: 880px;
  margin: 0 auto clamp(32px, 5vw, 56px);
  text-align: center;
  position: relative;
  padding-bottom: 24px;
}

.boocnz-experience__head::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, #8F40FF, #b57dff);
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.boocnz-experience__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8F40FF;
  background: rgba(143, 64, 255, 0.1);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.boocnz-experience__title {
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  font-weight: 900;
  color: #1a0d33;
  line-height: 1.2;
  margin: 0 0 16px;
}

.boocnz-experience__lead {
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  color: #5a4a78;
  margin: 0;
}

.boocnz-experience article {
  max-width: 920px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(22px, 3.5vw, 38px);
  border: 1px solid rgba(143, 64, 255, 0.1);
  box-shadow: 0 4px 24px rgba(60, 20, 120, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.boocnz-experience article:hover {
  box-shadow: 0 10px 36px rgba(60, 20, 120, 0.1);
  border-color: rgba(143, 64, 255, 0.25);
  transform: translateY(-2px);
}

.boocnz-experience__h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: #1a0d33;
  margin: 0 0 16px;
  padding-left: 18px;
  position: relative;
  line-height: 1.3;
}

.boocnz-experience__h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  bottom: 0.35em;
  width: 4px;
  background: linear-gradient(180deg, #8F40FF, #6d28d9);
  border-radius: 2px;
}

.boocnz-experience p {
  font-size: clamp(0.92rem, 1.5vw, 1rem);
  color: #3d2f5c;
  margin: 0 0 14px;
}

.boocnz-experience p:last-child {
  margin-bottom: 0;
}

.boocnz-experience strong {
  color: #1a0d33;
  font-weight: 800;
}

.boocnz-experience em {
  color: #6d28d9;
  font-style: italic;
  font-weight: 600;
}

.boocnz-experience__provider-list,
.boocnz-experience__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.boocnz-experience__provider-list li,
.boocnz-experience__bullets li {
  position: relative;
  padding: 10px 14px 10px 38px;
  background: rgba(143, 64, 255, 0.04);
  border-radius: 10px;
  font-size: clamp(0.88rem, 1.4vw, 0.96rem);
  color: #3d2f5c;
  border-left: 3px solid rgba(143, 64, 255, 0.4);
}

.boocnz-experience__provider-list li::before,
.boocnz-experience__bullets li::before {
  content: "◆";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8F40FF;
  font-size: 0.85rem;
}

.boocnz-experience__ordered {
  list-style: none;
  counter-reset: boocnz-counter;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.boocnz-experience__ordered li {
  counter-increment: boocnz-counter;
  position: relative;
  padding: 14px 16px 14px 56px;
  background: linear-gradient(135deg, rgba(143, 64, 255, 0.06) 0%, rgba(181, 125, 255, 0.04) 100%);
  border-radius: 12px;
  font-size: clamp(0.9rem, 1.45vw, 0.98rem);
  color: #3d2f5c;
}

.boocnz-experience__ordered li::before {
  content: counter(boocnz-counter);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #8F40FF, #6d28d9);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.88rem;
  box-shadow: 0 2px 8px rgba(143, 64, 255, 0.4);
}

.boocnz-experience__table-wrap {
  overflow-x: auto;
  margin: 18px 0;
  border-radius: 12px;
  border: 1px solid rgba(143, 64, 255, 0.18);
  -webkit-overflow-scrolling: touch;
}

.boocnz-experience__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
  font-size: clamp(0.82rem, 1.35vw, 0.94rem);
  background: #ffffff;
}

.boocnz-experience__table thead {
  background: linear-gradient(135deg, #8F40FF 0%, #6d28d9 100%);
  color: #ffffff;
}

.boocnz-experience__table th {
  text-align: left;
  padding: 12px 14px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.boocnz-experience__table td {
  padding: 12px 14px;
  border-top: 1px solid rgba(143, 64, 255, 0.1);
  color: #3d2f5c;
  vertical-align: top;
}

.boocnz-experience__table tbody tr:nth-child(even) {
  background: rgba(143, 64, 255, 0.03);
}

.boocnz-experience__table tbody tr:hover {
  background: rgba(143, 64, 255, 0.07);
}

.boocnz-experience__brand,
.boocnz-experience__rtp,
.boocnz-experience__providers,
.boocnz-experience__loyalty,
.boocnz-experience__live,
.boocnz-experience__safety,
.boocnz-experience__rg,
.boocnz-experience__withdrawals,
.boocnz-experience__community,
.boocnz-experience__fit {
  position: relative;
}

.boocnz-experience__rg {
  background: linear-gradient(180deg, #ffffff 0%, #fff7ec 100%);
  border-color: rgba(217, 142, 38, 0.25);
}

.boocnz-experience__rg .boocnz-experience__h3::before {
  background: linear-gradient(180deg, #d98e26, #b06f15);
}

.boocnz-experience__safety {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  border-color: rgba(46, 117, 197, 0.18);
}

.boocnz-experience__safety .boocnz-experience__h3::before {
  background: linear-gradient(180deg, #2e75c5, #1c4d8a);
}

@media (min-width: 768px) {
  .boocnz-experience__provider-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (min-width: 1024px) {
  .boocnz-experience article {
    padding: 40px 48px;
  }

  .boocnz-experience__bullets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .boocnz-experience__live .boocnz-experience__bullets,
  .boocnz-experience__rg .boocnz-experience__bullets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .boocnz-experience article {
    padding: 20px 18px;
    border-radius: 14px;
  }

  .boocnz-experience__ordered li {
    padding-left: 50px;
  }

  .boocnz-experience__ordered li::before {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
  }
}