/* ═══════════════════════════════════════════════
   STAKE CASINO AUSTRIA — styles.css
   Fonts: Exo 2 (headings), Rajdhani (body/ui)
   ═══════════════════════════════════════════════ */

/* ─── 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: 'Rajdhani', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #d6e8f5;
  background: #172934;
  -webkit-font-smoothing: antialiased;
}

/* ─── CSS VARIABLES ─── */
:root {
  --primary:       #1675E1;
  --primary-dark:  #0f5ab8;
  --primary-glow:  rgba(22,117,225,0.35);
  --btn-dark:      #395565;
  --btn-dark-hov:  #2c4454;
  --bg-deep:       #172934;
  --bg-mid:        #1B2E39;
  --bg-card:       #1e3545;
  --bg-card2:      #223c4d;
  --accent:        #1675E1;
  --text-main:     #d6e8f5;
  --text-muted:    #8dafc4;
  --text-white:    #ffffff;
  --border:        rgba(22,117,225,0.2);
  --radius:        12px;
  --radius-lg:     18px;
  --shadow-btn:    0 4px 18px rgba(22,117,225,0.45);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.35);
  --container:     1200px;
  --hdr-h:         72px;
  --transition:    0.22s ease;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Exo 2', sans-serif;
  line-height: 1.2;
  font-weight: 900;
  color: var(--text-white);
  overflow-wrap: anywhere;
  word-break: break-word;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }

p { overflow-wrap: anywhere; word-break: break-word; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: #4d9ff5; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  min-height: 48px;
  padding: 13px 28px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  line-height: 1;
}

.btn--primary {
  background: var(--primary);
  color: #fff !important;
  box-shadow: var(--shadow-btn), inset 0 1px 0 rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.08);
}
.btn--primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 28px rgba(22,117,225,0.6), inset 0 1px 0 rgba(255,255,255,0.1);
  transform: translateY(-2px);
  color: #fff !important;
}
.btn--primary:active { transform: translateY(0); box-shadow: var(--shadow-btn); }

.btn--ghost {
  background: var(--btn-dark);
  color: #fff !important;
  box-shadow: 0 3px 14px rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.12);
}
.btn--ghost:hover {
  background: var(--btn-dark-hov);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  color: #fff !important;
}
.btn--ghost:active { transform: translateY(0); }

.btn--sm { font-size: 0.85rem; padding: 9px 18px; min-height: 40px; }
.btn--lg { font-size: 1.08rem; padding: 16px 36px; min-height: 54px; }

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--hdr-h);
  background: rgba(23,41,52,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 900;
  transition: background var(--transition);
}
.site-header.scrolled {
  background: rgba(23,41,52,0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.site-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

.site-header__logo { flex-shrink: 0; display: flex; align-items: center; }
.logo-img { height: 38px; width: auto; object-fit: contain; }
.logo-img--footer { height: 44px; }

.site-nav { flex: 1; overflow-x: auto; scrollbar-width: none; }
.site-nav::-webkit-scrollbar { display: none; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  min-width: 0;
}
.site-nav__link {
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.site-nav__link:hover { color: #fff; background: rgba(22,117,225,0.12); }

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

/* ─── BURGER ─── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}
.burger:hover { background: rgba(255,255,255,0.08); }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed;
  top: var(--hdr-h);
  left: 0; right: 0;
  background: var(--bg-mid);
  border-bottom: 1px solid var(--border);
  z-index: 850;
  padding: 12px 20px 20px;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: none;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav__list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__link {
  display: block;
  padding: 12px 16px;
  color: var(--text-main);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav__link:hover { background: rgba(22,117,225,0.12); color: #fff; }

/* ═══════════════════════════════════════════════
   CATFISH
   ═══════════════════════════════════════════════ */
.catfish {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, #0d1f29 0%, #1B2E39 100%);
  border-top: 2px solid var(--primary);
  z-index: 800;
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  transition: transform 0.4s ease;
}
.catfish.hidden { transform: translateY(110%); }
.catfish__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 0px);
  margin: 0 auto;
  flex-wrap: wrap;
}
.catfish__text {
  flex: 1;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  overflow-wrap: anywhere;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.catfish__cta { flex-shrink: 0; font-size: 0.82rem; padding: 9px 16px; min-height: 40px; }
.catfish__close {
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  min-height: 32px;
}
.catfish__close:hover { background: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════════
   EXIT POPUP
   ═══════════════════════════════════════════════ */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.exit-overlay.active { opacity: 1; pointer-events: all; }

.exit-modal {
  background: var(--bg-mid);
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 40px var(--primary-glow);
}
.exit-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  min-height: 34px;
}
.exit-modal__close:hover { background: rgba(255,255,255,0.22); }
.exit-modal__badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.exit-modal__title { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 14px; }
.exit-modal__bonus {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.exit-modal__bonus strong { color: #4db3ff; font-size: 1.6rem; }
.exit-modal__sub { color: var(--text-muted); margin-bottom: 24px; }
.exit-modal__cta { width: 100%; margin-bottom: 12px; }
.exit-modal__note { font-size: 0.8rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════
   SECTIONS GENERAL
   ═══════════════════════════════════════════════ */
.section {
  padding: 80px 0;
  background: var(--bg-deep);
}
.section--alt { background: var(--bg-mid); }

.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-tag {
  display: inline-block;
  background: rgba(22,117,225,0.15);
  border: 1px solid var(--border);
  color: var(--primary);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title { margin-bottom: 14px; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }

.section-cta { text-align: center; margin-top: 44px; display: flex; flex-direction: column; align-items: center; gap: 14px; }

.hint-text { font-size: 0.9rem; color: var(--text-muted); }
.text-link { color: var(--primary); font-weight: 700; }
.text-link:hover { color: #4d9ff5; }

/* ─── REVEAL ANIMATION ─── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  padding-top: var(--hdr-h);
  background: linear-gradient(180deg, #0d1f29 0%, var(--bg-deep) 100%);
  overflow: hidden;
}

.hero__media {
  width: 100%;
  overflow: hidden;
  max-height: 480px;
}
.hero__media a { display: block; width: 100%; }
.hero__img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.hero__media:hover .hero__img { transform: scale(1.015); }

.hero__content {
  padding: 56px 0 64px;
  text-align: center;
}
.hero__badge {
  display: inline-block;
  background: rgba(22,117,225,0.15);
  border: 1px solid var(--border);
  color: #4db3ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 6px;
  line-height: 1.1;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.hero__highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.hero__highlight::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  opacity: 0.5;
}
.hero__bonus-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero__trust {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ═══════════════════════════════════════════════
   ADVANTAGES
   ═══════════════════════════════════════════════ */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 10px;
}
.advantage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(22,117,225,0.4);
}
.advantage-card__icon { font-size: 2.2rem; margin-bottom: 14px; }
.advantage-card__title { font-size: 1.15rem; margin-bottom: 10px; color: #fff; }
.advantage-card__text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ═══════════════════════════════════════════════
   BONUS HERO
   ═══════════════════════════════════════════════ */
.bonus-hero {
  background: linear-gradient(135deg, #0d2035 0%, #1a3550 50%, #0d2035 100%);
  border: 1px solid rgba(22,117,225,0.4);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.bonus-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(22,117,225,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.bonus-hero__badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.bonus-hero__amount {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 40px var(--primary-glow);
}
.bonus-hero__label {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  font-weight: 600;
}
.bonus-hero__desc {
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── PROMO GRID ─── */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 36px;
}
.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), border-color var(--transition);
}
.promo-card:hover { transform: translateY(-3px); border-color: rgba(22,117,225,0.4); }
.promo-card__icon { font-size: 2rem; }
.promo-card__title { font-size: 1.2rem; color: #fff; }
.promo-card__text { color: var(--text-muted); font-size: 0.95rem; flex: 1; line-height: 1.6; }

/* ═══════════════════════════════════════════════
   STEPS
   ═══════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  position: relative;
  margin-bottom: 10px;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(22,117,225,0.2));
  z-index: 0;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin: 0 12px;
  transition: transform var(--transition), border-color var(--transition);
}
.step-card:hover { transform: translateY(-4px); border-color: rgba(22,117,225,0.4); }
.step-card__number {
  font-family: 'Exo 2', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}
.step-card__title { font-size: 1.2rem; margin-bottom: 12px; }
.step-card__text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }

/* ═══════════════════════════════════════════════
   SPORT
   ═══════════════════════════════════════════════ */
.sport-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 36px 0;
}
.sport-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: transform var(--transition), border-color var(--transition);
}
.sport-card:hover { transform: translateY(-3px); border-color: rgba(22,117,225,0.4); }
.sport-card__icon { font-size: 1.8rem; margin-bottom: 10px; }
.sport-card__name { font-size: 1.1rem; margin-bottom: 8px; }
.sport-card__text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; }

.info-box {
  background: linear-gradient(135deg, #0d2035 0%, #1a3550 100%);
  border: 1px solid rgba(22,117,225,0.35);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}
.info-box__title { color: #fff; }
.info-box p { color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════
   CASINO / MEDIA CARD
   ═══════════════════════════════════════════════ */
.media-card {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 28px;
  background: var(--bg-card);
}
.media-card a { display: block; width: 100%; }
.media-card__img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.media-card:hover .media-card__img { transform: scale(1.02); }

.casino-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 36px;
}
.casino-feature { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.casino-feature .media-card { margin-bottom: 0; }
.casino-feature__title { font-size: 1.3rem; }
.casino-feature__text { color: var(--text-muted); line-height: 1.7; font-size: 0.97rem; }

.originals-box {
  background: linear-gradient(135deg, #0d1a2a 0%, #1a2f45 100%);
  border: 1px solid rgba(22,117,225,0.4);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 48px;
  position: relative;
}
.originals-box__label {
  display: inline-block;
  background: linear-gradient(135deg, #1675E1, #0f5ab8);
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.originals-box__title { font-size: 1.5rem; margin-bottom: 14px; }
.originals-box__text { color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }

/* ─── REVIEW BLOCK ─── */
.review-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.review-block__title { font-size: 1.5rem; margin-bottom: 20px; color: #fff; }
.review-block h4 { font-size: 1.1rem; color: #fff; margin: 22px 0 10px; }
.review-block p { color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.review-block a.btn { margin-top: 10px; }

.review-verdict {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #0d2035, #1a3550);
  border: 1px solid rgba(22,117,225,0.4);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0;
}
.review-verdict__rating {
  font-family: 'Exo 2', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1;
}
.review-verdict__rating span { font-size: 1.4rem; color: var(--text-muted); }
.review-verdict__text { color: var(--text-muted); font-size: 0.97rem; line-height: 1.65; }
.review-verdict__text strong { color: #fff; }

/* ═══════════════════════════════════════════════
   MOBILE FEATURES
   ═══════════════════════════════════════════════ */
.mobile-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 36px 0 10px;
}
.mobile-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  min-width: 0;
  transition: border-color var(--transition);
}
.mobile-feat:hover { border-color: rgba(22,117,225,0.4); }
.mobile-feat__icon { font-size: 1.8rem; flex-shrink: 0; }
.mobile-feat strong { display: block; color: #fff; margin-bottom: 6px; font-size: 1rem; }
.mobile-feat p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; margin: 0; }

/* ═══════════════════════════════════════════════
   PAYMENTS TABLE
   ═══════════════════════════════════════════════ */
.payments-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.payments-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  min-width: 400px;
  background: var(--bg-card);
}
.payments-table th, .payments-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(22,117,225,0.12);
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  font-size: 0.95rem;
}
.payments-table th {
  background: rgba(22,117,225,0.12);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.payments-table tr:last-child td { border-bottom: none; }
.payments-table tr:hover td { background: rgba(22,117,225,0.06); }
.payments-table td { color: var(--text-muted); }
.payments-table td:first-child { color: #fff; font-weight: 600; }

.payments-note {
  background: rgba(22,117,225,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.payments-note strong { color: var(--text-white); }

/* ═══════════════════════════════════════════════
   SUPPORT
   ═══════════════════════════════════════════════ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), border-color var(--transition);
}
.support-card:hover { transform: translateY(-3px); border-color: rgba(22,117,225,0.4); }
.support-card__icon { font-size: 2rem; }
.support-card__title { font-size: 1.2rem; color: #fff; }
.support-card__text { color: var(--text-muted); font-size: 0.95rem; flex: 1; line-height: 1.6; }

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(22,117,225,0.35); }
.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  transition: background var(--transition);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.faq-item__q:hover { background: rgba(22,117,225,0.08); }
.faq-item__q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item__q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item__a.open { max-height: 400px; }
.faq-item__a p {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════ */
.final-cta {
  background: linear-gradient(135deg, #0a1820 0%, #112438 50%, #0a1820 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.final-cta__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.final-cta__badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.final-cta__title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.final-cta__bonus {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.final-cta__bonus strong { color: #4db3ff; font-size: 1.5rem; }
.final-cta__sub { color: var(--text-muted); margin-bottom: 32px; }
.final-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.final-cta__disclaimer { font-size: 0.8rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.site-footer {
  background: #0d1c27;
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.site-footer__brand { display: flex; flex-direction: column; gap: 16px; }
.site-footer__tagline { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; max-width: 300px; }

.site-footer__links h4,
.site-footer__info h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.site-footer__links ul,
.site-footer__info ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__links a,
.site-footer__info a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--transition);
}
.site-footer__links a:hover,
.site-footer__info a:hover { color: #fff; }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
}
.site-footer__copy {
  color: #4a6474;
  font-size: 0.82rem;
  margin-bottom: 8px;
  line-height: 1.6;
}
.site-footer__responsible {
  color: #4a6474;
  font-size: 0.82rem;
  line-height: 1.6;
}
.site-footer__responsible strong { color: #6a8494; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .advantages-grid,
  .promo-grid,
  .sport-grid,
  .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .steps-grid { gap: 16px; }
  .steps-grid::before { display: none; }
  .step-card { margin: 0; }

  .casino-grid { grid-template-columns: 1fr; }

  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
   ═══════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --hdr-h: 60px; }
  .section { padding: 56px 0; }

  /* Header */
  .site-nav { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: block; }
  .site-header__actions .btn--sm { display: none; }

  /* Hero */
  .hero__media { max-height: 240px; }
  .hero__img { max-height: 240px; }
  .hero__content { padding: 36px 0 48px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .hero__trust { gap: 8px; }

  /* Grids → 1 col */
  .advantages-grid,
  .promo-grid,
  .steps-grid,
  .sport-grid,
  .support-grid,
  .mobile-features { grid-template-columns: 1fr; }

  /* Buttons full width in CTA sections */
  .section-cta .btn,
  .final-cta__buttons .btn,
  .info-box .btn,
  .bonus-hero .btn,
  .originals-box .btn,
  .review-block .btn { width: 100%; }

  .final-cta__buttons { flex-direction: column; align-items: stretch; }

  /* Review verdict */
  .review-verdict { flex-direction: column; text-align: center; gap: 16px; }

  /* Bonus hero */
  .bonus-hero { padding: 36px 20px; }
  .bonus-hero__amount { font-size: clamp(2.4rem, 12vw, 4rem); }

  /* Footer */
  .site-footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__brand { grid-column: auto; }
  .site-footer__tagline { max-width: 100%; }

  /* Catfish */
  .catfish__inner { flex-wrap: wrap; }
  .catfish__text { width: 100%; -webkit-line-clamp: 1; }

  /* Review block */
  .review-block { padding: 28px 18px; }
  .originals-box { padding: 24px 18px; }
  .info-box { padding: 22px 18px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 400px)
   ═══════════════════════════════════════════════ */
@media (max-width: 400px) {
  body { font-size: 15px; }
  .btn { font-size: 0.9rem; padding: 11px 18px; }
  .btn--lg { font-size: 0.95rem; padding: 13px 22px; }
  .payments-table th, .payments-table td { padding: 10px 12px; font-size: 0.82rem; }
}