:root {
  --c-primary: #5274ff;
  --c-primary-dark: #3a5ae0;
  --c-green: #69d253;
  --c-green-dark: #52b83e;
  --c-bg: #0f0f2e;
  --c-bg-alt: #1a1a2e;
  --c-bg-deep: #0a0a20;
  --c-white: #1a1a2e;
  --c-text: #ffffff;
  --c-text-light: #c8c8e0;
  --c-border: rgba(255, 255, 255, 0.12);
  --c-header-bg: #1a1a2e;
  --c-footer-bg: #0a0a20;
  --c-footer-text: #c8c8e0;
  --c-card-bg: #1f1f3d;
  --c-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --c-shadow-hover: 0 8px 36px rgba(82, 116, 255, 0.3);
  --radius: 14px;
  --radius-sm: 8px;
  --font-main: "Montserrat", "Roboto", Arial, sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #8fa8ff;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.x7f2a {
  display: none !important;
}
.b9e3c {
  visibility: hidden;
  height: 0;
}
.wp-placeholder-anchor {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
}
.entry-meta-wp {
  display: none;
}

.c-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.s-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-header-bg);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid var(--c-border);
}

.s-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  height: 70px;
}

.s-header__inner > * {
  display: flex;
  align-items: center;
}

.s-header__logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.s-header__logo {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  text-transform: lowercase;
  letter-spacing: -0.5px;
  text-decoration: none;
  line-height: 1;
}

.s-header__logo:hover {
  color: #8fa8ff;
}

.s-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  height: 100%;
}

.s-header__nav a {
  color: var(--c-text);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.s-header__nav a:hover {
  background: rgba(82, 116, 255, 0.15);
  color: #8fa8ff;
}

.s-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.s-header__online {
  font-size: 12px;
  color: var(--c-green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.s-header__online::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--c-green);
  border-radius: 50%;
  animation: pulse-green 1.4s infinite;
}

@keyframes pulse-green {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(105, 210, 83, 0.6);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(105, 210, 83, 0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.2s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.btn:active {
  transform: translateY(0);
}

.btn-login {
  background: var(--c-primary);
  color: #fff;
}
.btn-login:hover {
  background: var(--c-primary-dark);
  color: #fff;
}

.btn-signup {
  background: var(--c-green);
  color: #fff;
}
.btn-signup:hover {
  background: var(--c-green-dark);
  color: #fff;
}

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

.btn-success {
  background: var(--c-green);
  color: #fff;
  font-size: 16px;
  padding: 14px 32px;
}
.btn-success:hover {
  background: var(--c-green-dark);
  color: #fff;
}

.btn-lg {
  font-size: 18px;
  padding: 16px 40px;
  border-radius: 10px;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--c-primary);
  color: var(--c-primary);
}
.btn-outline:hover {
  background: var(--c-primary);
  color: #fff;
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.burger-btn:hover {
  background: rgba(82, 116, 255, 0.15);
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--c-text);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.burger-btn.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger-btn.is-open span:nth-child(2) {
  opacity: 0;
}
.burger-btn.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--c-header-bg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  padding: 20px;
  z-index: 999;
  border-top: 2px solid var(--c-border);
  animation: slideDown 0.25s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav.is-open {
  display: block;
}
.mobile-nav ul {
  list-style: none;
  display: grid;
  gap: 4px;
}
.mobile-nav ul a {
  display: block;
  color: var(--c-text);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.mobile-nav ul a:hover {
  background: rgba(82, 116, 255, 0.15);
  color: #8fa8ff;
}
.mobile-nav__btns {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.mobile-nav__btns .btn {
  flex: 1;
  justify-content: center;
}

.s-hero {
  position: relative;
  background: #0f0f2e;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.s-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/sloticaBan.png");
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transition: transform 8s ease;
}

.s-hero:hover .s-hero__bg {
  transform: scale(1.03);
}

.s-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 15, 46, 0.92) 0%,
    rgba(15, 15, 46, 0.55) 60%,
    rgba(15, 15, 46, 0.2) 100%
  );
}

.s-hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 60px 0;
  animation: fadeInLeft 0.7s ease both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.s-hero__badge {
  display: inline-block;
  background: var(--c-green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.s-hero h1 {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  text-balance: balance;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.s-hero h1 span {
  color: var(--c-green);
}

.s-hero__sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.s-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.4s ease both;
}

.s-hero__disclaimer {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  animation: fadeInUp 0.7s 0.5s ease both;
}

.s-breadcrumbs {
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
}

.s-breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
  font-size: 13px;
}

.s-breadcrumbs__list li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.s-breadcrumbs__list li:not(:last-child)::after {
  content: "/";
  color: rgba(255, 255, 255, 0.35);
}
.s-breadcrumbs__list a {
  color: #8fa8ff;
  font-weight: 600;
}
.s-breadcrumbs__list span {
  color: var(--c-text-light);
}

.s-section {
  padding: 56px 0;
  background: var(--c-bg);
}

.s-section--alt {
  background: var(--c-bg-alt);
}
.s-section--dark {
  background: var(--c-bg-deep);
  color: #fff;
}

.s-section__title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--c-text);
  margin-bottom: 10px;
  text-balance: balance;
  line-height: 1.2;
}

.s-section--dark .s-section__title {
  color: #fff;
}

.s-section__subtitle {
  font-size: 16px;
  color: var(--c-text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.s-section--dark .s-section__subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.s-section__hd {
  text-align: center;
  margin-bottom: 48px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.adv-card {
  background: var(--c-card-bg);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--c-shadow);
  border: 1px solid var(--c-border);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeInUp 0.5s ease both;
}

.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--c-shadow-hover);
  border-color: rgba(82, 116, 255, 0.4);
}

.adv-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--c-primary) 0%, #8fa8ff 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.adv-card__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--c-text);
}
.adv-card__text {
  font-size: 13px;
  color: var(--c-text-light);
  line-height: 1.55;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pc-card {
  border-radius: var(--radius);
  padding: 28px;
  border: 2px solid;
}

.pc-card--pros {
  background: rgba(105, 210, 83, 0.08);
  border-color: rgba(105, 210, 83, 0.4);
}

.pc-card--cons {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.4);
}

.pc-card__title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pc-card--pros .pc-card__title {
  color: #86efac;
}
.pc-card--cons .pc-card__title {
  color: #fca5a5;
}

.pc-list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.pc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-text-light);
}
.pc-list__icon {
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 1px;
}
.pc-card--pros .pc-list__icon {
  color: #86efac;
}
.pc-card--cons .pc-list__icon {
  color: #fca5a5;
}

.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.jp-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2f6e 100%);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  color: #fff;
  border: 2px solid rgba(255, 215, 0, 0.25);
  transition:
    transform 0.25s,
    border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.jp-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent 70%);
  border-radius: 50%;
}

.jp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.55);
}

.jp-card__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  font-weight: 700;
}
.jp-card__game {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
}
.jp-card__amount {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #ffd700;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  transition: transform 0.3s;
}
.jp-card__amount.jp-update {
  transform: scale(1.1);
  color: #ffe066;
}
.jp-card__badge {
  font-size: 11px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.bonus-card {
  background: var(--c-card-bg);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--c-shadow);
  border: 2px solid var(--c-border);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--c-shadow-hover);
  border-color: var(--c-primary);
}

.bonus-card__icon {
  font-size: 40px;
}
.bonus-card__type {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8fa8ff;
}
.bonus-card__title {
  font-size: 18px;
  font-weight: 900;
  color: var(--c-text);
  line-height: 1.2;
}
.bonus-card__value {
  font-size: 28px;
  font-weight: 900;
  color: var(--c-green);
}
.bonus-card__desc {
  font-size: 13px;
  color: var(--c-text-light);
  line-height: 1.55;
  flex: 1;
}
.bonus-card .btn {
  width: 100%;
  justify-content: center;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.game-card {
  background: var(--c-card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--c-shadow);
  border: 1px solid var(--c-border);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--c-shadow-hover);
  border-color: rgba(82, 116, 255, 0.4);
}

.game-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.game-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.game-card:hover .game-card__img-wrap img {
  transform: scale(1.06);
}

.game-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--c-green);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.game-card__provider {
  font-size: 11px;
  color: var(--c-text-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.game-card__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--c-text);
}
.game-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.s-slider-wrap {
  position: relative;
}
.s-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.slider-nav {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.slider-dot.active {
  background: var(--c-primary);
  transform: scale(1.3);
}

.wheel-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.wheel-canvas-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#wheel-canvas {
  display: block;
  border-radius: 50%;
  box-shadow:
    0 0 40px rgba(82, 116, 255, 0.4),
    0 0 0 6px var(--c-card-bg),
    0 0 0 9px var(--c-primary);
  max-width: 340px;
  width: 100%;
}

.wheel-pointer {
  position: absolute;
  top: 50%;
  right: -22px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-right: 36px solid #ffd700;
  filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.5));
  z-index: 5;
}

.wheel-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wheel-info__title {
  font-size: 28px;
  font-weight: 900;
  color: var(--c-text);
  line-height: 1.2;
}
.wheel-info__sub {
  font-size: 15px;
  color: var(--c-text-light);
  line-height: 1.6;
}

.wheel-result {
  display: none;
  background: rgba(105, 210, 83, 0.1);
  border: 2px solid var(--c-green);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  animation: fadeInUp 0.4s ease;
}

.wheel-result.win {
  display: block;
}
.wheel-result.lose {
  display: block;
  background: rgba(220, 38, 38, 0.1);
  border-color: #fca5a5;
}
.wheel-result__title {
  font-size: 20px;
  font-weight: 900;
  color: #86efac;
  margin-bottom: 6px;
}
.wheel-result.lose .wheel-result__title {
  color: #fca5a5;
}
.wheel-result__text {
  font-size: 14px;
  color: var(--c-text-light);
  margin-bottom: 16px;
}

#spin-btn {
  background: linear-gradient(135deg, var(--c-primary), #8fa8ff);
  color: #fff;
  font-size: 16px;
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  font-family: var(--font-main);
  box-shadow: 0 4px 20px rgba(82, 116, 255, 0.45);
}

#spin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(82, 116, 255, 0.6);
}
#spin-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.s-review {
  padding: 56px 0;
  background: var(--c-bg-alt);
}

.review-content {
  background: var(--c-card-bg);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--c-shadow);
  border: 1px solid var(--c-border);
}

.review-content h2 {
  font-size: 24px;
  font-weight: 900;
  color: var(--c-text);
  margin: 28px 0 12px;
}
.review-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-text);
  margin: 22px 0 10px;
}
.review-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text);
  margin: 18px 0 8px;
}
.review-content p {
  font-size: 15px;
  color: var(--c-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.review-content ul,
.review-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.review-content li {
  font-size: 15px;
  color: var(--c-text-light);
  line-height: 1.65;
  margin-bottom: 6px;
}
.review-content a {
  color: #8fa8ff;
  font-weight: 600;
  text-decoration: underline;
}
.review-content strong,
.review-content b {
  font-weight: 800;
  color: var(--c-text);
}
.review-content em,
.review-content i {
  font-style: italic;
}
.review-content blockquote {
  border-left: 4px solid var(--c-primary);
  padding: 12px 18px;
  background: rgba(82, 116, 255, 0.1);
  border-radius: 0 8px 8px 0;
  margin: 18px 0;
  font-style: italic;
  color: var(--c-text-light);
}
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
}
.review-content table th {
  background: var(--c-primary);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
}
.review-content table td {
  padding: 9px 14px;
  border: 1px solid var(--c-border);
  color: var(--c-text-light);
}
.review-content table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
.review-content hr {
  border: none;
  border-top: 2px solid var(--c-border);
  margin: 28px 0;
}
.review-content img {
  border-radius: var(--radius-sm);
  margin: 12px 0;
}
.review-content code {
  background: rgba(82, 116, 255, 0.15);
  color: #8fa8ff;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 13px;
  font-family: monospace;
}
.review-content pre {
  background: #0a0a20;
  color: #c8c8e0;
  padding: 18px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin-bottom: 16px;
  border: 1px solid var(--c-border);
}

.review-content .placeholder-content {
  padding: 40px;
  text-align: center;
  background: rgba(82, 116, 255, 0.08);
  border-radius: var(--radius);
  border: 2px dashed var(--c-border);
  color: var(--c-text-light);
  font-size: 15px;
}

.s-faq {
  padding: 56px 0;
  background: var(--c-bg);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--c-card-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 18px rgba(82, 116, 255, 0.2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  transition:
    color 0.2s,
    background 0.2s;
}

.faq-question:hover {
  background: rgba(82, 116, 255, 0.08);
  color: #8fa8ff;
}
.faq-item.open .faq-question {
  color: #8fa8ff;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition:
    transform 0.3s,
    background 0.2s;
  font-style: normal;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--c-green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.2s;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}
.faq-answer__inner {
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--c-text-light);
  line-height: 1.7;
  border-top: 1px solid var(--c-border);
  padding-top: 16px;
}

.s-author {
  padding: 56px 0;
  background: var(--c-bg-alt);
}

.author-card {
  background: var(--c-card-bg);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--c-shadow);
  border: 1px solid var(--c-border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}

.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-primary);
  flex-shrink: 0;
}

.author-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--c-text);
  margin-bottom: 4px;
}
.author-role {
  font-size: 13px;
  color: #8fa8ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.author-bio {
  font-size: 14px;
  color: var(--c-text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}
.author-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #8fa8ff;
  padding: 6px 14px;
  border: 2px solid var(--c-primary);
  border-radius: 20px;
  transition:
    background 0.2s,
    color 0.2s;
}
.author-link:hover {
  background: var(--c-primary);
  color: #fff;
}

.s-footer {
  background: var(--c-footer-bg);
  color: var(--c-footer-text);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 38px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-logo p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-footer-text);
}

.footer-col__title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.footer-nav {
  list-style: none;
  display: grid;
  gap: 8px;
}
.footer-nav a {
  font-size: 14px;
  color: var(--c-footer-text);
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #8fa8ff;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.fp-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.2s;
}
.fp-badge:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.fpr-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}
.footer-legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.7;
  text-align: right;
}
.footer-license {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 10px;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2f6e 100%);
  color: #fff;
  padding: 12px 20px;
  z-index: 9999;
  border-top: 2px solid var(--c-primary);
  box-shadow: 0 -4px 24px rgba(82, 116, 255, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-widget.visible {
  transform: translateY(0);
}

.sticky-widget__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.sticky-widget__text {
  font-size: 14px;
  line-height: 1.4;
}
.sticky-widget__text strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #ffd700;
}
.sticky-widget__text span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}
.sticky-widget__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sticky-widget__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.sticky-widget__close:hover {
  color: #fff;
}

.sticky-widget .btn-signup {
  font-size: 15px;
  padding: 12px 28px;
}

body.widget-closed .sticky-widget {
  display: none;
}
body {
  padding-bottom: 70px;
}
body.widget-closed {
  padding-bottom: 0;
}

.a4x7b {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  opacity: 0;
}
.d8n2k {
  display: none;
}
.wp-block-unstyled {
  clear: both;
}

@media (max-width: 900px) {
  .s-header__nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .s-header__inner {
    grid-template-columns: auto 1fr auto auto;
  }
  .s-header__online {
    display: none;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .jackpots-grid {
    grid-template-columns: 1fr;
  }
  .bonuses-grid {
    grid-template-columns: 1fr;
  }
  .games-grid {
    grid-template-columns: 1fr;
  }
  .s-slider {
    grid-template-columns: 1fr;
  }
  .slider-nav {
    display: flex;
  }
  .wheel-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wheel-pointer {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
  }
  .footer-legal {
    text-align: left;
  }
  .author-card {
    grid-template-columns: 1fr;
  }
  .author-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }
  .sticky-widget__inner {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .s-header__logo img {
    height: 52px;
  }
  .s-header__logo {
    font-size: 28px;
  }
  .s-hero {
    min-height: 360px;
  }
  .s-hero__actions {
    flex-direction: column;
  }
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sticky-widget__text strong {
    font-size: 14px;
  }
  .sticky-widget .btn-signup {
    font-size: 13px;
    padding: 10px 18px;
  }
  .review-content {
    padding: 20px;
  }
  .s-section {
    padding: 40px 0;
  }
  body {
    padding-bottom: 90px;
  }
}

@media (max-width: 400px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .c-wrap {
    padding: 0 14px;
  }
}
