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

:root {
  --spe-primary: #be123c;
  --spe-primary-hover: #9f1239;
  --spe-gold: #fbbf24;
  --spe-gold-light: #fcd34d;
  --spe-bg: #0f0407;
  --spe-surface: #1a0810;
  --spe-surface-2: #22101a;
  --spe-border: #3d1428;
  --spe-text: #f5e8ee;
  --spe-muted: #a87a8e;
  --spe-radius: 10px;
  --spe-radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  background: var(--spe-bg);
  color: var(--spe-text);
  line-height: 1.6;
}

body.spe-menu-open { overflow: hidden; }

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

/* === WRAP === */
.spe-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === BUTTONS === */
.spe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 10px 22px;
  border-radius: var(--spe-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.spe-btn--primary {
  background: var(--spe-primary);
  border-color: var(--spe-primary);
  color: #fff;
}
.spe-btn--primary:hover {
  background: var(--spe-primary-hover);
  border-color: var(--spe-primary-hover);
}

.spe-btn--ghost {
  background: transparent;
  border-color: var(--spe-border);
  color: var(--spe-text);
}
.spe-btn--ghost:hover {
  border-color: var(--spe-primary);
  color: var(--spe-primary);
}

.spe-btn--gold {
  background: var(--spe-gold);
  border-color: var(--spe-gold);
  color: #0d0d0d;
}
.spe-btn--gold:hover {
  background: var(--spe-gold-light);
  border-color: var(--spe-gold-light);
}

.spe-btn--lg {
  font-size: 16px;
  padding: 14px 32px;
}

.spe-btn--full { width: 100%; justify-content: center; }

/* === HEADER === */
.spe-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 4, 7, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--spe-border);
}

.spe-header__bar {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 24px;
}

.spe-head__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.spe-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--spe-text);
}
.spe-header .spe-logo img,
.spe-footer .spe-logo img { width: auto; }
.spe-mobile-panel__logo img { width: 44px; height: 44px; }
.spe-logo span { color: var(--spe-primary); }

.spe-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.spe-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.spe-nav ul li a {
  display: block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--spe-muted);
  border-radius: 6px;
  position: relative;
  transition: color 0.2s;
}
.spe-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--spe-primary);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.spe-nav ul li a:hover,
.spe-nav ul li a.spe-active {
  color: var(--spe-text);
}
.spe-nav ul li a:hover::after,
.spe-nav ul li a.spe-active::after {
  transform: scaleX(1);
}

.spe-head__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Burger */
.spe-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--spe-border);
  border-radius: var(--spe-radius);
  cursor: pointer;
  padding: 0;
}
.spe-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--spe-text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Mobile overlay */
.spe-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 110;
  opacity: 0;
  transition: opacity 0.3s;
}
.spe-mobile-overlay.spe-visible {
  display: block;
}

/* Mobile panel */
.spe-mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(300px, 88vw);
  background: var(--spe-surface);
  z-index: 120;
  transform: translateX(-100%);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.spe-mobile-panel.spe-open {
  transform: translateX(0);
}
.spe-mobile-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.spe-mobile-panel__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
}
.spe-mobile-panel__logo img { width: 32px; height: 32px; }
.spe-mobile-panel__logo span { color: var(--spe-primary); }
.spe-mobile-panel__close {
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid var(--spe-border);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--spe-text);
  display: flex;
  align-items: center;
  justify-content: center;
}
.spe-mobile-panel__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.spe-mobile-panel__nav li a {
  display: block;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--spe-muted);
  border-radius: var(--spe-radius);
  transition: color 0.2s, background 0.2s;
}
.spe-mobile-panel__nav li a:hover,
.spe-mobile-panel__nav li a.spe-active {
  color: var(--spe-text);
  background: var(--spe-surface-2);
}
.spe-mobile-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.spe-mobile-panel__actions .spe-btn { width: 100%; justify-content: center; }

/* === HERO === */
.spe-hero {
  position: relative;
  overflow: hidden;
}
.spe-hero__link {
  display: block;
  line-height: 0;
}
.spe-hero__link:hover img { opacity: 0.92; }
.spe-hero picture {
  display: block;
  width: 100%;
}
.spe-hero picture img {
  width: 100%;
  height: auto;
  display: block;
}
.spe-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  padding: 40px 0;
  pointer-events: none;
}
.spe-hero__overlay > * { pointer-events: auto; }
.spe-hero__overlay .spe-wrap {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.spe-hero__title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
  margin: 0 0 12px;
  max-width: 600px;
  line-height: 1.2;
}
.spe-hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,.88);
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
  margin: 0 0 24px;
  max-width: 540px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .spe-hero__overlay {
    padding: 24px 0;
  }
  .spe-hero__title {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .spe-hero__subtitle {
    font-size: 13px;
    margin-bottom: 16px;
    display: none;
  }
}

/* === SECTIONS === */
.spe-section {
  padding: 64px 0;
}
.spe-section--alt {
  background: var(--spe-surface);
}
.spe-section--dark {
  background: var(--spe-surface-2);
}

.spe-section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--spe-text);
}
.spe-section-subtitle {
  font-size: 16px;
  color: var(--spe-muted);
  margin-bottom: 40px;
}
.spe-section p {
  font-size: 15px;
  color: var(--spe-muted);
  margin-bottom: 14px;
  line-height: 1.75;
}
.spe-section p:last-child { margin-bottom: 0; }

/* === FEATURES === */
.spe-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.spe-feature-card {
  flex: 1 1 220px;
  background: var(--spe-surface-2);
  border: 1px solid var(--spe-border);
  border-radius: var(--spe-radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.spe-feature-card img,
.spe-feature-card__icon,
.spe-feature-card > svg {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}
.spe-feature-card h3 {
  font-size: 16px;
  font-weight: 700;
}
.spe-feature-card p {
  font-size: 14px;
  color: var(--spe-muted);
  margin-bottom: 0;
}

/* === BONUS GRID === */
.spe-bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

/* === BONUS STEPS/CARDS === */
.spe-bonus-card {
  flex: 1 1 calc(50% - 12px);
  background: var(--spe-surface-2);
  border: 1px solid var(--spe-border);
  border-radius: var(--spe-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.spe-bonus-card__img {
  width: 100%;
  object-fit: cover;
}
.spe-bonus-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.spe-bonus-card__step {
  font-size: 12px;
  color: var(--spe-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.spe-bonus-card__amount {
  font-size: 20px;
  font-weight: 700;
  color: var(--spe-text);
}
.spe-bonus-card__detail {
  font-size: 13px;
  color: var(--spe-muted);
}
.spe-bonus-card__terms {
  font-size: 11px;
  color: var(--spe-muted);
  margin-top: 4px;
  line-height: 1.5;
}
.spe-bonus-card__body .spe-btn {
  margin-top: auto;
}

/* === BONUS STATS (widget cards) === */
.spe-bonus-stats {
  list-style: none;
  margin: 8px 0;
  padding: 0;
  border: 1px solid var(--spe-border);
  border-radius: var(--spe-radius);
  overflow: hidden;
}
.spe-bonus-stats li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 7px 12px;
  font-size: 13px;
  border-bottom: 1px solid var(--spe-border);
}
.spe-bonus-stats li:last-child { border-bottom: none; }
.spe-bonus-stats li:nth-child(odd) { background: rgba(255,255,255,0.02); }
.spe-bonus-stats li span:first-child { color: var(--spe-muted); font-weight: 500; }
.spe-bonus-stats li span:last-child { font-weight: 700; text-align: right; color: var(--spe-text); }

/* === GAMES GRID === */
.spe-games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.spe-game-card {
  flex: 0 0 calc(33.333% - 11px);
}
.spe-game-card__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--spe-radius);
  border: 1px solid var(--spe-border);
}
.spe-game-card__name {
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
  text-align: center;
  color: var(--spe-muted);
}

/* === PROVIDERS === */
.spe-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.spe-provider {
  flex: 1 1 140px;
  background: #ffffff;
  border: 1px solid var(--spe-border);
  border-radius: var(--spe-radius);
  padding: 16px 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spe-provider img {
  max-width: 110px;
  height: 36px;
  object-fit: contain;
  margin: 0 auto;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.spe-provider:hover img { opacity: 1; }

/* === TWO-COL LAYOUT === */
.spe-two-col {
  display: flex;
  align-items: center;
  gap: 48px;
}
.spe-two-col--reverse { flex-direction: row-reverse; }
.spe-two-col__img {
  flex: 0 0 45%;
  border-radius: var(--spe-radius-lg);
  overflow: hidden;
}
.spe-two-col__img img {
  width: 100%;
  height: auto;
  border-radius: var(--spe-radius-lg);
}
.spe-two-col__text { flex: 1; }
.spe-two-col__text h2 { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.spe-two-col__text p { font-size: 15px; color: var(--spe-muted); margin-bottom: 12px; }
.spe-two-col__text ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.spe-two-col__text ul li {
  font-size: 14px;
  color: var(--spe-muted);
  padding-left: 20px;
  position: relative;
}
.spe-two-col__text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--spe-primary);
  font-weight: 700;
}

/* === PROS / CONS === */
.spe-pros-cons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.spe-pros-col,
.spe-cons-col {
  flex: 1 1 280px;
  background: var(--spe-surface-2);
  border: 1px solid var(--spe-border);
  border-radius: var(--spe-radius-lg);
  padding: 24px;
}
.spe-pros-col h3 { font-size: 17px; font-weight: 700; color: #22c55e; margin-bottom: 16px; }
.spe-cons-col h3 { font-size: 17px; font-weight: 700; color: var(--spe-primary); margin-bottom: 16px; }
.spe-pros-col ul, .spe-cons-col ul { display: flex; flex-direction: column; gap: 0; }
.spe-pros-col ul li,
.spe-cons-col ul li {
  font-size: 14px;
  color: var(--spe-muted);
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid var(--spe-border);
}
.spe-pros-col ul li:last-child,
.spe-cons-col ul li:last-child { border-bottom: none; }
.spe-pros-col ul li::before { content: '✓'; position: absolute; left: 0; color: #22c55e; font-weight: 700; }
.spe-cons-col ul li::before { content: '✗'; position: absolute; left: 0; color: var(--spe-primary); font-weight: 700; }

/* === CASINO OVERVIEW TABLE === */
.spe-overview-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  font-size: 14px;
}
.spe-overview-table tr {
  border-bottom: 1px solid var(--spe-border);
  transition: background 0.15s;
}
.spe-overview-table tr:last-child { border-bottom: none; }
.spe-overview-table tr:hover { background: var(--spe-surface-2); }
.spe-overview-table td {
  padding: 13px 16px;
  vertical-align: top;
}
.spe-overview-table td:first-child {
  width: 200px;
  font-weight: 700;
  color: var(--spe-text);
  white-space: nowrap;
}
.spe-overview-table td:last-child { color: var(--spe-muted); }

/* === REVIEWS SLIDER === */
.spe-reviews-slider { position: relative; overflow: hidden; }
.spe-reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}
.spe-review-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  background: var(--spe-surface-2);
  border: 1px solid var(--spe-border);
  border-radius: var(--spe-radius-lg);
  padding: 24px;
}
.spe-review-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 8px;
}
.spe-review-card__header h4 { font-size: 15px; font-weight: 700; }
.spe-review-card__stars { color: var(--spe-gold); font-size: 14px; white-space: nowrap; }
.spe-review-card__meta { font-size: 12px; color: var(--spe-muted); margin-bottom: 12px; }
.spe-review-card p:last-child { font-size: 14px; color: var(--spe-muted); font-style: italic; }

.spe-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.spe-slider-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--spe-border);
  background: var(--spe-surface-2);
  color: var(--spe-text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.spe-slider-btn:hover { border-color: var(--spe-primary); }
.spe-slider-dots { display: flex; gap: 6px; }
.spe-slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--spe-border);
  cursor: pointer;
  transition: background 0.2s;
}
.spe-slider-dot.spe-active { background: var(--spe-primary); }

/* === FAQ === */
.spe-faq { display: flex; flex-direction: column; gap: 8px; margin-top: 32px; }
.spe-faq-item {
  background: var(--spe-surface-2);
  border: 1px solid var(--spe-border);
  border-radius: var(--spe-radius);
  overflow: hidden;
}
.spe-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--spe-text);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
}
.spe-faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--spe-primary);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.spe-faq-item.spe-open .spe-faq-question::after { transform: rotate(45deg); }
.spe-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.spe-faq-answer__inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--spe-muted);
  line-height: 1.7;
}

/* === STEPS LIST === */
.spe-steps { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 32px; }
.spe-step {
  flex: 1 1 200px;
  background: var(--spe-surface-2);
  border: 1px solid var(--spe-border);
  border-radius: var(--spe-radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.spe-step__num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--spe-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.spe-step h3 { font-size: 15px; font-weight: 700; }
.spe-step p { font-size: 13px; color: var(--spe-muted); margin-bottom: 0; }

/* === LEGAL PAGES === */
.spe-legal { max-width: 800px; }
.spe-legal h2 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; color: var(--spe-text); }
.spe-legal h3 { font-size: 17px; font-weight: 700; margin: 24px 0 10px; color: var(--spe-text); }
.spe-legal p { font-size: 14px; color: var(--spe-muted); margin-bottom: 12px; line-height: 1.8; }
.spe-legal ul { padding-left: 20px; margin-bottom: 12px; }
.spe-legal ul li { font-size: 14px; color: var(--spe-muted); margin-bottom: 6px; list-style: disc; }

/* === FOOTER === */
.spe-footer {
  background: var(--spe-surface);
  border-top: 1px solid var(--spe-border);
  padding: 48px 0 24px;
}
.spe-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}
.spe-footer__brand { flex: 0 0 220px; }
.spe-footer__brand .spe-logo { margin-bottom: 12px; }
.spe-footer__brand p { font-size: 13px; color: var(--spe-muted); line-height: 1.7; }
.spe-footer__nav { flex: 1; display: flex; flex-wrap: wrap; gap: 24px; }
.spe-footer__col h4 { font-size: 13px; font-weight: 700; color: var(--spe-text); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.spe-footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.spe-footer__col ul li a { font-size: 13px; color: var(--spe-muted); transition: color 0.2s; }
.spe-footer__col ul li a:hover { color: var(--spe-primary); }

.spe-footer__payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--spe-border);
  border-bottom: 1px solid var(--spe-border);
  margin-bottom: 24px;
}
.spe-footer__payments img {
  height: 28px;
  width: auto;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.spe-footer__payments img:hover { opacity: 1; }

.spe-footer__testimonial {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--spe-border);
  border-bottom: 1px solid var(--spe-border);
  margin-bottom: 24px;
}
.spe-footer__testimonial a { line-height: 0; display: block; }
.spe-footer__testimonial img {
  height: 26px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.spe-footer__testimonial a:hover img { opacity: 1; }

.spe-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.spe-footer__social { display: flex; align-items: center; gap: 12px; }
.spe-footer__social a {
  width: 36px; height: 36px;
  border: 1px solid var(--spe-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.spe-footer__social a:hover { border-color: var(--spe-primary); }
.spe-footer__social img { width: 18px; height: 18px; }
.spe-footer__legal { font-size: 12px; color: var(--spe-muted); max-width: 600px; line-height: 1.6; }

/* === HIGHLIGHT BOX === */
.spe-highlight {
  background: linear-gradient(135deg, var(--spe-primary) 0%, #5c0a1e 100%);
  border-radius: var(--spe-radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 40px;
}
.spe-highlight h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; color: #fff; }
.spe-highlight p { font-size: 16px; opacity: 0.88; margin-bottom: 24px; color: #fff; }

/* === BREADCRUMB === */
.spe-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--spe-muted);
  padding: 16px 0;
}
.spe-breadcrumb a { color: var(--spe-muted); transition: color 0.2s; }
.spe-breadcrumb a:hover { color: var(--spe-primary); }
.spe-breadcrumb span { color: var(--spe-text); }

/* === PAYMENT METHODS === */
.spe-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}
.spe-payment-item {
  flex: 1 1 200px;
  background: var(--spe-surface-2);
  border: 1px solid var(--spe-border);
  border-radius: var(--spe-radius);
  padding: 20px 16px;
}
.spe-payment-item h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.spe-payment-item p { font-size: 13px; color: var(--spe-muted); margin-bottom: 0; }

/* === ICON ROW === */
.spe-icon-row { display: flex; align-items: flex-start; gap: 20px; margin-top: 20px; background: var(--spe-surface-2); border: 1px solid var(--spe-border); border-radius: var(--spe-radius-lg); padding: 20px; }
.spe-icon-row__icon { flex-shrink: 0; padding-top: 2px; }
.spe-icon-row__text { flex: 1; min-width: 0; }
.spe-icon-row__text h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.spe-icon-row__text p { font-size: 14px; color: var(--spe-muted); margin-bottom: 0; }

/* === TRUST BADGES === */
.spe-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.spe-trust-badge {
  flex: 1 1 200px;
  background: var(--spe-surface-2);
  border: 1px solid var(--spe-border);
  border-radius: var(--spe-radius-lg);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.spe-trust-badge svg { flex-shrink: 0; }
.spe-trust-badge__text h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.spe-trust-badge__text p { font-size: 13px; color: var(--spe-muted); margin-bottom: 0; }

/* === MOBILE STEPS === */
.spe-mobile-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.spe-mobile-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--spe-surface-2);
  border: 1px solid var(--spe-border);
  border-radius: var(--spe-radius);
  padding: 16px;
}
.spe-mobile-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--spe-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.spe-mobile-step__text { flex: 1; }
.spe-mobile-step__text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.spe-mobile-step__text span { font-size: 13px; color: var(--spe-muted); }

/* === RESPONSIVE === */
@media (max-width: 980px) {
  .spe-nav { display: none; }
  .spe-burger { display: flex; }
  .spe-head__actions .spe-btn--ghost { display: none; }

  .spe-two-col { flex-direction: column; gap: 32px; }
  .spe-two-col--reverse { flex-direction: column; }
  .spe-two-col__img { flex: 0 0 auto; width: 100%; }

  .spe-review-card { flex: 0 0 calc(50% - 10px); }

  .spe-game-card { flex: 0 0 calc(33.333% - 11px); }

  .spe-bonus-card { flex: 1 1 100%; }
}

@media (max-width: 600px) {
  .spe-section { padding: 40px 0; }
  .spe-section-title { font-size: 22px; }

  .spe-review-card { flex: 0 0 100%; }

  .spe-game-card { flex: 0 0 calc(50% - 8px); }

  .spe-bonus-card { flex: 1 1 100%; }

  .spe-feature-card { flex: 1 1 100%; }

  .spe-highlight { padding: 28px 20px; }
  .spe-highlight h2 { font-size: 22px; }

  .spe-footer__brand { flex: 0 0 100%; }
  .spe-footer__col { flex: 1 1 140px; }

  .spe-overview-table td:first-child { width: 130px; white-space: normal; }
}

/* === LANGUAGE SWITCHER === */
.lang-flag { display: block; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.2); }
.lang-dd { position: relative; display: inline-block; }
.lang-dd__current { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; list-style: none; padding: 6px 10px; border: 1px solid rgba(128,128,128,.35); border-radius: 8px; font-size: 13px; font-weight: 700; line-height: 1; user-select: none; color: inherit; }
.lang-dd__current::-webkit-details-marker { display: none; }
.lang-dd__current::marker { content: ""; }
.lang-dd__current:hover { border-color: rgba(128,128,128,.6); }
.lang-dd__code { letter-spacing: .02em; }
.lang-dd__chev { opacity: .7; transition: transform .2s ease; }
.lang-dd[open] .lang-dd__chev { transform: rotate(180deg); }
.lang-dd__menu { position: absolute; top: calc(100% + 8px); right: 0; z-index: 200; margin: 0; padding: 6px; list-style: none; min-width: 180px; background: var(--spe-surface); border: 1px solid var(--spe-border); border-radius: 12px; box-shadow: 0 16px 36px rgba(0,0,0,.45); display: flex; flex-direction: column; gap: 2px; animation: langfade .15s ease; }
.lang-dd__item { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px; text-decoration: none; color: var(--spe-text); font-size: 14px; font-weight: 600; opacity: .9; }
.lang-dd__item:hover { background: rgba(255,255,255,.09); opacity: 1; }
.lang-dd__item.is-active { opacity: 1; background: rgba(255,255,255,.06); cursor: default; }
@keyframes langfade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@media (max-width: 600px) { .lang-dd__menu { right: auto; left: 0; } }
