@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Nunito:wght@400;600;700;800&family=Quicksand:wght@400;500;600;700&display=swap");

:root {
  --color-header: #004c9d;
  --color-header-dark: #003a7a;
  --color-btn-login: #9101ab;
  --color-btn-login-hover: #7a0092;
  --color-btn-reg: #cd0fe0;
  --color-btn-reg-hover: #b00dc0;
  --color-bg: #2b6af7;
  --color-bg-dark: #1e54d6;
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.75);
  --color-card: rgba(0, 0, 0, 0.25);
  --color-card-border: rgba(255, 255, 255, 0.15);
  --color-accent: #f6c90e;
  --color-gold: #ffd700;
  --color-green: #22c55e;
  --color-red: #ef4444;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.18);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: "Poppins", "Nunito", sans-serif;
  --font-alt: "Quicksand", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--color-bg);
}

body {
  font-family: var(--font-main);
  background: linear-gradient(160deg, #1a4fc7 0%, #2b6af7 40%, #1e3fa8 100%);
  color: var(--color-text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: #fff;
}
ul,
ol {
  list-style: none;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.sp-header {
  background: var(--color-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.sp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
  flex-wrap: nowrap;
}
.sp-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.sp-header__logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.sp-header__logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}

.sp-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.sp-header__nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.sp-header__nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.sp-header__nav svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.sp-header__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.sp-online {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}
.sp-online__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 7px var(--color-green);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.sp-lang {
  position: relative;
}
.sp-lang__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  cursor: pointer;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  transition: background var(--transition);
  font-family: inherit;
}
.sp-lang__btn:hover {
  background: rgba(255, 255, 255, 0.18);
}
.sp-lang__btn svg {
  width: 12px;
  height: 12px;
}
.sp-lang__dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--color-header-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  min-width: 140px;
  overflow: hidden;
  opacity: 1;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 200;
}
.sp-lang__dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sp-lang__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  cursor: pointer;
  transition: background var(--transition);
}
.sp-lang__item:hover,
.sp-lang__item.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.83rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  font-family: inherit;
  white-space: nowrap;
  line-height: 1.2;
}
.btn--login {
  background: var(--color-btn-login);
  color: #fff;
  box-shadow: 0 2px 12px rgba(145, 1, 171, 0.4);
}
.btn--login:hover {
  background: var(--color-btn-login-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(145, 1, 171, 0.55);
}
.btn--reg {
  background: var(--color-btn-reg);
  color: #fff;
  box-shadow: 0 2px 12px rgba(205, 15, 224, 0.4);
}
.btn--reg:hover {
  background: var(--color-btn-reg-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(205, 15, 224, 0.55);
}
.btn--demo {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn--demo:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.btn--play {
  background: linear-gradient(
    135deg,
    var(--color-btn-reg),
    var(--color-btn-login)
  );
  color: #fff;
  font-size: 0.95rem;
  padding: 13px 28px;
  box-shadow: 0 4px 20px rgba(205, 15, 224, 0.45);
}
.btn--play:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(205, 15, 224, 0.6);
  color: #fff;
}
.btn--lg {
  padding: 14px 36px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}
.btn--strategy {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 16px;
}
.btn--strategy:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.sp-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.sp-burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.sp-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.sp-burger.active span:nth-child(2) {
  opacity: 1;
}
.sp-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.sp-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--color-header-dark);
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sp-mobile-nav.open {
  display: flex;
}
.sp-mobile-nav a {
  color: rgba(255, 255, 255, 0.9);
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background var(--transition);
}
.sp-mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.sp-mobile-nav svg {
  width: 16px;
  height: 16px;
}

.sp-hero {
  position: relative;
  overflow: hidden;
  background: #0c2470;
}
.sp-hero__slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.sp-hero__slide {
  min-width: 100%;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.sp-hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.sp-hero__slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.15) 70%,
    transparent 100%
  );
}
.sp-hero__slide-content {
  position: relative;
  z-index: 1;
  padding: 48px 60px;
  max-width: 620px;
}
.sp-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(205, 15, 224, 0.25);
  border: 1px solid rgba(205, 15, 224, 0.5);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #f4aaff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sp-hero__title {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.sp-hero__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
  line-height: 1.6;
}
.sp-hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.sp-hero__nav {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.sp-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.sp-hero__dot.active {
  background: var(--color-btn-reg);
  width: 24px;
  border-radius: 4px;
}
.sp-hero__prev,
.sp-hero__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition);
  font-size: 1rem;
}
.sp-hero__prev {
  left: 16px;
}
.sp-hero__next {
  right: 16px;
}
.sp-hero__prev:hover,
.sp-hero__next:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* ===================== SECTION LAYOUT ===================== */
.sp-section {
  padding: 48px 0;
}
.sp-section + .sp-section {
  padding-top: 0;
}
.sp-section__title {
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sp-section__title svg {
  width: 26px;
  height: 26px;
  color: var(--color-accent);
  flex-shrink: 0;
}
.sp-section__subtitle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.sp-box {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}

/* ===================== TABLE OF CONTENTS ===================== */
.sp-toc {
}
.sp-toc__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 10px;
}
.sp-toc__item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
}
.sp-toc__item:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transform: translateY(-2px);
}
.sp-toc__item svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ===================== CASINO RATING ===================== */
.sp-casino-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sp-casino-card {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 56px 1fr 1fr 1fr auto;
  align-items: center;
  gap: 18px;
  transition: all var(--transition);
  position: relative;
}
.sp-casino-card:hover {
  border-color: rgba(205, 15, 224, 0.4);
  box-shadow: 0 4px 24px rgba(205, 15, 224, 0.18);
  transform: translateY(-2px);
}
.sp-casino-card--top1 {
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(255, 215, 0, 0.06);
}
.sp-casino-card--top2 {
  border-color: rgba(192, 192, 192, 0.4);
}
.sp-casino-card--top3 {
  border-color: rgba(205, 127, 50, 0.4);
}
.sp-casino-card__rank {
  position: absolute;
  top: -10px;
  left: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
}
.sp-casino-card--top1 .sp-casino-card__rank {
  background: var(--color-gold);
  color: #000;
}
.sp-casino-card--top2 .sp-casino-card__rank {
  background: #c0c0c0;
  color: #000;
}
.sp-casino-card--top3 .sp-casino-card__rank {
  background: #cd7f32;
}
.sp-casino-card__rank--default {
  background: rgba(255, 255, 255, 0.2);
}
.sp-casino-card__logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-casino-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sp-casino-card__info {
  min-width: 0;
}
.sp-casino-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sp-casino-card__flag {
  font-size: 1rem;
}
.sp-casino-card__badge {
  font-size: 0.68rem;
  background: rgba(205, 15, 224, 0.25);
  color: #f4aaff;
  border-radius: 10px;
  padding: 2px 8px;
  font-weight: 600;
}
.sp-casino-card__meta {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sp-casino-card__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.sp-casino-card__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.sp-casino-card__score {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}
.sp-casino-card__stars {
  display: flex;
  gap: 2px;
}
.sp-casino-card__stars svg {
  width: 13px;
  height: 13px;
  color: var(--color-gold);
  fill: currentColor;
}
.sp-casino-card__bonus {
}
.sp-casino-card__bonus-title {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.sp-casino-card__bonus-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.sp-casino-card__features {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}
.sp-casino-card__feature {
  display: flex;
  align-items: center;
  gap: 5px;
}
.sp-casino-card__feature::before {
  content: "✓";
  color: var(--color-green);
  font-weight: 700;
}
.sp-casino-card__actions {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 120px;
}
.sp-casino-card__actions .btn {
  width: 100%;
  font-size: 0.78rem;
  padding: 8px 12px;
}
.sp-casino-load-more {
  text-align: center;
  margin-top: 20px;
}
.sp-casino-load-more .btn {
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}
.sp-casino-load-more .btn:hover {
  background: rgba(255, 255, 255, 0.18);
}
.sp-casino-card.hidden {
  display: none;
}

.sp-demo {
}
.sp-demo__wrapper {
  background: #000;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}
.sp-demo__iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #0a0a0a;
}
.sp-demo__iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.sp-demo__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  z-index: 5;
}
.sp-demo__play-icon {
  width: 72px;
  height: 72px;
  background: var(--color-btn-reg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(205, 15, 224, 0.5);
  transition: transform var(--transition);
}
.sp-demo__play-icon:hover {
  transform: scale(1.1);
}
.sp-demo__play-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
  margin-left: 4px;
}
.sp-demo__overlay-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}
.sp-demo__cta {
  background: rgba(0, 0, 0, 0.5);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.sp-demo__cta-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.sp-demo__cta-text strong {
  color: #fff;
  display: block;
  font-size: 1rem;
}

/* ===================== GAME INFO TABLE ===================== */
.sp-gameinfo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.sp-gameinfo__item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: center;
}
.sp-gameinfo__label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.sp-gameinfo__value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* ===================== STRATEGIES ===================== */
.sp-strategies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.sp-strategy-card {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.sp-strategy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border-color: rgba(205, 15, 224, 0.3);
}
.sp-strategy-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: linear-gradient(135deg, #1a0a30 0%, #2d1060 100%);
}
.sp-strategy-card__img-placeholder {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #1a0a30 0%, #2d1060 100%);
}
.sp-strategy-card__body {
  padding: 18px;
}
.sp-strategy-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.sp-strategy-card__desc {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

/* ===================== FAQ ===================== */
.sp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-faq__item {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.sp-faq__question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  user-select: none;
  transition: background var(--transition);
}
.sp-faq__question:hover {
  background: rgba(255, 255, 255, 0.05);
}
.sp-faq__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.sp-faq__icon svg {
  width: 10px;
  height: 10px;
  color: #fff;
  transition: transform var(--transition);
}
.sp-faq__item.open .sp-faq__icon {
  background: var(--color-btn-reg);
  border-color: var(--color-btn-reg);
}
.sp-faq__item.open .sp-faq__icon svg {
  transform: rotate(45deg);
}
.sp-faq__answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}
.sp-faq__item.open .sp-faq__answer {
  display: block;
}

/* ===================== CONTENT BLOCK ===================== */
.sp-content {
}
.sp-content .text h1,
.sp-content .text h2,
.sp-content .text h3,
.sp-content .text h4 {
  margin: 1.4em 0 0.6em;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
}
.sp-content .text h2 {
  font-size: 1.35rem;
}
.sp-content .text h3 {
  font-size: 1.1rem;
}
.sp-content .text p {
  margin-bottom: 1em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}
.sp-content .text a {
  color: var(--color-accent);
}
.sp-content .text a:hover {
  text-decoration: underline;
}
.sp-content .text ul,
.sp-content .text ol {
  margin: 0.8em 0 1em 1.4em;
}
.sp-content .text ul {
  list-style: disc;
}
.sp-content .text ol {
  list-style: decimal;
}
.sp-content .text li {
  margin-bottom: 0.4em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.sp-content .text table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.4em auto;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.sp-content .text table th,
.sp-content .text table td {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 14px;
  text-align: left;
  color: rgba(255, 255, 255, 0.88);
}
.sp-content .text table th {
  background: rgba(0, 0, 0, 0.3);
  font-weight: 600;
  color: var(--color-accent);
}
.sp-content .text blockquote {
  border-left: 3px solid var(--color-btn-reg);
  padding: 12px 18px;
  margin: 1em 0;
  background: rgba(205, 15, 224, 0.1);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}
.sp-content .text img {
  border-radius: var(--radius-sm);
  max-width: 100%;
  height: auto;
}
.sp-content .text strong {
  color: #fff;
  font-weight: 600;
}
.sp-content .text em {
  color: rgba(255, 255, 255, 0.8);
}
.sp-content .text code {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
}
.sp-content .text pre {
  background: rgba(0, 0, 0, 0.4);
  padding: 16px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
}
.sp-content .text hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 1.5em 0;
}

/* ===================== AUTHOR ===================== */
.sp-author {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.sp-author__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    var(--color-btn-login),
    var(--color-btn-reg)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.sp-author__info {
}
.sp-author__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.sp-author__role {
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.sp-author__bio {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}
.sp-author__link {
  font-size: 0.8rem;
  color: var(--color-btn-reg);
}
.sp-author__link:hover {
  color: #fff;
}

/* ===================== FOOTER ===================== */
.sp-footer {
  background: var(--color-header);
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sp-footer__inner {
  padding: 40px 0 24px;
}
.sp-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.sp-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.sp-footer__logo img {
  height: 38px;
}
.sp-footer__desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.sp-footer__heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}
.sp-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-footer__links a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}
.sp-footer__links a:hover {
  color: #fff;
}
.sp-footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.sp-footer__trust-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sp-footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.sp-footer__payment {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.sp-footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}
.sp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.sp-footer__copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}
.sp-footer__legal {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 700px;
  line-height: 1.5;
}
.sp-footer__provider {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.sp-footer__provider img {
  height: 24px;
  opacity: 0.6;
}

/* ===================== STICKY WIDGET ===================== */
.sp-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: linear-gradient(90deg, var(--color-header-dark) 0%, #002d6b 100%);
  border-top: 2px solid var(--color-btn-reg);
  padding: 11px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}
.sp-widget__text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}
.sp-widget__bonus {
  font-size: 0.78rem;
  color: #f4aaff;
}
.sp-widget__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition);
}
.sp-widget__close:hover {
  color: #fff;
}

/* ===================== TECHNICAL PAGES ===================== */
.sp-technical {
}
.sp-technical .text {
  max-width: 820px;
  margin: 0 auto;
}
.sp-technical .text h1 {
  font-size: 1.9rem;
  margin-bottom: 0.6em;
}
.sp-technical .text h2 {
  font-size: 1.35rem;
  margin: 1.6em 0 0.6em;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}
.sp-technical .text h3 {
  font-size: 1.05rem;
  margin: 1.2em 0 0.5em;
  color: rgba(255, 255, 255, 0.9);
}
.sp-technical .text p {
  margin-bottom: 1em;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}
.sp-technical .text ul,
.sp-technical .text ol {
  margin: 0.6em 0 1em 1.4em;
}
.sp-technical .text ul {
  list-style: disc;
}
.sp-technical .text ol {
  list-style: decimal;
}
.sp-technical .text li {
  margin-bottom: 0.4em;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.sp-technical .text a {
  color: var(--color-accent);
}
.sp-technical .text a:hover {
  text-decoration: underline;
}
.sp-technical .text strong {
  color: #fff;
}

.sp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 12px 0 0;
}
.sp-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
}
.sp-breadcrumb a:hover {
  color: #fff;
}
.sp-breadcrumb__sep {
  opacity: 0.4;
}

.sp-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sp-proscons__col {
  background: rgba(0, 0, 0, 0.18);
  border-radius: var(--radius-md);
  padding: 20px;
}
.sp-proscons__title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.sp-proscons__title--pros {
  color: var(--color-green);
}
.sp-proscons__title--cons {
  color: var(--color-red);
}
.sp-proscons__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.85);
}
.sp-proscons__item::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 6px;
}
.sp-proscons__col--pros .sp-proscons__item::before {
  background: var(--color-green);
}
.sp-proscons__col--cons .sp-proscons__item::before {
  background: var(--color-red);
}

@keyframes fadeInUp {
  from {
    opacity: 1;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
.anim-fade-up {
  animation: fadeInUp 0.5s ease both;
}
.anim-fade {
  animation: fadeIn 0.4s ease both;
}

.sp-section {
  opacity: 1;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.sp-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-center {
  text-align: center;
}
.text-muted {
  color: var(--color-text-muted);
}
.mt-4 {
  margin-top: 16px;
}
.mt-8 {
  margin-top: 32px;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-8 {
  margin-bottom: 32px;
}
.d-flex {
  display: flex;
}
.gap-2 {
  gap: 8px;
}
.flex-wrap {
  flex-wrap: wrap;
}
.align-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.w-100 {
  width: 100%;
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold);
}

.wp-block-group,
.wp-block-columns,
.wp-block-column,
.wp-block-cover,
.wp-block-image {
}
.elementor-section,
.elementor-container,
.elementor-row,
.elementor-widget-wrap,
.elementor-widget-container {
}
.entry-content,
.post-content,
.page-content,
.site-main,
.site-content,
.site-header,
.site-footer {
}
.widget,
.widget-area,
.widget-title,
.widget-content {
}
.yoast-breadcrumb,
.yoast_breadcrumbs {
}
.wp-caption,
.wp-caption-text,
.gallery,
.gallery-item {
}
.e-container,
.e-flex,
.e-child,
.e-parent {
}

@media (max-width: 1024px) {
  .sp-casino-card {
    grid-template-columns: 52px 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .sp-casino-card__rating,
  .sp-casino-card__bonus {
    display: none;
  }
  .sp-casino-card__actions {
    grid-column: 3;
  }
}
@media (max-width: 768px) {
  .sp-header__nav {
    display: none;
  }
  .sp-burger {
    display: flex;
  }
  .sp-hero__slide {
    min-height: 320px;
  }
  .sp-hero__slide-content {
    padding: 28px 24px;
  }
  .sp-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sp-casino-card {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
  }
  .sp-casino-card__actions {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
  }
  .sp-casino-card__features {
    display: none;
  }
  .sp-proscons {
    grid-template-columns: 1fr;
  }
  .sp-strategies__grid {
    grid-template-columns: 1fr;
  }
  .sp-toc__grid {
    grid-template-columns: 1fr 1fr;
  }
  .sp-widget {
    flex-wrap: wrap;
  }
  .sp-online {
    display: none;
  }
  .sp-gameinfo__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .sp-header__inner {
    gap: 8px;
  }
  .sp-toc__grid {
    grid-template-columns: 1fr;
  }
  .sp-hero__title {
    font-size: 1.4rem;
  }
  .sp-hero__buttons .btn--demo {
    display: none;
  }
  .sp-casino-card {
    padding: 14px;
  }
  .sp-author {
    flex-direction: column;
  }
  .sp-author__avatar {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }
  .sp-gameinfo__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sp-content {
  padding: 48px 0;
}
.sp-content .text {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}
.sp-content .text h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  color: #fff;
  margin-top: 0;
}
.sp-content .text h2,
.sp-content .text h3,
.sp-content .text h4 {
  margin: 1.4em 0 0.6em;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
}
.sp-content .text h2 {
  font-size: 1.35rem;
}
.sp-content .text h3 {
  font-size: 1.1rem;
}
.sp-content .text p {
  margin-bottom: 1.2em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}
.sp-content .text a {
  color: var(--color-accent);
}
.sp-content .text a:hover {
  text-decoration: underline;
}
.sp-content .text ul,
.sp-content .text ol {
  margin: 0.8em 0 1em 1.4em;
}
.sp-content .text ul {
  list-style: disc;
}
.sp-content .text ol {
  list-style: decimal;
}
.sp-content .text li {
  margin-bottom: 0.4em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.sp-content .text table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.4em auto;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.sp-content .text table th,
.sp-content .text table td {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 14px;
  text-align: left;
  color: rgba(255, 255, 255, 0.88);
}
.sp-content .text table th {
  background: rgba(0, 0, 0, 0.3);
  font-weight: 600;
  color: var(--color-accent);
}
.sp-content .text blockquote {
  border-left: 3px solid var(--color-btn-reg);
  padding: 12px 18px;
  margin: 1em 0;
  background: rgba(205, 15, 224, 0.1);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}
.sp-content .text img {
  border-radius: var(--radius-sm);
  max-width: 100%;
  height: auto;
}
.sp-content .text strong {
  color: #fff;
  font-weight: 600;
}
.sp-content .text em {
  color: rgba(255, 255, 255, 0.8);
}
.sp-content .text code {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
}
.sp-content .text pre {
  background: rgba(0, 0, 0, 0.4);
  padding: 16px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
}
.sp-content .text hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 1.5em 0;
}
.sp-content {
  padding: 48px 0;
}
.sp-content .text {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.sp-content .text h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  color: #fff;
  margin-top: 0;
}
.sp-content .text h2,
.sp-content .text h3,
.sp-content .text h4 {
  margin: 1.4em 0 0.6em;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
  word-wrap: break-word;
}
.sp-content .text h2 {
  font-size: 1.35rem;
}
.sp-content .text h3 {
  font-size: 1.1rem;
}
.sp-content .text p {
  margin-bottom: 1.2em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  word-wrap: break-word;
}
.sp-content .text a {
  color: var(--color-accent);
  word-break: break-all;
}
.sp-content .text a:hover {
  text-decoration: underline;
}
.sp-content .text ul,
.sp-content .text ol {
  margin: 0.8em 0 1em 1.4em;
}
.sp-content .text ul {
  list-style: disc;
}
.sp-content .text ol {
  list-style: decimal;
}
.sp-content .text li {
  margin-bottom: 0.4em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  word-wrap: break-word;
}
.sp-content .text table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.4em auto;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.sp-content .text table th,
.sp-content .text table td {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 14px;
  text-align: left;
  color: rgba(255, 255, 255, 0.88);
  word-wrap: break-word;
}
.sp-content .text table th {
  background: rgba(0, 0, 0, 0.3);
  font-weight: 600;
  color: var(--color-accent);
}
.sp-content .text blockquote {
  border-left: 3px solid var(--color-btn-reg);
  padding: 12px 18px;
  margin: 1em 0;
  background: rgba(205, 15, 224, 0.1);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}
.sp-content .text img {
  border-radius: var(--radius-sm);
  max-width: 100%;
  height: auto;
}
.sp-content .text strong {
  color: #fff;
  font-weight: 600;
}
.sp-content .text em {
  color: rgba(255, 255, 255, 0.8);
}
.sp-content .text code {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  word-break: break-all;
}
.sp-content .text pre {
  background: rgba(0, 0, 0, 0.4);
  padding: 16px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
}
.sp-content .text hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 1.5em 0;
}

.sp-demo__iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #0a0a0a;
  touch-action: auto;
  pointer-events: auto;
}
.sp-demo__iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: auto;
  touch-action: auto;
}

@media (max-width: 768px) {
  .sp-demo__iframe-wrap {
    min-height: 400px;
    padding-bottom: 75%;
    -webkit-overflow-scrolling: touch;
  }
  .sp-demo__iframe-wrap iframe {
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .sp-demo__iframe-wrap {
    min-height: 350px;
    padding-bottom: 100%;
  }
}
.sp-demo {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}
.sp-demo__wrapper {
  background: #000;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.sp-demo__iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #0a0a0a;
}
.sp-demo__iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.sp-demo__cta {
  background: rgba(0, 0, 0, 0.5);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.sp-demo__cta-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.sp-demo__cta-text strong {
  color: #fff;
  display: block;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .sp-demo__iframe-wrap {
    padding-bottom: 75%;
  }
}

@media (max-width: 480px) {
  .sp-demo__iframe-wrap {
    padding-bottom: 100%;
  }
}
.sp-demo__iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #0a0a0a;
}

.sp-demo__iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.sp-demo__mobile-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
  z-index: 10;
  text-decoration: none;
}

.sp-demo__mobile-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--color-btn-reg);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: 0 4px 24px rgba(205, 15, 224, 0.5);
  transition: transform var(--transition);
}

.sp-demo__mobile-overlay:active .sp-demo__mobile-btn {
  transform: scale(0.95);
}

.sp-demo__mobile-btn svg {
  width: 48px;
  height: 48px;
  color: #fff;
}

.sp-demo__mobile-btn span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 768px) {
  .sp-demo__iframe-wrap {
    padding-bottom: 75%;
  }

  .sp-demo__mobile-overlay {
    display: flex;
  }

  .sp-demo__iframe-wrap iframe {
    pointer-events: none;
  }
}

@media (max-width: 480px) {
  .sp-demo__iframe-wrap {
    padding-bottom: 100%;
  }
}
