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

:root {
  --spem-bg: #0f0c0d;
  --spem-surface: #1a1416;
  --spem-surface-2: #241c20;
  --spem-border: #3d2a32;
  --spem-text: #ffffff;
  --spem-muted: rgba(255, 255, 255, 0.88);
  --spem-accent: #2a2a2a;
  --spem-accent-soft: #1a1a1a;
  --spem-gold: #ffffff;
  --spem-radius: 12px;
  --spem-max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Mulish, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--spem-text);
  background: var(--spem-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: #ffffff;
}

.spem-wrap {
  width: min(var(--spem-max), 100% - 20px);
  margin-inline: auto;
}

.spem-main {
  padding-block: 32px 48px;
}

.spem-h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 12px;
}

.spem-h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  margin: 40px 0 16px;
}

.spem-h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 10px;
}

.spem-lead {
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 24px;
}

.spem-prose p {
  margin: 0 0 14px;
  color: #ffffff;
}

.spem-prose ul {
  margin: 0 0 16px;
  padding-left: 1.2rem;
  color: #ffffff;
}

.spem-prose ol {
  margin: 0 0 16px;
  padding-left: 1.2rem;
  color: #ffffff;
}

.spem-prose li {
  margin-bottom: 8px;
}

.spem-table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
  border: 1px solid var(--spem-border);
  border-radius: var(--spem-radius);
}

.spem-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.spem-table th,
.spem-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--spem-border);
}

.spem-table th {
  background: var(--spem-surface-2);
  color: #ffffff;
  font-weight: 700;
}

.spem-table td {
  color: #ffffff;
}

.spem-table tr:last-child td {
  border-bottom: none;
}

.spem-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(15, 12, 13, 0.96);
  border-bottom: 1px solid var(--spem-border);
  backdrop-filter: blur(8px);
}

.spem-header__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 10px;
  width: min(var(--spem-max), 100% - 20px);
  margin-inline: auto;
}

.spem-head__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.spem-logo img {
  height: 36px;
  width: auto;
}

.spem-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.spem-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  padding-block: 4px;
}

.spem-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.spem-nav a:hover::after,
.spem-nav a.is-active::after {
  transform: scaleX(1);
}

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

.spem-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 8px;
  border: 1px solid var(--spem-border);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.spem-btn--ghost {
  background: transparent;
  color: var(--spem-text);
}

.spem-btn--ghost:hover {
  border-color: #ffffff;
  text-decoration: none;
}

.spem-btn--primary {
  background: linear-gradient(180deg, #e53935 0%, #b71c1c 100%);
  border-color: #e53935;
  color: #ffffff;
  text-decoration: none;
}

.spem-btn--primary:hover {
  filter: brightness(1.08);
  text-decoration: none;
}

.spem-btn--block {
  width: 100%;
  max-width: 280px;
}

.spem-burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--spem-border);
  border-radius: 8px;
  background: var(--spem-surface);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.spem-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--spem-text);
}

.spem-burger:hover {
  border-color: #ffffff;
}

.spem-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 45;
}

.spem-mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: min(300px, 88vw);
  height: 100%;
  background: var(--spem-surface);
  border-right: 1px solid var(--spem-border);
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  z-index: 50;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
}

.spem-mobile-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.spem-mobile-panel__logo img {
  height: 32px;
}

.spem-mobile-panel__close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--spem-border);
  border-radius: 8px;
  background: var(--spem-surface-2);
  cursor: pointer;
  position: relative;
}

.spem-mobile-panel__close::before,
.spem-mobile-panel__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--spem-text);
}

.spem-mobile-panel__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.spem-mobile-panel__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.spem-mobile-panel__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spem-mobile-panel__nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

.spem-mobile-panel__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

body.spem-menu-open .spem-mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.spem-menu-open .spem-mobile-panel {
  transform: translateX(0);
}

@media (max-width: 980px) {
  .spem-nav {
    display: none;
  }

  .spem-burger {
    display: flex;
  }

  .spem-head__actions .spem-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}

.spem-hero {
  position: relative;
  overflow: hidden;
}

.spem-hero picture,
.spem-hero img {
  width: 100%;
  display: block;
}

.spem-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.spem-hero__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 20px;
  width: min(var(--spem-max), 100% - 20px);
  margin-inline: auto;
}

.spem-hero__inner .spem-h1 {
  max-width: 520px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.spem-hero__inner .spem-lead {
  max-width: 480px;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .spem-hero__inner {
    justify-content: flex-end;
    padding-bottom: 32px;
  }
}

.spem-section {
  padding: 40px 0;
}

.spem-section--tight {
  padding: 28px 0;
}

.spem-reviews-intro {
  margin-top: 0;
  margin-bottom: 16px;
}

.spem-rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 32px;
  margin: 0 0 28px;
  padding: 18px 20px;
  background: var(--spem-surface);
  border: 1px solid var(--spem-border);
  border-radius: var(--spem-radius);
}

.spem-rating-summary__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.spem-rating-summary__score strong {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.spem-rating-summary__stars {
  font-size: 20px;
  color: #f5c518;
  letter-spacing: 2px;
}

.spem-rating-summary__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.spem-rating-summary__trust {
  display: flex;
  align-items: center;
  gap: 10px;
}

.spem-rating-summary__trust img {
  height: 24px;
  width: auto;
  opacity: 0.85;
}

.spem-review-card__stars {
  font-size: 16px;
  color: #f5c518;
  letter-spacing: 1px;
  margin-bottom: 4px;
  display: block;
}

.spem-reviews-slider {
  position: relative;
  margin-top: 8px;
}

.spem-reviews-viewport {
  overflow: hidden;
  width: 100%;
}

.spem-reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.spem-review-card {
  flex-shrink: 0;
  box-sizing: border-box;
  background: var(--spem-surface);
  border: 1px solid var(--spem-border);
  border-radius: var(--spem-radius);
  padding: 18px 18px 16px;
}

.spem-review-card__title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #ffffff;
}

.spem-review-card__meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 10px;
}

.spem-review-card__rating {
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 8px;
}

.spem-review-card p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
}

.spem-slider-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.spem-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--spem-border);
  background: var(--spem-surface-2);
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.spem-slider-btn:hover:not(:disabled) {
  border-color: #ffffff;
  background: var(--spem-surface);
}

.spem-slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.spem-slider-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.spem-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--spem-border);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.spem-slider-dot.is-active {
  background: #ffffff;
  transform: scale(1.15);
}

.spem-split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.spem-split__media {
  flex: 1 1 280px;
  max-width: 100%;
}

.spem-split__text {
  flex: 1 1 320px;
}

.spem-split__media img {
  width: 233px;
  height: 233px;
  display: block;
  border-radius: var(--spem-radius);
  border: 1px solid var(--spem-border);
}

.spem-split--full .spem-split__media img {
  width: 100%;
  height: auto;
  border-radius: var(--spem-radius);
  border: 1px solid var(--spem-border);
}

.spem-split--rev {
  flex-direction: row-reverse;
}

.spem-live-grid {
  display: flex;
  gap: 16px;
  margin: 20px 0 0;
}

.spem-live-grid__item {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  border-radius: var(--spem-radius);
  overflow: hidden;
  border: 1px solid var(--spem-border);
}

.spem-live-grid__item img {
  width: 100%;
  height: auto;
  display: block;
}

.spem-live-grid__item figcaption {
  padding: 8px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  background: var(--spem-surface-2);
}

@media (max-width: 600px) {
  .spem-live-grid { flex-direction: column; }
}

.spem-game-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0;
}

.spem-game-thumb {
  flex: 1 1 120px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--spem-border);
  background: var(--spem-surface);
}

.spem-game-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.spem-game-thumb figcaption {
  padding: 5px 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spem-cat-section {
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--spem-border);
}

.spem-game-grid__single {
  margin: 0 auto;
  max-width: 100%;
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.spem-game-shot {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.spem-game-grid__single figcaption {
  text-align: center;
}

.spem-game-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
  justify-content: center;
}

.spem-game-grid figure {
  margin: 0;
  flex: 1 1 260px;
  border-radius: var(--spem-radius);
  overflow: hidden;
  border: 1px solid var(--spem-border);
  background: var(--spem-surface);
}

.spem-game-grid figcaption {
  padding: 10px 12px;
  font-size: 13px;
  color: #ffffff;
}

.spem-game-table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin: 16px 0 24px;
}

.spem-game-table-row__visual {
  flex: 0 0 auto;
}

.spem-game-table-row__visual .spem-game-grid {
  justify-content: flex-start;
  margin: 0;
}

.spem-game-table-row__visual .spem-game-grid__single {
  margin: 0;
}

.spem-game-table-row__facts {
  flex: 1 1 280px;
  min-width: 0;
}

.spem-game-table-row__facts .spem-table-wrap {
  margin: 0;
}

.spem-faq {
  border: 1px solid var(--spem-border);
  border-radius: var(--spem-radius);
  overflow: hidden;
}

.spem-faq__item + .spem-faq__item {
  border-top: 1px solid var(--spem-border);
}

.spem-faq__q {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--spem-text);
  background: var(--spem-surface);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.spem-faq__q:hover {
  background: var(--spem-surface-2);
}

.spem-faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--spem-border);
  position: relative;
}

.spem-faq__icon::before,
.spem-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #ffffff;
  transition: transform 0.2s ease;
}

.spem-faq__icon::before {
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.spem-faq__icon::after {
  width: 2px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.spem-faq__item.is-open .spem-faq__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.spem-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--spem-bg);
}

.spem-faq__a-inner {
  padding: 0 16px 14px;
  font-size: 14px;
  color: #ffffff;
}

.spem-footer {
  border-top: 1px solid var(--spem-border);
  padding: 32px 0 40px;
  margin-top: 24px;
  background: #0b090a;
}

.spem-footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.spem-footer__brand img {
  height: 32px;
  margin-bottom: 10px;
}

.spem-footer__brand p {
  margin: 0;
  font-size: 13px;
  color: #ffffff;
  max-width: 360px;
}

.spem-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.spem-footer__links a {
  font-size: 13px;
  font-weight: 700;
  color: var(--spem-text);
  text-decoration: none;
}

.spem-footer__links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.spem-footer__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.spem-footer__trust img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}

.spem-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.spem-footer__social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--spem-border);
  border-radius: 8px;
  background: var(--spem-surface);
}

.spem-footer__social img {
  width: 20px;
  height: 20px;
}

.spem-footer__legal {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.spem-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.spem-provider-split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin: 12px 0 28px;
}

.spem-provider-split__logos {
  flex: 0 0 auto;
}

.spem-provider-split__logos .spem-providers {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
}

.spem-provider-split__logos .spem-providers img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.spem-provider-split__text {
  flex: 1 1 280px;
  min-width: 0;
}

.spem-provider-split__text p:first-child {
  margin-top: 0;
}

.spem-providers img {
  height: 36px;
  width: auto;
  filter: grayscale(0.15);
  opacity: 0.92;
}

.spem-bonus-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 24px;
}

.spem-bonus-gallery__item {
  margin: 0;
  flex: 1 1 220px;
  max-width: 100%;
  border-radius: var(--spem-radius);
  overflow: hidden;
  border: 1px solid var(--spem-border);
  background: var(--spem-surface);
}

.spem-bonus-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.spem-bonus-gallery__item figcaption {
  padding: 8px 10px;
  font-size: 12px;
  color: #ffffff;
}

/* Registration / Login two-column cards */
.spem-reg-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0 28px;
}

.spem-reg-card {
  flex: 1 1 280px;
  background: var(--spem-surface);
  border: 1px solid var(--spem-border);
  border-radius: var(--spem-radius);
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
}

.spem-reg-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 6px;
}

.spem-reg-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
}

.spem-reg-card__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.spem-reg-card__steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.spem-reg-card__steps li::before {
  content: attr(data-n);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--spem-border);
  background: var(--spem-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

/* KYC block */
.spem-kyc {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}

.spem-kyc__item {
  flex: 1 1 200px;
  background: var(--spem-surface);
  border: 1px solid var(--spem-border);
  border-radius: var(--spem-radius);
  padding: 14px 16px;
}

.spem-kyc__item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.spem-kyc__item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

/* Deposit / Withdrawal layout */
.spem-cash-section {
  background: var(--spem-surface);
  border: 1px solid var(--spem-border);
  border-radius: var(--spem-radius);
  padding: 28px 28px 24px;
  margin: 20px 0 8px;
}

.spem-cash-cols {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
}

.spem-cash-cols > div:not(.spem-cash-divider) {
  flex: 1 1 0;
  min-width: 0;
}

.spem-cash-divider {
  width: 1px;
  background: var(--spem-border);
  flex-shrink: 0;
  margin: 0 28px;
  align-self: stretch;
}

@media (max-width: 700px) {
  .spem-cash-cols { flex-wrap: wrap; }
  .spem-cash-cols > div:not(.spem-cash-divider) { flex: 1 1 100%; }
  .spem-cash-divider { display: none; }
}

.spem-pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 20px;
}

.spem-pay-card {
  flex: 1 1 calc(50% - 5px);
  background: var(--spem-surface-2);
  border: 1px solid var(--spem-border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s;
}

.spem-pay-card:hover {
  border-color: #e53935;
}

.spem-pay-card__icon {
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(229, 57, 53, 0.12);
  border-radius: 10px;
  margin-bottom: 4px;
}

.spem-pay-card__name {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  display: block;
}

.spem-pay-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(229, 57, 53, 0.18);
  color: #ff7b78;
  letter-spacing: 0.04em;
  width: fit-content;
}

.spem-pay-card__desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.4;
}

.spem-withdraw-steps {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spem-withdraw-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--spem-border);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
}

.spem-withdraw-steps li:last-child {
  border-bottom: none;
}

.spem-withdraw-steps li .spem-step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e53935, #b71c1c);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(229,57,53,0.35);
}

.spem-time-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 14px;
  border: 1px solid var(--spem-border);
  border-radius: var(--spem-radius);
  overflow: hidden;
}

.spem-time-table th {
  background: var(--spem-surface-2);
  color: #ffffff;
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
}

.spem-time-table td {
  padding: 10px 14px;
  background: var(--spem-surface);
  border-top: 1px solid var(--spem-border);
  color: rgba(255, 255, 255, 0.88);
}

.spem-badge-green {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Features highlight bar */
.spem-feat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 36px;
}

.spem-feat-bar__item {
  flex: 1 1 200px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--spem-surface);
  border: 1px solid var(--spem-border);
  border-radius: var(--spem-radius);
  padding: 16px;
}

.spem-feat-bar__item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.spem-feat-bar__item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.spem-feat-bar__item-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

/* Bonus step cards */
.spem-bonus-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 20px 0 28px;
}

.spem-bonus-step {
  flex: 1 1 220px;
  background: var(--spem-surface);
  border: 1px solid var(--spem-border);
  border-radius: var(--spem-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.spem-bonus-step img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.spem-bonus-step__body {
  padding: 12px 14px 14px;
  flex: 1;
}

.spem-bonus-step__body strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.spem-bonus-step__body p {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
}

.spem-bonus-step__body span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

.spem-bonus-step__btn {
  display: block;
  margin-top: 12px;
  width: 100%;
  text-align: center;
  font-size: 13px;
}

/* Game stat bar */
/* King section */
.spem-king-section {
  background: var(--spem-surface);
  border: 1px solid var(--spem-border);
  border-radius: var(--spem-radius);
  overflow: hidden;
  margin: 24px 0;
}

.spem-king-banner {
  position: relative;
  width: 100%;
  max-height: 340px;
  overflow: hidden;
}

.spem-king-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.spem-king-banner__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.spem-king-body {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px;
  align-items: flex-start;
}

.spem-king-desc {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spem-king-desc p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.spem-game-stats {
  flex: 1 1 280px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.spem-game-stat {
  background: var(--spem-surface-2);
  border: 1px solid var(--spem-border);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(33% - 6px);
  gap: 2px;
  flex: 1 1 100px;
  min-width: 90px;
}

.spem-game-stat__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.45);
}

.spem-game-stat__value {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.spem-game-stat--accent {
  border-color: rgba(229,57,53,0.4);
  background: rgba(229,57,53,0.08);
}

.spem-game-stat--accent .spem-game-stat__value {
  color: #ff7b78;
}

/* Feature cards row */
.spem-feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--spem-border);
}

.spem-feature-card {
  flex: 1 1 200px;
  background: var(--spem-surface);
  border-right: 1px solid var(--spem-border);
  padding: 20px 18px;
}

.spem-feature-card:last-child {
  border-right: none;
}

.spem-feature-card--red {
  border-top: 3px solid #e53935;
}

@media (max-width: 700px) {
  .spem-feature-card { border-right: none; border-bottom: 1px solid var(--spem-border); }
  .spem-feature-card:last-child { border-bottom: none; }
  .spem-king-banner { max-height: 220px; }
}

.spem-feature-card__icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(229,57,53,0.12);
  border-radius: 10px;
}

.spem-feature-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}

.spem-feature-card__text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0;
}

/* Warning list */
.spem-warn-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 20px;
  padding: 0;
  list-style: none;
}

.spem-warn-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--spem-surface);
  border: 1px solid var(--spem-border);
  border-left: 3px solid rgba(255,80,80,0.55);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}

.spem-warn-list li::before {
  content: "✕";
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,80,80,0.8);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Individual provider card: logo left (white) + text right */
.spem-provider-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: stretch;
  margin: 12px 0 16px;
  border: 1px solid var(--spem-border);
  border-radius: var(--spem-radius);
  overflow: hidden;
}

.spem-provider-row__logo {
  flex: 0 0 140px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
}

.spem-provider-row__logo img {
  max-width: 100px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.spem-provider-row__text {
  flex: 1 1 240px;
  padding: 16px 20px;
  background: var(--spem-surface);
}

.spem-provider-row__text .spem-h3 {
  margin-top: 0;
}

@media (max-width: 480px) {
  .spem-provider-row__logo {
    flex: 0 0 100%;
    padding: 16px;
    border-bottom: 1px solid var(--spem-border);
  }
}

/* Providers row */
.spem-prov-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin: 16px 0 32px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--spem-border);
  border-radius: var(--spem-radius);
}

.spem-prov-row img {
  height: 32px;
  width: auto;
  opacity: 1;
  filter: none;
  object-fit: contain;
}

/* Popular games grid */
.spem-games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0 32px;
}

.spem-game-card {
  flex: 0 0 233px;
  margin: 0;
  background: var(--spem-surface);
  border: 1px solid var(--spem-border);
  border-radius: var(--spem-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.spem-game-card img {
  width: 233px;
  height: 233px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.spem-game-card__body {
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.spem-game-card__name {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.spem-game-card__meta {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.spem-game-card__rtp {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2px 7px;
  width: fit-content;
}

.spem-game-card__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin: 4px 0 0;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .spem-game-card {
    flex: 0 0 calc(50% - 7px);
  }

  .spem-game-card img {
    width: 100%;
    height: 160px;
  }
}

@media (max-width: 600px) {
  .spem-feat-bar__item {
    flex-basis: calc(50% - 8px);
  }

  .spem-bonus-step {
    flex-basis: calc(50% - 7px);
  }

  .spem-game-card {
    flex-basis: calc(50% - 7px);
  }
}
