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

:root {
  --spx-primary: #0d9488;
  --spx-primary-hover: #0f766e;
  --spx-gold: #f59e0b;
  --spx-gold-light: #fbbf24;
  --spx-bg: #06100f;
  --spx-surface: #0d1a1c;
  --spx-surface-2: #152022;
  --spx-border: #1f3535;
  --spx-text: #e8f5f4;
  --spx-muted: #7ca9a6;
  --spx-radius: 10px;
  --spx-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(--spx-bg);
  color: var(--spx-text);
  line-height: 1.6;
}

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

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

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

/* === BUTTONS === */
.spx-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(--spx-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.spx-section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--spx-text);
}
.spx-section-subtitle {
  font-size: 16px;
  color: var(--spx-muted);
  margin-bottom: 40px;
}

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

/* === BONUS STEPS === */
.spx-bonus-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.spx-bonus-card {
  flex: 1 1 220px;
  background: var(--spx-surface-2);
  border: 1px solid var(--spx-border);
  border-radius: var(--spx-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.spx-bonus-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.spx-bonus-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.spx-bonus-card__step {
  font-size: 12px;
  color: var(--spx-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.spx-bonus-card__amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--spx-text);
}
.spx-bonus-card__detail {
  font-size: 13px;
  color: var(--spx-muted);
}
.spx-bonus-card__terms {
  font-size: 11px;
  color: var(--spx-muted);
  margin-top: 4px;
}

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

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

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

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

/* === RATING SUMMARY === */
.spx-rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  background: var(--spx-surface-2);
  border: 1px solid var(--spx-border);
  border-radius: var(--spx-radius-lg);
  padding: 28px 32px;
  margin-bottom: 36px;
}
.spx-rating-summary__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 120px;
}
.spx-rating-summary__score strong {
  font-size: 36px;
  font-weight: 700;
  color: var(--spx-text);
  line-height: 1;
}
.spx-rating-summary__stars { font-size: 20px; color: var(--spx-gold); }
.spx-rating-summary__count { font-size: 12px; color: var(--spx-muted); }
.spx-rating-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}
.spx-rating-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.spx-rating-bar__label {
  width: 36px;
  color: var(--spx-muted);
  flex-shrink: 0;
  text-align: right;
}
.spx-rating-bar__track {
  flex: 1;
  height: 8px;
  background: var(--spx-border);
  border-radius: 4px;
  overflow: hidden;
}
.spx-rating-bar__fill {
  height: 100%;
  border-radius: 4px;
  background: var(--spx-gold);
  transition: width 0.6s ease;
}
.spx-rating-bar__pct {
  width: 32px;
  font-size: 12px;
  color: var(--spx-muted);
}

@media (max-width: 600px) {
  .spx-rating-summary { padding: 20px; gap: 20px; }
  .spx-rating-summary__score { min-width: auto; flex-direction: row; align-items: center; gap: 12px; }
  .spx-overview-table td:first-child { width: 130px; white-space: normal; }
}

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

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

/* === FAQ === */
.spx-faq { display: flex; flex-direction: column; gap: 8px; margin-top: 32px; }
.spx-faq-item {
  background: var(--spx-surface-2);
  border: 1px solid var(--spx-border);
  border-radius: var(--spx-radius);
  overflow: hidden;
}
.spx-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--spx-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;
}
.spx-faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--spx-primary);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.spx-faq-item.spx-open .spx-faq-question::after { transform: rotate(45deg); }
.spx-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.spx-faq-answer__inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--spx-muted);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* === BONUS WIDGET CARDS === */
.spx-bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}
.spx-bonus-widget-card {
  flex: 1 1 220px;
  background: var(--spx-surface-2);
  border: 1px solid var(--spx-border);
  border-radius: var(--spx-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.spx-bonus-widget-card__image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.spx-bonus-widget-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.spx-bonus-widget-card__stage {
  font-size: 12px;
  color: var(--spx-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.spx-bonus-widget-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--spx-text);
  margin: 0;
}
.spx-bonus-widget-card__desc {
  font-size: 13px;
  color: var(--spx-muted);
  margin: 0;
}
.spx-bonus-widget-card__terms {
  font-size: 11px;
  color: var(--spx-muted);
  margin-bottom: 4px;
  line-height: 1.5;
}
.spx-bonus-widget-card__content .spx-btn--full {
  margin-top: auto;
}
@media (max-width: 600px) {
  .spx-bonus-widget-card { flex: 1 1 100%; }
}

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

/* GAME CARD RICH */
.spx-game-card--rich {
  flex: 1 1 calc(33% - 14px);
  background: var(--spx-surface-2);
  border: 1px solid var(--spx-border);
  border-radius: var(--spx-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.spx-game-card--rich .spx-game-card__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 0;
  border: none;
  display: block;
}
.spx-game-card--rich .spx-game-card__info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.spx-game-card--rich .spx-game-card__name {
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  color: var(--spx-text);
  margin: 0;
}
.spx-game-card--rich .spx-game-card__rtp {
  font-size: 12px;
  color: var(--spx-gold);
  font-weight: 700;
}
.spx-game-card--rich .spx-game-card__desc {
  font-size: 12px;
  color: var(--spx-muted);
  line-height: 1.5;
  flex: 1;
}
.spx-game-card--rich .spx-btn {
  margin-top: 10px;
  font-size: 12px;
  padding: 8px 16px;
  width: 100%;
  justify-content: center;
}

@media (max-width: 980px) {
  .spx-game-card--rich { flex: 1 1 calc(50% - 10px); }
}
@media (max-width: 480px) {
  .spx-game-card--rich { flex: 1 1 100%; }
}

/* === INTRO SECTION === */
.spx-intro-text {
  font-size: 15px;
  color: var(--spx-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* === INFO CARDS === */
.spx-info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}
.spx-info-card {
  flex: 1 1 200px;
  background: var(--spx-surface-2);
  border: 1px solid var(--spx-border);
  border-radius: var(--spx-radius);
  padding: 20px 16px;
}
.spx-info-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.spx-info-card p { font-size: 13px; color: var(--spx-muted); line-height: 1.6; }

/* === BONUS SUMMARY TABLE === */
.spx-bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 14px;
}
.spx-bonus-table th {
  text-align: left;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--spx-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--spx-border);
  background: var(--spx-surface-2);
}
.spx-bonus-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--spx-border);
  color: var(--spx-muted);
}
.spx-bonus-table tr:last-child td { border-bottom: none; }
.spx-bonus-table td:first-child { color: var(--spx-text); font-weight: 700; }
.spx-bonus-table tr:hover td { background: var(--spx-surface-2); }
@media (max-width: 600px) {
  .spx-bonus-table thead { display: none; }
  .spx-bonus-table tr {
    display: block;
    margin-bottom: 12px;
    border: 1px solid var(--spx-border);
    border-radius: var(--spx-radius);
    overflow: hidden;
  }
  .spx-bonus-table tr:last-child { margin-bottom: 0; }
  .spx-bonus-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    font-size: 13px;
    border-bottom: 1px solid var(--spx-border);
  }
  .spx-bonus-table tr:last-child td:last-child { border-bottom: none; }
  .spx-bonus-table td::before {
    content: attr(data-label);
    color: var(--spx-muted);
    font-weight: 500;
    flex-shrink: 0;
    margin-right: 12px;
  }
  .spx-bonus-table td:first-child { background: var(--spx-surface-2); font-weight: 700; }
  .spx-bonus-table tr:hover td { background: transparent; }
  .spx-bonus-table tr:hover td:first-child { background: var(--spx-surface-2); }
}

/* === 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); }
@keyframes langfade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.lang-dd__menu { position: absolute; top: calc(100% + 8px); right: 0; z-index: 120; margin: 0; padding: 6px; list-style: none; min-width: 180px; background: #17181c; border: 1px solid rgba(255,255,255,.12); 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: #f2f2f2; 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; }
@media (max-width: 600px) { .lang-dd__menu { right: auto; left: 0; } }
