/* SpinEmpire Bonus DE — main.css */
/* Prefix: seb- */

@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700;800&display=swap');

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: #0a0d14;
  color: #e6eaf4;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── CSS Variables ─── */
:root {
  --seb-bg:        #0a0d14;
  --seb-surf:      #111827;
  --seb-surf-2:    #1a2236;
  --seb-surf-3:    #212d45;
  --seb-border:    rgba(255,255,255,0.08);
  --seb-border-2:  rgba(255,255,255,0.14);
  --seb-gold:      #e0b84a;
  --seb-gold-dk:   #c79d35;
  --seb-text:      #e6eaf4;
  --seb-muted:     rgba(230,234,244,0.52);
  --seb-radius:    10px;
  --seb-radius-lg: 18px;
  --seb-max:       1160px;
  --seb-gap:       24px;
}

/* ─── Utilities ─── */
.seb-wrap {
  max-width: var(--seb-max);
  margin: 0 auto;
  padding: 0 20px;
}
.seb-section {
  padding: 72px 0;
}
.seb-section--tight {
  padding: 48px 0;
}
.seb-h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--seb-text);
  margin-bottom: 12px;
}
.seb-h2 span { color: var(--seb-gold); }
.seb-lead {
  font-size: 15px;
  color: var(--seb-muted);
  max-width: 620px;
  margin-bottom: 40px;
}
.seb-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--seb-gold);
  background: rgba(224,184,74,.12);
  border: 1px solid rgba(224,184,74,.25);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 14px;
}

/* ─── Buttons ─── */
.seb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 10px 22px;
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.seb-btn--primary {
  background: var(--seb-gold);
  color: #000;
  border-color: var(--seb-gold);
}
.seb-btn--primary:hover { background: var(--seb-gold-dk); border-color: var(--seb-gold-dk); }
.seb-btn--ghost {
  background: transparent;
  color: var(--seb-text);
  border-color: var(--seb-border-2);
}
.seb-btn--ghost:hover { border-color: rgba(255,255,255,.35); }
.seb-btn--lg { font-size: 16px; padding: 13px 30px; border-radius: 10px; }
.seb-btn--full { width: 100%; }

/* ─── Header ─── */
.seb-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10,13,20,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--seb-border);
}
.seb-header__bar {
  max-width: var(--seb-max);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.seb-head__left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.seb-logo img { height: 36px; width: auto; }
.seb-nav { flex: 1; display: flex; justify-content: center; }
.seb-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
.seb-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--seb-muted);
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}
.seb-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--seb-gold);
  transition: width .2s;
}
.seb-nav a:hover,
.seb-nav a.active { color: var(--seb-text); }
.seb-nav a:hover::after,
.seb-nav a.active::after { width: 100%; }
.seb-head__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.seb-head__actions .seb-btn { max-width: 140px; }
.seb-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--seb-border-2);
  border-radius: 7px;
  padding: 7px;
}
.seb-burger span {
  display: block;
  height: 2px;
  background: var(--seb-text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ─── Mobile overlay & panel ─── */
.seb-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(0,0,0,.6);
  opacity: 0;
  transition: opacity .25s;
}
.seb-mobile-panel {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  z-index: 960;
  width: min(300px, 88vw);
  background: var(--seb-surf);
  border-right: 1px solid var(--seb-border);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .3s ease;
}
.seb-mobile-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--seb-border);
}
.seb-mobile-panel__logo img { height: 30px; }
.seb-mobile-panel__close {
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid var(--seb-border-2);
  border-radius: 6px;
  font-size: 18px;
  line-height: 1;
  color: var(--seb-muted);
}
.seb-mobile-panel__nav {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.seb-mobile-panel__nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--seb-muted);
  transition: background .15s, color .15s;
}
.seb-mobile-panel__nav a:hover,
.seb-mobile-panel__nav a.active {
  background: var(--seb-surf-2);
  color: var(--seb-text);
}
.seb-mobile-panel__actions {
  padding: 16px 20px;
  border-top: 1px solid var(--seb-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Open state */
body.seb-menu-open { overflow: hidden; }
body.seb-menu-open .seb-mobile-overlay { display: block; opacity: 1; }
body.seb-menu-open .seb-mobile-panel { transform: translateX(0); }

/* ─── Hero ─── */
.seb-hero {
  position: relative;
  overflow: hidden;
}
.seb-hero picture { display: block; }
.seb-hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.seb-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 40px 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10,13,20,.78) 0%, rgba(10,13,20,.32) 65%, transparent 100%);
}
.seb-hero__overlay > * { pointer-events: auto; }
.seb-hero__overlay .seb-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.seb-hero__kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--seb-gold);
  margin-bottom: 12px;
}
.seb-hero__title {
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  max-width: 520px;
  margin-bottom: 14px;
}
.seb-hero__subtitle {
  font-size: clamp(13px, 1.4vw, 16px);
  color: rgba(255,255,255,.82);
  max-width: 420px;
  margin-bottom: 28px;
}

/* Hero sub (subpages) */
.seb-hero--sub .seb-hero__title { font-size: clamp(22px, 3vw, 38px); max-width: 500px; }
.seb-hero--sub img { max-height: 400px; object-fit: cover; object-position: center top; }

/* ─── Trust bar ─── */
.seb-trust {
  background: var(--seb-surf);
  border-bottom: 1px solid var(--seb-border);
}
.seb-trust__inner {
  max-width: var(--seb-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: stretch;
}
.seb-trust__item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-right: 1px solid var(--seb-border);
}
.seb-trust__item:last-child { border-right: none; }
.seb-trust__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}
.seb-trust__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--seb-text);
  line-height: 1.3;
}
.seb-trust__sub {
  font-size: 11px;
  color: var(--seb-muted);
  margin-top: 2px;
}

/* ─── About ─── */
.seb-about__grid {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.seb-about__text { flex: 1; }
.seb-about__text p { font-size: 15px; color: var(--seb-muted); margin-bottom: 16px; line-height: 1.7; }
.seb-about__text p:last-child { margin-bottom: 0; }
.seb-about__aside {
  flex: 0 0 300px;
  background: var(--seb-surf);
  border: 1px solid var(--seb-border);
  border-radius: var(--seb-radius-lg);
  padding: 28px;
}
.seb-about__fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--seb-border);
  font-size: 13px;
}
.seb-about__fact:last-child { border-bottom: none; padding-bottom: 0; }
.seb-about__fact-label { color: var(--seb-muted); }
.seb-about__fact-value { font-weight: 700; color: var(--seb-text); text-align: right; max-width: 160px; }

/* ─── Bonuses ─── */
.seb-bonuses__total {
  background: linear-gradient(135deg, rgba(224,184,74,.12) 0%, rgba(224,184,74,.04) 100%);
  border: 1px solid rgba(224,184,74,.25);
  border-radius: var(--seb-radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.seb-bonuses__total-left h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--seb-gold);
  margin-bottom: 6px;
}
.seb-bonuses__total-amount {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: var(--seb-text);
}

/* Global CTA (widget) */
a[data-bonus="cta_url"] { display: none; }

/* Stage cards grid */
.seb-stage-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.seb-stage-card {
  flex: 1 1 calc(25% - 12px);
  min-width: 220px;
  background: var(--seb-surf);
  border: 1px solid var(--seb-border);
  border-radius: var(--seb-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s;
}
.seb-stage-card:hover { border-color: rgba(224,184,74,.3); }
.seb-stage-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--seb-surf-2);
}
.seb-stage-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.seb-stage-card__num {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--seb-gold);
  margin-bottom: 6px;
}
.seb-stage-card__headline {
  font-size: 17px;
  font-weight: 800;
  color: var(--seb-text);
  margin-bottom: 8px;
  line-height: 1.25;
}
.seb-stage-card__desc {
  font-size: 13px;
  color: var(--seb-muted);
  flex: 1;
  margin-bottom: 16px;
  line-height: 1.6;
}
.seb-stage-meta {
  list-style: none;
  border: 1px solid var(--seb-border);
  border-radius: var(--seb-radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.seb-stage-meta li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 12px;
  font-size: 12px;
  border-bottom: 1px solid var(--seb-border);
}
.seb-stage-meta li:last-child { border-bottom: none; }
.seb-stage-meta li:nth-child(odd) { background: rgba(255,255,255,.025); }
.seb-stage-meta .seb-meta-label { color: var(--seb-muted); font-weight: 500; }
.seb-stage-meta .seb-meta-val { font-weight: 700; text-align: right; }
.seb-stage-card__terms {
  font-size: 11px;
  color: var(--seb-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ─── Games / Providers ─── */
.seb-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.seb-provider {
  flex: 1 1 140px;
  background: var(--seb-surf);
  border: 1px solid var(--seb-border);
  border-radius: var(--seb-radius);
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s;
}
.seb-provider:hover { border-color: var(--seb-border-2); }
.seb-provider img {
  max-width: 110px;
  height: 36px;
  object-fit: contain;
  opacity: .7;
  transition: opacity .2s;
}
.seb-provider:hover img { opacity: 1; }

.seb-games__grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.seb-games__item {
  flex: 1 1 calc(33.33% - 12px);
  min-width: 240px;
  background: var(--seb-surf);
  border: 1px solid var(--seb-border);
  border-radius: var(--seb-radius-lg);
  padding: 28px 24px;
}
.seb-games__item-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--seb-text);
  margin-bottom: 8px;
}
.seb-games__item-desc {
  font-size: 14px;
  color: var(--seb-muted);
  line-height: 1.6;
}

/* Game cards with RTP */
.seb-game-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.seb-game-card {
  min-width: 200px;
  background: var(--seb-surf);
  border: 1px solid var(--seb-border);
  border-radius: var(--seb-radius-lg);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.seb-game-card:hover {
  border-color: var(--seb-border-2);
  transform: translateY(-3px);
}
.seb-game-card__thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.seb-game-card__info {
  padding: 10px 14px 14px;
}
.seb-game-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--seb-text);
  margin-bottom: 2px;
}
.seb-game-card__provider {
  font-size: 12px;
  color: var(--seb-muted);
  margin-bottom: 6px;
}
.seb-game-card__rtp {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--seb-gold);
  background: rgba(224,184,74,.1);
  border: 1px solid rgba(224,184,74,.2);
  border-radius: 4px;
  padding: 2px 7px;
}

/* ─── Features (2-col layout) ─── */
.seb-features__grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.seb-features__col { flex: 1 1 300px; }
.seb-features__col h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--seb-text);
  margin-bottom: 16px;
}
.seb-features__col p {
  font-size: 14px;
  color: var(--seb-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.seb-check-list { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.seb-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--seb-muted);
}
.seb-check-list li::before {
  content: '✓';
  color: var(--seb-gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── Safety ─── */
.seb-safety__grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.seb-safety__card {
  flex: 1 1 calc(33.33% - 12px);
  min-width: 220px;
  background: var(--seb-surf);
  border: 1px solid var(--seb-border);
  border-radius: var(--seb-radius-lg);
  padding: 28px 24px;
}
.seb-safety__card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--seb-text);
  margin-bottom: 10px;
}
.seb-safety__card-body {
  font-size: 14px;
  color: var(--seb-muted);
  line-height: 1.65;
}

/* ─── Reviews ─── */
.seb-reviews__slider { overflow: hidden; }
.seb-reviews__track {
  display: flex;
  gap: 20px;
  transition: transform .4s ease;
}
.seb-review-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  background: var(--seb-surf);
  border: 1px solid var(--seb-border);
  border-radius: var(--seb-radius-lg);
  padding: 24px;
}
.seb-review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
  gap: 8px;
}
.seb-review-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--seb-text);
  line-height: 1.3;
}
.seb-review-card__stars { color: var(--seb-gold); font-size: 14px; white-space: nowrap; }
.seb-review-card__meta {
  font-size: 12px;
  color: var(--seb-muted);
  margin-bottom: 14px;
}
.seb-review-card__text {
  font-size: 14px;
  color: var(--seb-muted);
  line-height: 1.65;
  font-style: italic;
}
.seb-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}
.seb-slider-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--seb-border-2);
  background: var(--seb-surf);
  color: var(--seb-text);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
}
.seb-slider-btn:hover { border-color: var(--seb-gold); background: var(--seb-surf-2); }
.seb-slider-dots { display: flex; gap: 7px; }
.seb-slider-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--seb-border-2);
  cursor: pointer;
  transition: background .2s;
}
.seb-slider-dot.active { background: var(--seb-gold); }

/* ─── FAQ ─── */
.seb-faq__list { display: flex; flex-direction: column; gap: 8px; }
.seb-faq__item {
  background: var(--seb-surf);
  border: 1px solid var(--seb-border);
  border-radius: var(--seb-radius);
  overflow: hidden;
}
.seb-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  color: var(--seb-text);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  transition: background .15s;
}
.seb-faq__q:hover { background: rgba(255,255,255,.03); }
.seb-faq__icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--seb-border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform .3s;
  color: var(--seb-muted);
}
.seb-faq__item.open .seb-faq__icon { transform: rotate(45deg); }
.seb-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.seb-faq__a-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--seb-muted);
  line-height: 1.7;
}

/* ─── Footer ─── */
.seb-footer {
  background: var(--seb-surf);
  border-top: 1px solid var(--seb-border);
  padding: 48px 0 28px;
}
.seb-footer__top {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--seb-border);
  margin-bottom: 28px;
}
.seb-footer__brand { flex: 0 0 240px; }
.seb-footer__logo { margin-bottom: 14px; }
.seb-footer__logo img { height: 32px; }
.seb-footer__tagline {
  font-size: 13px;
  color: var(--seb-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.seb-footer__cta { display: flex; gap: 10px; flex-wrap: wrap; }
.seb-footer__nav { display: flex; gap: 48px; flex-wrap: wrap; }
.seb-footer__nav-group h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--seb-muted);
  margin-bottom: 14px;
}
.seb-footer__nav-group ul { display: flex; flex-direction: column; gap: 9px; }
.seb-footer__nav-group a {
  font-size: 14px;
  color: var(--seb-muted);
  transition: color .15s;
}
.seb-footer__nav-group a:hover { color: var(--seb-text); }

/* Testimonials */
.seb-footer__testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--seb-border);
  margin-bottom: 20px;
}
.seb-footer__testimonials a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: var(--seb-surf-2);
  border: 1px solid var(--seb-border);
  border-radius: 8px;
  transition: border-color .2s;
}
.seb-footer__testimonials a:hover { border-color: var(--seb-border-2); }
.seb-footer__testimonials img { height: 22px; width: auto; opacity: .65; transition: opacity .2s; }
.seb-footer__testimonials a:hover img { opacity: 1; }

.seb-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.seb-footer__copy {
  font-size: 12px;
  color: var(--seb-muted);
}
.seb-footer__disclaimer {
  font-size: 11px;
  color: rgba(230,234,244,.3);
  max-width: 500px;
  text-align: right;
  line-height: 1.5;
}

/* ─── Legal pages ─── */
.seb-section--legal-hero {
  background: var(--seb-surf);
  border-bottom: 1px solid var(--seb-border);
  padding: 52px 0 40px;
}
.seb-legal {
  max-width: 800px;
}
.seb-legal__block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--seb-border);
}
.seb-legal__block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
.seb-legal__block h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--seb-text);
  margin-bottom: 14px;
}
.seb-legal__block p {
  font-size: 14px;
  color: var(--seb-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.seb-legal__block p:last-child { margin-bottom: 0; }
.seb-legal__block ul {
  padding-left: 20px;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seb-legal__block ul li {
  font-size: 14px;
  color: var(--seb-muted);
  line-height: 1.6;
}
.seb-legal__block a {
  color: var(--seb-gold);
  text-decoration: underline;
}
.seb-legal__updated {
  font-size: 12px;
  color: rgba(230,234,244,.35);
  margin-top: 40px;
}

/* ─── Bonus page specifics ─── */
.seb-bonus-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--seb-border);
  border-radius: var(--seb-radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
.seb-bonus-table th {
  background: var(--seb-surf-2);
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--seb-muted);
  text-align: left;
  border-bottom: 1px solid var(--seb-border);
}
.seb-bonus-table td {
  padding: 13px 16px;
  font-size: 13px;
  color: var(--seb-text);
  border-bottom: 1px solid var(--seb-border);
  vertical-align: top;
}
.seb-bonus-table tr:last-child td { border-bottom: none; }
.seb-bonus-table tr:nth-child(odd) td { background: rgba(255,255,255,.02); }
.seb-bonus-table td strong { color: var(--seb-gold); font-weight: 700; }

/* Full bonus cards on bonuses page */
.seb-bonus-cards { display: flex; flex-direction: column; gap: 24px; }
.seb-bcard {
  background: var(--seb-surf);
  border: 1px solid var(--seb-border);
  border-radius: var(--seb-radius-lg);
  overflow: hidden;
  display: flex;
  gap: 0;
}
.seb-bcard:hover { border-color: rgba(224,184,74,.2); }
.seb-bcard__image {
  flex: 0 0 200px;
  background: var(--seb-surf-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.seb-bcard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seb-bcard__content { flex: 1; padding: 24px 28px; }
.seb-bcard__stage {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--seb-gold);
  margin-bottom: 4px;
}
.seb-bcard__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--seb-text);
  margin-bottom: 6px;
}
.seb-bcard__desc {
  font-size: 14px;
  color: var(--seb-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.seb-bstats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.seb-bstats li {
  background: var(--seb-surf-2);
  border: 1px solid var(--seb-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  display: flex;
  gap: 5px;
}
.seb-bstats .seb-bl { color: var(--seb-muted); }
.seb-bstats .seb-bv { font-weight: 700; color: var(--seb-text); }
.seb-bcard__terms {
  font-size: 11px;
  color: var(--seb-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.seb-bcard__cta { display: flex; gap: 10px; }

/* Steps */
.seb-steps { display: flex; flex-direction: column; gap: 0; counter-reset: step; }
.seb-step {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}
.seb-step:last-child { padding-bottom: 0; }
.seb-step__num {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(224,184,74,.12);
  border: 1px solid rgba(224,184,74,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--seb-gold);
  counter-increment: step;
  position: relative;
  z-index: 1;
}
.seb-step:not(:last-child) .seb-step__num::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% + 32px - 42px);
  background: var(--seb-border);
  bottom: -32px;
}
.seb-step__body { padding-top: 8px; }
.seb-step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--seb-text);
  margin-bottom: 6px;
}
.seb-step__text { font-size: 14px; color: var(--seb-muted); line-height: 1.65; }

/* ─── Responsive ─── */
@media (max-width: 980px) {
  .seb-burger { display: flex; }
  .seb-nav { display: none; }
  .seb-head__actions .seb-btn--ghost { display: none; }
  .seb-section { padding: 52px 0; }
  .seb-trust__inner { flex-wrap: wrap; }
  .seb-trust__item { flex: 1 1 calc(50% - 1px); }
  .seb-trust__item:nth-child(2) { border-right: none; }
  .seb-about__grid { flex-direction: column; }
  .seb-about__aside { flex: 0 0 auto; width: 100%; }
  .seb-stage-card { flex: 1 1 calc(50% - 8px); }
  .seb-games__item { flex: 1 1 calc(50% - 8px); }
  .seb-game-card { flex: 0 0 calc(50% - 8px); }
  .seb-safety__card { flex: 1 1 calc(50% - 8px); }
  .seb-review-card { flex: 0 0 calc(50% - 10px); }
  .seb-bcard { flex-direction: column; }
  .seb-bcard__image { flex: 0 0 180px; width: 100%; }
  .seb-footer__top { flex-direction: column; }
  .seb-footer__brand { flex: 0 0 auto; }
  .seb-footer__disclaimer { text-align: left; }
  .seb-footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .seb-h2 { font-size: 22px; }
  .seb-section { padding: 40px 0; }
  .seb-trust__item { flex: 0 0 100%; border-right: none; border-bottom: 1px solid var(--seb-border); }
  .seb-trust__item:last-child { border-bottom: none; }
  .seb-bonuses__total { flex-direction: column; gap: 16px; }
  .seb-stage-card { flex: 0 0 100%; }
  .seb-games__item { flex: 0 0 100%; }
  .seb-game-card { flex: 0 0 calc(50% - 8px); }
  .seb-safety__card { flex: 0 0 100%; }
  .seb-review-card { flex: 0 0 100%; }
  .seb-features__grid { flex-direction: column; }
  .seb-hero__overlay { padding: 24px 0; }
  .seb-bonus-table { font-size: 12px; }
  .seb-bonus-table th, .seb-bonus-table td { padding: 10px 12px; }
  .seb-bcard__content { padding: 18px 20px; }
  .seb-footer__nav { flex-direction: column; gap: 28px; }
}
