/* ============================================================
   SLOTSVADER CASINO – styles.css
   ============================================================ */

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

html, body {
  overflow-x: hidden;
  width: 100%;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul { list-style: none; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TYPOGRAPHY ── */
.section__title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  text-align: center;
  color: #ffffff;
  margin-bottom: 1rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section__lead {
  text-align: center;
  color: rgba(255,255,255,0.72);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  max-width: 780px;
  margin: 0 auto 2.5rem;
  overflow-wrap: anywhere;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 900;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  cursor: pointer;
  text-align: center;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.3;
}

.btn--primary {
  background: #E8FF43;
  color: #000000;
  box-shadow: 0 4px 20px rgba(232,255,67,0.45), 0 2px 6px rgba(0,0,0,0.4);
}

.btn--primary:hover {
  background: #f0ff70;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232,255,67,0.6), 0 4px 10px rgba(0,0,0,0.5);
}

.btn--primary:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(232,255,67,0.35);
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 2px 10px rgba(255,255,255,0.08);
}

.btn--ghost:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.15);
}

.btn--ghost:active {
  transform: translateY(0);
}

/* ── MEDIA / IMAGE WRAPPER ── */
.media {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  max-width: 100%;
  min-width: 0;
}

.media img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  display: block;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(0,0,0,0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 12px 0;
  backdrop-filter: blur(8px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

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

.logo-img {
  height: 46px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

/* NAV */
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  min-width: 0;
}

.site-nav__link {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.site-nav__link:hover { color: #ffffff; background: rgba(255,255,255,0.07); }

.site-nav__link--cta {
  background: #E8FF43;
  color: #000000 !important;
  font-weight: 900;
  padding: 8px 18px;
  box-shadow: 0 3px 14px rgba(232,255,67,0.4);
}

.site-nav__link--cta:hover {
  background: #f0ff70;
  color: #000000 !important;
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  background: #000000;
  padding-bottom: 60px;
  min-width: 0;
}

.hero__image-wrap {
  width: 100%;
  overflow: hidden;
  max-height: 520px;
  line-height: 0;
}

.hero__image {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.hero__content {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 10px;
  min-width: 0;
}

.hero__badge {
  display: inline-block;
  background: rgba(232,255,67,0.15);
  color: #E8FF43;
  border: 1px solid rgba(232,255,67,0.35);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  overflow-wrap: anywhere;
}

.hero__bonus {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero__bonus-detail {
  color: #E8FF43;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

/* ── SECTIONS COMMON ── */
.section {
  padding: 80px 0;
  min-width: 0;
}

.section:nth-child(even) { background: #0a0a0a; }
.section:nth-child(odd)  { background: #000000; }

/* ── ADVANTAGES ── */
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 1rem;
}

.advantages__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 28px 24px;
  min-width: 0;
  transition: border-color 0.2s, background 0.2s;
}

.advantages__card:hover {
  border-color: rgba(232,255,67,0.3);
  background: rgba(232,255,67,0.04);
}

.advantages__icon { font-size: 2rem; margin-bottom: 14px; }

.advantages__card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.advantages__card p {
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

/* ── BONUSES ── */
.bonuses__media-link { display: block; margin-bottom: 40px; }
.bonuses__media { max-width: 900px; margin: 0 auto; }
.bonuses__img { width: 100%; height: auto; max-height: 400px; object-fit: contain; }

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

.bonuses__item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 28px 24px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bonuses__item--featured {
  border-color: rgba(232,255,67,0.4);
  background: rgba(232,255,67,0.05);
  grid-column: span 2;
}

.bonuses__item-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bonuses__item-value {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.bonuses__item--featured .bonuses__item-value { color: #E8FF43; }

.bonuses__item-desc {
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  flex: 1;
  overflow-wrap: anywhere;
}

/* ── HOW TO START ── */
.howto__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.howto__step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 28px 22px;
  min-width: 0;
}

.howto__step-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(232,255,67,0.18);
  line-height: 1;
  margin-bottom: 14px;
}

.howto__step-title {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.howto__step p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.howto__cta-wrap { text-align: center; }

/* ── SPORTS ── */
.sports__media-link { display: block; margin-bottom: 40px; }
.sports__media { max-width: 900px; margin: 0 auto; }
.sports__img { width: 100%; height: auto; max-height: 400px; object-fit: contain; }

.sports__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.sports__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 26px 20px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.sports__card:hover { border-color: rgba(232,255,67,0.25); }

.sports__card-icon { font-size: 1.8rem; }

.sports__card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  overflow-wrap: anywhere;
}

.sports__card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  flex: 1;
  overflow-wrap: anywhere;
}

/* ── CASINO ── */
.casino__media-link { display: block; margin-bottom: 40px; }
.casino__media { max-width: 900px; margin: 0 auto; }
.casino__img { width: 100%; height: auto; max-height: 400px; object-fit: contain; }

.casino__categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.casino__cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 20px 12px;
  min-width: 0;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  text-align: center;
}

.casino__cat:hover {
  border-color: rgba(232,255,67,0.3);
  background: rgba(232,255,67,0.05);
}

.casino__cat-icon { font-size: 1.6rem; }
.casino__cat-name { font-size: 0.92rem; font-weight: 800; color: #ffffff; overflow-wrap: anywhere; }
.casino__cat-desc { font-size: 0.75rem; color: rgba(255,255,255,0.5); overflow-wrap: anywhere; }

.casino__providers-label {
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.casino__providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.casino__providers span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  overflow-wrap: anywhere;
}

.casino__cta-wrap { text-align: center; }

/* ── MOBILE SECTION ── */
.mobile-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.mobile-section__feat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 26px 20px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-section__feat-icon { font-size: 1.8rem; }

.mobile-section__feat h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  overflow-wrap: anywhere;
}

.mobile-section__feat p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  flex: 1;
  overflow-wrap: anywhere;
}

/* ── PAYMENTS ── */
.payments__table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.09);
  margin-bottom: 28px;
}

.payments__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 340px;
}

.payments__table th {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 14px 18px;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.payments__table td {
  padding: 13px 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.payments__table tr:hover td { background: rgba(255,255,255,0.03); }

.payments__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.payments__badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.payments__cta-wrap { text-align: center; }

/* ── SUPPORT ── */
.support__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.support__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 28px 24px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support__icon { font-size: 1.8rem; }

.support__card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  overflow-wrap: anywhere;
}

.support__card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  flex: 1;
  overflow-wrap: anywhere;
}

/* ── FAQ ── */
.faq__list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  overflow: hidden;
  min-width: 0;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  padding: 20px 22px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: color 0.15s;
}

.faq__question:hover { color: #E8FF43; }
.faq__question[aria-expanded="true"] { color: #E8FF43; }

.faq__chevron {
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq__question[aria-expanded="true"] .faq__chevron { transform: rotate(180deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 22px;
}

.faq__answer.is-open {
  max-height: 400px;
  padding: 0 22px 20px;
}

.faq__answer p {
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(135deg, #080808 0%, #111111 100%);
  border-top: 1px solid rgba(232,255,67,0.15);
  border-bottom: 1px solid rgba(232,255,67,0.15);
}

.final-cta__inner { text-align: center; }

.final-cta__title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  overflow-wrap: anywhere;
}

.final-cta__bonus {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  color: #E8FF43;
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}

.final-cta__sub {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto 30px;
  overflow-wrap: anywhere;
}

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

.final-cta__media { max-width: 860px; margin: 0 auto; }
.final-cta__img { width: 100%; height: auto; max-height: 420px; object-fit: contain; }

/* ── FOOTER ── */
.site-footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 60px 0 40px;
}

.site-footer__inner { min-width: 0; }

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 36px;
}

.site-footer__logo-link { display: inline-block; flex-shrink: 0; }

.site-footer__logo {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  min-width: 0;
}

.site-footer__nav a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: color 0.15s;
  overflow-wrap: anywhere;
}

.site-footer__nav a:hover { color: #ffffff; }

.site-footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.site-footer__payments span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  overflow-wrap: anywhere;
}

.site-footer__legal p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-footer__legal a { color: rgba(255,255,255,0.5); }
.site-footer__legal a:hover { color: #ffffff; }

/* ── CATFISH ── */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  border-top: 1px solid rgba(232,255,67,0.3);
  padding: 12px 0;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  transition: transform 0.3s ease;
}

.catfish.is-hidden { transform: translateY(110%); }

.catfish__inner {
  max-width: calc(100% - 40px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.catfish__text {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  color: #ffffff;
  overflow-wrap: anywhere;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.catfish__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.15s;
}

.catfish__close:hover { color: #ffffff; }

/* ── EXIT POPUP ── */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.exit-popup.is-visible { display: flex; }

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

.exit-popup__box {
  position: relative;
  z-index: 1;
  background: #0e0e0e;
  border: 1px solid rgba(232,255,67,0.35);
  border-radius: 18px;
  padding: 42px 36px 36px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  min-width: 0;
}

.exit-popup__close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s;
  padding: 4px 6px;
}

.exit-popup__close:hover { color: #ffffff; }

.exit-popup__badge {
  display: inline-block;
  background: rgba(232,255,67,0.15);
  color: #E8FF43;
  border: 1px solid rgba(232,255,67,0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  margin-bottom: 16px;
}

.exit-popup__title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}

.exit-popup__bonus {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 900;
  color: #E8FF43;
  line-height: 1.3;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.exit-popup__sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
}

.exit-popup__cta { width: 100%; }

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
  .advantages__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .howto__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sports__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .casino__categories { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .mobile-section__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-nav__list { gap: 2px; }
  .site-nav__link { padding: 8px 10px; font-size: 0.82rem; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .burger { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5,5,5,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    z-index: 800;
  }

  .site-nav.is-open { display: block; }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 0 20px;
  }

  .site-nav__link { padding: 12px 16px; font-size: 1rem; border-radius: 8px; }
  .site-header { position: sticky; top: 0; }

  .advantages__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bonuses__cards { grid-template-columns: minmax(0, 1fr); }
  .bonuses__item--featured { grid-column: span 1; }
  .howto__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sports__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .casino__categories { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .mobile-section__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support__grid { grid-template-columns: minmax(0, 1fr); }

  .hero__bonus { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .hero__bonus-detail { font-size: clamp(1.2rem, 4vw, 1.8rem); }

  .btn { width: 100%; max-width: 380px; }
  .hero__cta-group .btn { max-width: 340px; }
  .final-cta__buttons .btn { max-width: 340px; }
}

@media (max-width: 480px) {
  .section { padding: 44px 0; }
  .container { padding: 0 16px; }
  .logo-img { height: 36px; }
  .site-footer__logo { height: 40px; }
  .advantages__grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .howto__steps { grid-template-columns: minmax(0, 1fr); }
  .sports__grid { grid-template-columns: minmax(0, 1fr); }
  .casino__categories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile-section__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__image { max-height: 280px; }
  .exit-popup__box { padding: 32px 20px 24px; }
  .catfish__inner { flex-wrap: nowrap; justify-content: space-between; }
  .catfish__text { font-size: 0.78rem; }
  .catfish__cta { font-size: 0.78rem; padding: 8px 14px; min-height: 36px; }
  .payments__table { min-width: 300px; }
  .payments__table th, .payments__table td { padding: 10px 12px; font-size: 0.8rem; }
}

@media (max-width: 360px) {
  .casino__categories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__bonus { font-size: 1.5rem; }
  .hero__bonus-detail { font-size: 1.1rem; }
  .section__title { font-size: 1.35rem; }
}
/* ============================================================
   SLOTSVADER CASINO CANADA — Regulation / Tax / Bonus Context
   Namespace: slotsvader-cactx__
   Page palette: #000 (bg), #0a0a0a (alt), #E8FF43 (acid yellow),
                 #FFF (text), rgba(255,255,255,0.6-0.72) (muted)
   ============================================================ */

.slotsvader-cactx__section {
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(232, 255, 67, 0.05), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  padding: 4rem 0;
  color: #ffffff;
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.65;
}

.slotsvader-cactx__container {
  width: 100%;
  max-width: 75rem; /* 1200px */
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---- Headings ---- */
.slotsvader-cactx__title {
  font-size: clamp(1.4rem, 3.4vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.slotsvader-cactx__h3 {
  font-size: clamp(1.1rem, 2.3vw, 1.5rem);
  font-weight: 800;
  color: #E8FF43;
  margin: 0 0 0.85rem;
  line-height: 1.3;
  border-left: 3px solid #E8FF43;
  padding-left: 0.85rem;
}

.slotsvader-cactx__h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin: 1.1rem 0 0.55rem;
  letter-spacing: 0.02em;
}

/* ---- Lead block ---- */
.slotsvader-cactx__lead {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 3px solid #E8FF43;
  border-radius: 0.875rem;
  padding: 1.5rem 1.6rem;
  margin: 0 auto 2rem;
  max-width: 56rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.slotsvader-cactx__lead p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* ---- Articles ---- */
.slotsvader-cactx__article {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.875rem;
  padding: 1.6rem 1.5rem;
  margin-bottom: 1.25rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.slotsvader-cactx__article:hover {
  border-color: rgba(232, 255, 67, 0.3);
  transform: translateY(-2px);
}

.slotsvader-cactx__article p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 0.85rem;
}

.slotsvader-cactx__article p:last-child { margin-bottom: 0; }

.slotsvader-cactx__article strong {
  color: #ffffff;
  font-weight: 700;
}

.slotsvader-cactx__article em {
  color: #E8FF43;
  font-style: italic;
  font-weight: 600;
}

/* ---- Lists ---- */
.slotsvader-cactx__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.85rem;
  counter-reset: svc-counter;
}

.slotsvader-cactx__list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.7rem;
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.slotsvader-cactx__list li:last-child {
  border-bottom: none;
}

.slotsvader-cactx__list li::before {
  content: "▸";
  position: absolute;
  left: 0.25rem;
  top: 0.6rem;
  color: #E8FF43;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
}

.slotsvader-cactx__list--ordered {
  counter-reset: svc-counter;
}

.slotsvader-cactx__list--ordered li {
  padding-left: 2.5rem;
  counter-increment: svc-counter;
}

.slotsvader-cactx__list--ordered li::before {
  content: counter(svc-counter);
  left: 0;
  top: 0.55rem;
  width: 1.65rem;
  height: 1.65rem;
  background: #E8FF43;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(232, 255, 67, 0.3);
}

/* ---- Table ---- */
.slotsvader-cactx__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0.85rem 0 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.625rem;
  overflow: hidden;
  font-size: 0.9rem;
}

.slotsvader-cactx__table thead {
  background: rgba(232, 255, 67, 0.08);
}

.slotsvader-cactx__table thead th {
  padding: 0.85rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #E8FF43;
  text-align: left;
  border-bottom: 1px solid rgba(232, 255, 67, 0.3);
}

.slotsvader-cactx__table tbody td {
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.76);
}

.slotsvader-cactx__table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.025);
}

.slotsvader-cactx__table tbody tr:last-child td {
  border-bottom: none;
}

.slotsvader-cactx__table td:first-child {
  font-weight: 800;
  color: #ffffff;
  width: 22%;
}

/* ---- Aside ---- */
.slotsvader-cactx__aside {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(232, 255, 67, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  border-left: 3px solid #E8FF43;
  border-radius: 0 0.5rem 0.5rem 0;
}

.slotsvader-cactx__aside .slotsvader-cactx__h4 {
  margin-top: 0;
  color: #E8FF43;
}

.slotsvader-cactx__aside p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ---- Final CTA-style article ---- */
.slotsvader-cactx__article--cta {
  background:
    radial-gradient(700px 240px at 80% 0%, rgba(232, 255, 67, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(232, 255, 67, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(232, 255, 67, 0.35);
  text-align: center;
}

.slotsvader-cactx__article--cta .slotsvader-cactx__h3 {
  border-left: none;
  padding-left: 0;
  text-align: center;
  color: #E8FF43;
}

.slotsvader-cactx__cta-line {
  margin-top: 0.85rem !important;
  font-size: 0.86rem;
  color: #E8FF43;
  letter-spacing: 0.02em;
}

/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 64em) {
  .slotsvader-cactx__section { padding: 3.25rem 0; }
  .slotsvader-cactx__article { padding: 1.4rem 1.25rem; }
  .slotsvader-cactx__lead { padding: 1.25rem; }
  .slotsvader-cactx__table { font-size: 0.85rem; }
  .slotsvader-cactx__table thead th,
  .slotsvader-cactx__table tbody td { padding: 0.65rem 0.65rem; }
  .slotsvader-cactx__table td:first-child { width: 26%; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤768px)
   ============================================================ */
@media (max-width: 48em) {
  .slotsvader-cactx__section { padding: 2.75rem 0; }
  .slotsvader-cactx__container { padding: 0 1rem; }

  .slotsvader-cactx__title { font-size: 1.3rem; line-height: 1.3; }
  .slotsvader-cactx__h3 {
    font-size: 1.08rem;
    border-left-width: 3px;
    padding-left: 0.7rem;
  }
  .slotsvader-cactx__h4 { font-size: 0.9rem; }

  .slotsvader-cactx__lead { padding: 1.1rem; margin-bottom: 1.5rem; }
  .slotsvader-cactx__lead p { font-size: 0.92rem; line-height: 1.75; }

  .slotsvader-cactx__article { padding: 1.1rem 1rem; margin-bottom: 1rem; }
  .slotsvader-cactx__article p { font-size: 0.92rem; }

  .slotsvader-cactx__list li,
  .slotsvader-cactx__list--ordered li { font-size: 0.92rem; }

  /* Card-style table on mobile */
  .slotsvader-cactx__table {
    border: none;
    background: transparent;
    border-radius: 0;
  }
  .slotsvader-cactx__table thead { display: none; }
  .slotsvader-cactx__table tbody tr {
    display: block;
    margin-bottom: 0.85rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid #E8FF43;
    border-radius: 0.5rem;
    padding: 0.7rem 0.95rem;
  }
  .slotsvader-cactx__table tbody tr:nth-child(even) td {
    background: transparent;
  }
  .slotsvader-cactx__table tbody td {
    display: block;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    width: 100% !important;
  }
  .slotsvader-cactx__table tbody td:last-child { border-bottom: none; }
  .slotsvader-cactx__table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    color: #E8FF43;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
    font-weight: 800;
  }

  .slotsvader-cactx__aside { padding: 0.9rem 1rem; }
}

/* ============================================================
   RESPONSIVE — Small (≤480px)
   ============================================================ */
@media (max-width: 30em) {
  .slotsvader-cactx__title { font-size: 1.18rem; }
  .slotsvader-cactx__h3 { font-size: 1rem; }
  .slotsvader-cactx__article { padding: 0.95rem 0.85rem; }
  .slotsvader-cactx__list--ordered li { padding-left: 2.2rem; }
  .slotsvader-cactx__list--ordered li::before { width: 1.45rem; height: 1.45rem; font-size: 0.74rem; }
}

/* ============================================================
   RESPONSIVE — Very small (≤360px)
   ============================================================ */
@media (max-width: 22.5em) {
  .slotsvader-cactx__container { padding: 0 0.85rem; }
  .slotsvader-cactx__title { font-size: 1.08rem; }
  .slotsvader-cactx__article { padding: 0.85rem 0.7rem; }
}