/* ============================================
   SpinEmpire Login DE — Main Stylesheet
   Palette: deep navy · indigo · cyan · amber
   ============================================ */

:root {
  --sel-bg:          #060914;
  --sel-bg-card:     #0c1024;
  --sel-bg-elevated: #131828;
  --sel-bg-nav:      rgba(6, 9, 20, 0.95);
  --sel-border:      rgba(99, 102, 241, 0.18);
  --sel-border-bright: rgba(99, 102, 241, 0.45);
  --sel-indigo:      #6366f1;
  --sel-indigo-dim:  rgba(99, 102, 241, 0.12);
  --sel-cyan:        #06b6d4;
  --sel-cyan-dim:    rgba(6, 182, 212, 0.12);
  --sel-gold:        #f59e0b;
  --sel-gold-hover:  #d97706;
  --sel-green:       #22c55e;
  --sel-text:        #f1f5f9;
  --sel-text-muted:  #94a3b8;
  --sel-text-dim:    #64748b;
  --sel-radius:      12px;
  --sel-radius-sm:   8px;
  --sel-radius-lg:   18px;
  --sel-shadow:      0 4px 32px rgba(6, 9, 20, 0.8);
  --sel-shadow-card: 0 2px 16px rgba(6, 9, 20, 0.6);
  --sel-wrap:        1160px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--sel-bg);
  color: var(--sel-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sel-cyan); text-decoration: none; }
a:hover { color: var(--sel-text); }
ul { list-style: none; }

/* ── Layout ── */
.sel-wrap {
  max-width: var(--sel-wrap);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Buttons ── */
.sel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  border-radius: var(--sel-radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.sel-btn--gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #060914;
  padding: 12px 28px;
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.35);
}
.sel-btn--gold:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #060914;
  box-shadow: 0 0 32px rgba(245, 158, 11, 0.55);
  transform: translateY(-1px);
}
.sel-btn--gold.sel-btn--lg {
  font-size: 17px;
  padding: 15px 36px;
  border-radius: var(--sel-radius);
}
.sel-btn--outline {
  background: transparent;
  color: var(--sel-cyan);
  border: 1.5px solid var(--sel-cyan);
  padding: 10px 24px;
}
.sel-btn--outline:hover {
  background: var(--sel-cyan-dim);
  color: var(--sel-cyan);
}
.sel-btn--full { width: 100%; }

/* ── Header ── */
.sel-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--sel-bg-nav);
  border-bottom: 1px solid var(--sel-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.sel-header__bar {
  max-width: var(--sel-wrap);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.sel-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.sel-logo img { display: block; }

.sel-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.sel-nav__link {
  color: var(--sel-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.sel-nav__link:hover,
.sel-nav__link.active {
  color: var(--sel-text);
  background: var(--sel-indigo-dim);
}
.sel-header__cta { flex-shrink: 0; }

/* Mobile menu toggle */
.sel-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.sel-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sel-text);
  border-radius: 2px;
  transition: all 0.25s;
}
.sel-mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 20px 16px;
  border-top: 1px solid var(--sel-border);
  gap: 4px;
}
.sel-mobile-nav .sel-nav__link { display: block; padding: 10px 14px; }
.sel-mobile-nav .sel-btn { margin-top: 8px; }

body.sel-menu-open .sel-mobile-nav { display: flex; }

/* ── Hero ── */
.sel-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
}
.sel-hero picture { display: block; width: 100%; }
.sel-hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 420px;
}
.sel-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 48px 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(6,9,20,0.82) 0%, rgba(6,9,20,0.45) 60%, rgba(6,9,20,0.1) 100%);
}
.sel-hero__overlay > * { pointer-events: auto; }
.sel-hero__overlay .sel-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sel-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: #a5b4fc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.sel-hero__title {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--sel-text);
  max-width: 600px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.sel-hero__title em {
  font-style: normal;
  color: var(--sel-gold);
}
.sel-hero__subtitle {
  font-size: 17px;
  color: rgba(241, 245, 249, 0.8);
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.55;
}
.sel-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.sel-hero__note {
  font-size: 12px;
  color: var(--sel-text-muted);
  margin-top: 12px;
}

/* ── Section ── */
.sel-section {
  padding: 72px 0;
}
.sel-section--tight {
  padding: 52px 0;
}
.sel-section--alt {
  background: var(--sel-bg-card);
}
.sel-section__head {
  text-align: center;
  margin-bottom: 48px;
}
.sel-section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sel-cyan);
  margin-bottom: 12px;
}
.sel-section__title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.sel-section__subtitle {
  font-size: 16px;
  color: var(--sel-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Feature cards ── */
.sel-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.sel-feature-card {
  flex: 1 1 240px;
  background: var(--sel-bg-card);
  border: 1px solid var(--sel-border);
  border-radius: var(--sel-radius);
  padding: 28px 24px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.sel-feature-card:hover {
  border-color: var(--sel-border-bright);
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.15);
}
.sel-feature-card__icon {
  width: 46px;
  height: 46px;
  background: var(--sel-indigo-dim);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.sel-feature-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.sel-feature-card__text {
  font-size: 14px;
  color: var(--sel-text-muted);
  line-height: 1.6;
}

/* ── Bonus package strip ── */
.sel-bonus-strip {
  background: linear-gradient(135deg, #0a0e1f 0%, #0f1430 50%, #0a0e1f 100%);
  border: 1px solid var(--sel-border);
  border-radius: var(--sel-radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.sel-bonus-strip__left { flex: 1 1 300px; }
.sel-bonus-strip__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sel-gold);
  margin-bottom: 8px;
}
.sel-bonus-strip__amount {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--sel-text);
  margin-bottom: 10px;
}
.sel-bonus-strip__amount em {
  font-style: normal;
  color: var(--sel-gold);
}
.sel-bonus-strip__detail {
  font-size: 14px;
  color: var(--sel-text-muted);
}
.sel-bonus-strip__stages {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.sel-stage-pill {
  background: var(--sel-bg-elevated);
  border: 1px solid var(--sel-border);
  border-radius: var(--sel-radius-sm);
  padding: 10px 16px;
  text-align: center;
  min-width: 100px;
}
.sel-stage-pill__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sel-indigo);
  margin-bottom: 4px;
}
.sel-stage-pill__val {
  font-size: 15px;
  font-weight: 800;
  color: var(--sel-text);
}
.sel-stage-pill__sub {
  font-size: 11px;
  color: var(--sel-text-muted);
}

/* ── Bonus Cards (full detail) ── */
.sel-bonus-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.sel-bonus-card {
  background: var(--sel-bg-card);
  border: 1px solid var(--sel-border);
  border-radius: var(--sel-radius-lg);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
.sel-bonus-card__image {
  flex-shrink: 0;
  min-height: 280px;
  background: linear-gradient(160deg, #0d1527 0%, #131f3a 50%, #0a1020 100%);
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}
.sel-bonus-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sel-bonus-card__content {
  flex: 1;
  padding: 28px 32px;
}
.sel-bonus-card__stage {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sel-indigo);
  background: var(--sel-indigo-dim);
  border: 1px solid rgba(99,102,241,0.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.sel-bonus-card__title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.sel-bonus-card__desc {
  font-size: 14px;
  color: var(--sel-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Stats table inside bonus card */
.sel-bonus-stats {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  border: 1px solid var(--sel-border);
  border-radius: var(--sel-radius-sm);
  overflow: hidden;
}
.sel-bonus-stats li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--sel-border);
}
.sel-bonus-stats li:last-child { border-bottom: none; }
.sel-bonus-stats li:nth-child(odd) { background: rgba(255,255,255,0.02); }
.sel-bonus-stats li span:first-child { color: var(--sel-text-muted); font-weight: 500; }
.sel-bonus-stats li span:last-child { font-weight: 700; text-align: right; color: var(--sel-text); }
.sel-bonus-card__terms {
  font-size: 11px;
  color: var(--sel-text-dim);
  margin-bottom: 18px;
  line-height: 1.5;
  padding: 8px 12px;
  background: var(--sel-bg);
  border-radius: 6px;
  border-left: 3px solid var(--sel-indigo);
}

/* ── Freispiele table ── */
.sel-table-wrap { overflow-x: auto; }
.sel-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.sel-table th {
  background: var(--sel-bg-elevated);
  color: var(--sel-text-muted);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--sel-border);
}
.sel-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--sel-border);
  color: var(--sel-text);
}
.sel-table tr:last-child td { border-bottom: none; }
.sel-table tr:nth-child(odd) td { background: rgba(255,255,255,0.015); }
.sel-table .sel-table__badge {
  display: inline-block;
  background: var(--sel-indigo-dim);
  color: #a5b4fc;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(99,102,241,0.3);
}

/* ── Steps ── */
.sel-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sel-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  position: relative;
}
.sel-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 60px;
  bottom: 0;
  width: 1px;
  background: var(--sel-border);
}
.sel-step__num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--sel-indigo-dim);
  border: 1px solid rgba(99,102,241,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #a5b4fc;
  position: relative;
  z-index: 1;
}
.sel-step__content { padding-top: 8px; }
.sel-step__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.sel-step__text {
  font-size: 14px;
  color: var(--sel-text-muted);
  line-height: 1.6;
}

/* ── Info cards ── */
.sel-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.sel-info-card {
  flex: 1 1 260px;
  background: var(--sel-bg-card);
  border: 1px solid var(--sel-border);
  border-radius: var(--sel-radius);
  padding: 24px;
  overflow: hidden;
}
.sel-info-card__thumb {
  margin: -24px -24px 16px;
  overflow: hidden;
  border-radius: var(--sel-radius) var(--sel-radius) 0 0;
}
.sel-info-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.sel-info-card:hover .sel-info-card__thumb img { transform: scale(1.04); }
.sel-info-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--sel-text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.sel-info-card__title svg { flex-shrink: 0; }
.sel-info-card__text {
  font-size: 14px;
  color: var(--sel-text-muted);
  line-height: 1.65;
}

/* ── Highlight box ── */
.sel-highlight {
  background: var(--sel-indigo-dim);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: var(--sel-radius);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.sel-highlight p {
  font-size: 14px;
  color: #c7d2fe;
  line-height: 1.6;
}
.sel-highlight strong { color: var(--sel-text); }

/* ── Warning box ── */
.sel-warn {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--sel-radius);
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #fcd34d;
  line-height: 1.6;
}

/* ── Games grid ── */
.sel-games-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.sel-game-cat {
  flex: 1 1 200px;
  background: var(--sel-bg-card);
  border: 1px solid var(--sel-border);
  border-radius: var(--sel-radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sel-game-cat:hover {
  border-color: var(--sel-border-bright);
  box-shadow: 0 0 20px rgba(99,102,241,0.12);
}
.sel-game-cat__thumb {
  margin: -24px -20px 16px;
  overflow: hidden;
  border-radius: var(--sel-radius) var(--sel-radius) 0 0;
}
.sel-game-cat__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.sel-game-cat:hover .sel-game-cat__thumb img { transform: scale(1.05); }
.sel-game-cat__icon { margin-bottom: 12px; }
.sel-game-cat__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.sel-game-cat__text { font-size: 13px; color: var(--sel-text-muted); }

/* ── Providers ── */
.sel-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}
.sel-provider-tag {
  background: var(--sel-bg-elevated);
  border: 1px solid var(--sel-border);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sel-text-muted);
}
.sel-game-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--sel-bg-elevated);
  border: 1px solid var(--sel-border);
  border-radius: var(--sel-radius-sm);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.sel-game-tag:hover {
  border-color: var(--sel-border-bright);
  box-shadow: 0 0 16px rgba(99,102,241,0.12);
}
.sel-game-tag img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.sel-game-tag:hover img { transform: scale(1.06); }
.sel-game-tag__name {
  font-size: 11px;
  font-weight: 600;
  color: var(--sel-text-muted);
  padding: 6px 8px;
  text-align: center;
  line-height: 1.3;
  max-width: 120px;
}
.sel-provider-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sel-bg-elevated);
  border: 1px solid var(--sel-border);
  border-radius: var(--sel-radius-sm);
  padding: 8px 20px;
  height: 52px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sel-provider-logo:hover {
  border-color: var(--sel-border-bright);
  box-shadow: 0 0 16px rgba(99,102,241,0.12);
}
.sel-provider-logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── FAQ ── */
.sel-faq { display: flex; flex-direction: column; gap: 2px; }
.sel-faq-item {
  background: var(--sel-bg-card);
  border: 1px solid var(--sel-border);
  border-radius: var(--sel-radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.sel-faq-item.active { border-color: var(--sel-border-bright); }
.sel-faq-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--sel-text);
  transition: color 0.2s;
}
.sel-faq-toggle:hover { color: var(--sel-cyan); }
.sel-faq-toggle__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--sel-bg-elevated);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.25s, background 0.2s;
  color: var(--sel-indigo);
  font-weight: 700;
}
.sel-faq-item.active .sel-faq-toggle__icon {
  transform: rotate(45deg);
  background: var(--sel-indigo-dim);
}
.sel-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}
.sel-faq-item.active .sel-faq-body { max-height: 300px; }
.sel-faq-body__inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--sel-text-muted);
  line-height: 1.7;
}

/* ── Footer ── */
.sel-footer {
  background: #040710;
  border-top: 1px solid var(--sel-border);
  padding: 52px 0 28px;
}
.sel-footer__testimonials {
  margin-bottom: 40px;
}
.sel-footer__testi-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sel-text-dim);
  margin-bottom: 16px;
  text-align: center;
}
.sel-footer__testi-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 24px;
}
.sel-footer__testi-link {
  opacity: 0.4;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}
.sel-footer__testi-link:hover { opacity: 0.75; }
.sel-footer__testi-link img { height: 22px; width: auto;  }

.sel-footer__divider {
  border: none;
  border-top: 1px solid var(--sel-border);
  margin: 32px 0;
}
.sel-footer__main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}
.sel-footer__brand { flex: 1 1 220px; }
.sel-footer__brand-logo {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.sel-footer__brand-logo img { display: block; }
.sel-footer__tagline {
  font-size: 13px;
  color: var(--sel-text-dim);
  line-height: 1.65;
  margin-bottom: 12px;
}
.sel-footer__links { flex: 1 1 140px; }
.sel-footer__links-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sel-text-dim);
  margin-bottom: 14px;
}
.sel-footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sel-footer__links a {
  font-size: 14px;
  color: var(--sel-text-muted);
  transition: color 0.2s;
}
.sel-footer__links a:hover { color: var(--sel-text); }

.sel-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.sel-footer__copyright {
  font-size: 12px;
  color: var(--sel-text-dim);
}
.sel-footer__legal {
  font-size: 11px;
  color: var(--sel-text-dim);
  line-height: 1.6;
  max-width: 640px;
}

/* ── Banner bonus placeholder ── */
.sel-bonus-card__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, #0d1527 0%, #131828 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

/* ── Promo code / no deposit box ── */
.sel-promo-box {
  background: var(--sel-bg-elevated);
  border: 1px solid var(--sel-border);
  border-radius: var(--sel-radius);
  padding: 24px;
  margin-bottom: 16px;
}
.sel-promo-box__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--sel-text);
}
.sel-promo-box__text {
  font-size: 14px;
  color: var(--sel-text-muted);
  line-height: 1.65;
}

/* ── Inner page hero ── */
.sel-hero--inner {
  min-height: 220px;
  background: linear-gradient(135deg, #07091a 0%, #0d1230 50%, #07091a 100%);
  border-bottom: 1px solid var(--sel-border);
  display: flex;
  align-items: center;
}
.sel-hero--inner .sel-hero__overlay {
  background: none;
  padding: 40px 0;
}
.sel-hero--inner picture img { min-height: 220px; }
.sel-hero--inner .sel-hero__title { font-size: clamp(22px, 3vw, 36px); }

/* ── Wagering explainer ── */
.sel-wager-box {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--sel-bg-card);
  border: 1px solid var(--sel-border);
  border-radius: var(--sel-radius-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
}
.sel-wager-stat {
  flex: 1 1 140px;
  text-align: center;
}
.sel-wager-stat__val {
  font-size: 28px;
  font-weight: 900;
  color: var(--sel-gold);
  letter-spacing: -0.02em;
}
.sel-wager-stat__label {
  font-size: 13px;
  color: var(--sel-text-muted);
  margin-top: 4px;
}

/* ── Simple content page ── */
.sel-content-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 20px;
}
.sel-content-page h1 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.sel-content-page .sel-page-meta {
  font-size: 13px;
  color: var(--sel-text-dim);
  margin-bottom: 36px;
}
.sel-content-page h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--sel-text);
}
.sel-content-page p, .sel-content-page li {
  font-size: 15px;
  color: var(--sel-text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.sel-content-page ul { padding-left: 20px; list-style: disc; }

/* ── Mobile section redesign ── */
.sel-mobile-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}
.sel-mobile-text {
  flex: 1 1 320px;
}
.sel-mobile-phone-wrap {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 0 40px rgba(99,102,241,0.2));
}

.sel-check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sel-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sel-check-item__icon { flex-shrink: 0; margin-top: 1px; }
.sel-check-item__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--sel-text);
  margin-bottom: 2px;
}
.sel-check-item__desc {
  font-size: 13px;
  color: var(--sel-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .sel-nav, .sel-header__cta { display: none; }
  .sel-burger { display: flex; }
  .sel-bonus-card { flex-direction: column; }
  .sel-bonus-card__image { width: 100%;}
  .sel-bonus-strip { flex-direction: column; text-align: center; }
  .sel-bonus-strip__stages { justify-content: center; }
  .sel-wager-box { justify-content: center; }
  .sel-mobile-phone-wrap { display: none; }
}
@media (max-width: 600px) {
  .sel-section { padding: 48px 0; }
  .sel-hero { min-height: 320px; }
  .sel-hero picture img { min-height: 320px; }
  .sel-hero__actions { flex-direction: column; align-items: flex-start; }
  .sel-btn--gold.sel-btn--lg { font-size: 15px; padding: 12px 22px; }
  .sel-bonus-strip { padding: 24px 20px; }
  .sel-bonus-card__content { padding: 20px; }
  .sel-footer__main { gap: 24px; }
}
