:root {
  --bg: #11021a;
  --bg-card: rgb(26,21,53);
  --card-bg: rgb(26,21,53);
  --bg-header: rgb(19,16,58);
  --gold: #fdd835;
  --purple: #301780;
  --purple-light: #583fbe;
  --primary: #463299;
  --text: #e6eef9;
  --text-muted: #ced5df;
  --border: rgba(255, 255, 255, 0.08);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1200px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

h1, h2, h3, h4 {
  line-height: 1.25;
  font-weight: 700;
}

p {
  margin-bottom: 12px;
}

p:last-child {
  margin-bottom: 0;
}

.container-d52iwx {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header-d52iwx {
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner-d52iwx {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  max-width: var(--container);
  margin: 0 auto;
}

.logo-d52iwx img {
  height: 48px;
  width: auto;
}

.desktop-nav-d52iwx {
  flex: 1;
}

.desktop-nav-d52iwx ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.desktop-nav-d52iwx li a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.desktop-nav-d52iwx li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

.nav-more {
  position: relative;
}

.nav-more__btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.nav-more__btn:hover,
.nav-more.open .nav-more__btn {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

.nav-more__arrow {
  font-size: 9px;
  transition: transform 0.2s ease;
}

.nav-more.open .nav-more__arrow {
  transform: rotate(180deg);
}

.nav-more__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 180px;
  background: var(--bg-header);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}

.nav-more.open .nav-more__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-more__menu a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.nav-more__menu a:hover {
  background: rgba(255,255,255,0.07);
  color: var(--gold);
}

.header-auth-d52iwx {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.mobile-header-d52iwx {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.logo-mobile-d52iwx {
  height: 40px;
  width: auto;
}

.hamburger-d52iwx {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 6px 10px;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.btn-login-d52iwx {
  padding: 9px 22px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: background var(--transition), color var(--transition);
}

.btn-login-d52iwx:hover {
  background: var(--gold);
  color: #000;
}

.btn-signup-d52iwx {
  padding: 9px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 14px rgba(253, 216, 53, 0.3);
  transition: opacity var(--transition), box-shadow var(--transition);
}

.btn-signup-d52iwx:hover {
  opacity: 0.9;
  box-shadow: 0 6px 20px rgba(253, 216, 53, 0.45);
}

.drawer-overlay-d52iwx {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 190;
}

.drawer-overlay-d52iwx.open {
  display: block;
}

.mobile-drawer-d52iwx {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 85vw);
  height: 100vh;
  background: var(--bg-header);
  border-left: 1px solid var(--border);
  z-index: 200;
  overflow-y: auto;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-drawer-d52iwx.open {
  right: 0;
}

.drawer-header-d52iwx {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.drawer-close-d52iwx {
  background: none;
  border: none;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  padding: 4px 8px;
}

.mobile-drawer-d52iwx ul {
  padding: 8px 0;
}

.mobile-drawer-d52iwx li a {
  display: block;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}

.mobile-drawer-d52iwx li a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

.drawer-auth-d52iwx {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.drawer-auth-d52iwx .btn-login-d52iwx,
.drawer-auth-d52iwx .btn-signup-d52iwx {
  display: block;
  text-align: center;
  font-size: 16px;
  padding: 14px 24px;
}

section {
  padding: 48px 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.section-title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-link {
  padding: 8px 16px;
  border-radius: 50px;
  background: var(--bg-card);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--transition);
}

.section-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.bonuses-section {
  padding-top: 32px;
  padding-bottom: 32px;
  background: linear-gradient(180deg, rgba(91, 45, 242, 0.15) 0%, transparent 100%);
}

.bonuses-carousel .swiper-slide {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bonus-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  height: 100%;
}

.bonus-card__img-wrap {
  aspect-ratio: 16 / 5;
  background: linear-gradient(135deg, #5b2df2 0%, #3a1fa8 50%, #1a0d5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: rgba(255, 255, 255, 0.3);
}

.bonus-card__body {
  background: rgb(52,40,95);
  padding: 18px 22px 22px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bonus-card__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.bonus-card__title {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
}

.bonus-card__btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1000;
  font-weight: 800;
  font-size: 13px;
  margin-top: 4px;
  align-self: flex-start;
  transition: opacity var(--transition);
}

.bonus-card__btn:hover {
  opacity: 0.88;
}

.bonuses-carousel .swiper-button-prev,
.bonuses-carousel .swiper-button-next {
  top: 38% !important;
}

.mirrors-section {
  padding: 32px 0;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
  margin: 20px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.data-table {
  min-width: 480px;
  font-size: 15px;
  color: var(--text);
}

.data-table thead th {
  background: linear-gradient(135deg, var(--gold), #d1d6e0);
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  color: #000;
}

.data-table tbody tr:first-child td {
  background: rgba(253, 216, 53, 0.1);
  font-weight: 600;
  color: var(--gold);
}

.data-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

.data-table tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.data-table .row-light td {
  background: rgb(245,245,245);
  color: #000;
}

.data-table .row-dark td {
  background: rgb(30,30,47);
  color: #fff;
}

.data-table .val-gold {
  color: var(--gold) !important;
  font-weight: 700;
}

.data-table .val-green {
  color: #43a047 !important;
  font-weight: 700;
}

.rp-mirrors-table {
  min-width: 480px;
  font-size: 15px;
  color: #e4e7eb;
  border-collapse: collapse;
  width: 100%;
}

.rp-mirrors-table thead th {
  background: rgb(42,45,51);
  padding: 14px 12px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid #3a3d44;
  color: #cbd3dc;
}

.rp-mirrors-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rp-mirrors-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.rp-main-mirror {
  background: rgba(255, 215, 0, 0.08);
  border-left: 2px solid #ffd600;
}

.rp-main-mirror a {
  color: #ffd600 !important;
  font-weight: 600;
}

.rp-main-mirror a:hover {
  text-decoration: underline;
}

.rp-section-row td {
  background: rgb(29,31,35);
  padding: 10px 12px;
  font-weight: 600;
  color: #9aa1ac;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
}

.rp-mirrors-table a {
  color: #7bb8ff;
}

.rp-mirrors-table a:hover {
  text-decoration: underline;
}

.rp-hidden {
  display: none;
}

.rp-show-row td {
  padding: 16px 0;
  background: rgb(29,31,35);
  text-align: center;
}

.rp-show-btn {
  background: var(--gold);
  color: #111;
  border: none;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  touch-action: manipulation;
  position: relative;
  z-index: 10;
}

.rp-show-btn:hover {
  background: #ffe44f;
}

.review-section h1 {
  font-size: clamp(22px, 4vw, 32px);
  margin-bottom: 16px;
}

.review-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.games-section {
  padding: 32px 0;
}

.hs-slider-wrap {
  margin-bottom: 48px;
}

.hs-slider-controls {
  display: flex;
  gap: 8px;
}

.hs-btn {
  width: 36px;
  height: 36px;
  border-radius: 50px;
  border: none;
  background: var(--bg-card);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.hs-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hs-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform var(--transition);
}

.hs-card:hover {
  transform: translateY(-3px);
}

.hs-card-img {
  display: block;
}

.hs-thumb {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgb(15,23,42);
  position: relative;
}

.hs-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.hs-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hs-thumb::before {
  content: "▶";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(2px);
  font-size: 16px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1;
}

.hs-card-img:hover .hs-thumb img {
  transform: scale(1.05);
}

.hs-card-img:hover .hs-thumb::after {
  opacity: 1;
}

.hs-card-img:hover .hs-thumb::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hs-card-title {
  display: block;
  font-weight: 700;
  font-size: 14px;
  padding: 0 2px;
}

.hs-card-title:hover {
  color: var(--gold);
}

.content-section-d52iwx {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.seo-section-d52iwx {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.seo-content-d52iwx h2 {
  font-size: clamp(22px, 3.5vw, 34px);
  margin: 48px 0 18px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.seo-content-d52iwx h2 .h2-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple), #a044ff);
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
  opacity: 1;
}

.seo-content-d52iwx h2:first-child {
  margin-top: 0;
}

.seo-content-d52iwx h3 {
  font-size: clamp(18px, 2.8vw, 26px);
  margin: 28px 0 14px;
  color: var(--text);
  font-weight: 700;
}

.seo-content-d52iwx h4 {
  font-size: clamp(15px, 2vw, 20px);
  margin: 22px 0 10px;
  color: var(--gold);
  font-weight: 700;
}

.seo-content-d52iwx p {
  margin-bottom: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 15px;
}

.seo-content-d52iwx > p:first-of-type {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
}

.seo-content-d52iwx ul,
.seo-content-d52iwx ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seo-content-d52iwx ul li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.seo-content-d52iwx ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.seo-content-d52iwx ol {
  counter-reset: seo-ol;
}

.seo-content-d52iwx ol li {
  position: relative;
  padding-left: 32px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  counter-increment: seo-ol;
}

.seo-content-d52iwx ol li::before {
  content: counter(seo-ol);
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seo-content-d52iwx blockquote {
  margin: 24px 0;
  padding: 18px 20px 18px 24px;
  border-left: 4px solid var(--gold);
  background: rgba(253, 216, 53, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text);
  font-style: italic;
  font-size: 15px;
  line-height: 1.8;
}

.seo-content-d52iwx strong {
  color: var(--text);
  font-weight: 700;
}

.seo-content-d52iwx a {
  color: var(--purple-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.seo-content-d52iwx a:hover {
  color: var(--gold);
}

.seo-content-d52iwx .table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.seo-content-d52iwx table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  margin: 0;
}

.seo-content-d52iwx th,
.seo-content-d52iwx td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
}

.seo-content-d52iwx th:last-child,
.seo-content-d52iwx td:last-child {
  border-right: none;
}

.seo-content-d52iwx thead tr th {
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.seo-content-d52iwx tbody tr:first-child td {
  background: rgba(91, 45, 242, 0.12);
  font-weight: 600;
  color: var(--text);
}

.seo-content-d52iwx tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

.seo-content-d52iwx tbody tr:hover {
  background: rgba(253, 216, 53, 0.05);
}

.custom-feature-card-d52iwx {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(91,45,242,0.08) 100%);
  border: 1px solid rgba(91, 45, 242, 0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 40px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
}

.custom-feature-card-d52iwx::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
}

.cfc-body-d52iwx {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.cfc-img-d52iwx {
  flex: 1 1 260px;
  text-align: center;
}

.cfc-content-d52iwx {
  flex: 1.6 1 260px;
}

.cfc-perks {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cfc-perks li {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  line-height: 1.4;
}

.cfc-footer-d52iwx {
  text-align: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  .cfc-perks {
    grid-template-columns: 1fr;
  }

  .cfc-body-d52iwx {
    gap: 20px;
  }
}

.text-image {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin: 24px 0;
}

.text-image img {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius);
}

.text-image__content {
  flex: 1 1 280px;
}

.content-section-d52iwx h1 {
  font-size: clamp(32px, 5vw, 46px);
  margin-bottom: 16px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.2;
}

.content-section-d52iwx h2 {
  font-size: clamp(22px, 3.5vw, 34px);
  margin-bottom: 18px;
  color: var(--text);
  font-weight: 800;
}

.content-section-d52iwx h3 {
  font-size: clamp(18px, 2.8vw, 26px);
  margin: 28px 0 14px;
  color: var(--text);
  font-weight: 700;
}

.content-section-d52iwx h4 {
  font-size: clamp(15px, 2vw, 20px);
  margin: 22px 0 10px;
  color: var(--gold);
  font-weight: 700;
}

.content-section-d52iwx ul,
.content-section-d52iwx ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.content-section-d52iwx ol {
  list-style: decimal;
}

.content-section-d52iwx li {
  margin-bottom: 6px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.two-col img {
  width: 100%;
  border-radius: var(--radius);
}

.info-block {
  background: linear-gradient(135deg, #d1d6e0 0%, var(--gold) 100%);
  padding: 16px;
  border-radius: var(--radius);
  margin: 20px 0;
  border-left: 4px solid #d1d6e0;
}

.info-block strong {
  color: #000;
  display: block;
  margin-bottom: 4px;
}

.info-block p,
.info-block span {
  color: #000;
}

.info-block ul {
  padding-left: 0;
  margin: 10px 0 0;
  list-style: none;
}

.info-block li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: #000;
}

.info-block li::before {
  content: "✅";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.btn-play {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 15px;
  margin-top: 16px;
  transition: opacity var(--transition);
}

.btn-play:hover {
  opacity: 0.88;
}

.data-table.wide {
  min-width: 600px;
}

.faq-section-d52iwx {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.auto-faq-container-d52iwx > h2 {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  padding-bottom: 16px;
  position: relative;
}

.auto-faq-container-d52iwx > h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--purple);
  border-radius: 2px;
}

.auto-faq-container-d52iwx > p {
  margin: 24px auto 0;
  max-width: 800px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 15px;
}

.faq {
  margin-top: 32px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.faq-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  color: var(--text);
  text-align: left;
  font-size: 15px;
  font-weight: 600;
}

.faq-toggle {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.2s ease;
  display: inline-block;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 0;
}

.faq-body.open {
  max-height: 500px;
  padding-bottom: 16px;
}

.author-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-top: 32px;
}

.author-card__avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-card__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.author-card__name a:hover {
  color: var(--gold);
}

.author-card__description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.site-footer-d52iwx {
  background: var(--bg-header);
  border-top: 1px solid var(--border);
  padding: 32px 20px;
}

.footer-nav-d52iwx ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-nav-d52iwx li a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-nav-d52iwx li a:hover {
  color: var(--gold);
}

.footer-copyright-d52iwx {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .header-inner-d52iwx {
    display: none;
  }

  .mobile-header-d52iwx {
    display: flex;
  }

  .review-intro,
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 32px 0;
  }

  .section-title {
    font-size: 18px;
  }

  .bonus-card__title {
    font-size: 15px;
  }

  .content-section-d52iwx h2,
  .seo-content-d52iwx h2 {
    font-size: clamp(20px, 5vw, 26px);
  }

  .rp-mirrors-table thead {
    display: none;
  }

  .rp-mirrors-table tr {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .rp-mirrors-table td {
    display: flex;
    justify-content: space-between;
    padding: 6px 12px;
  }

  .rp-mirrors-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #9097a3;
  }

  .rp-mirrors-table .rp-show-row td {
    display: block !important;
    justify-content: initial !important;
    text-align: center !important;
  }

  .rp-mirrors-table .rp-show-row td::before {
    display: none !important;
    content: none !important;
  }

  .rp-mirrors-table tr.rp-hidden {
    display: none !important;
  }

  .rp-show-btn {
    width: 100%;
    max-width: 300px;
    min-height: 44px;
    border-radius: 10px;
  }

  .author-card {
    flex-direction: column;
  }

  .author-card__avatar img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .bonus-card__img-wrap {
    aspect-ratio: 16 / 6;
  }

  .footer-nav-d52iwx ul {
    gap: 10px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hs-thumb img,
  .hs-thumb::after,
  .hs-thumb::before,
  .hs-card {
    transition: none;
  }
}

.content-navigation-d52iwx {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin: 24px 0;
}

.navigation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 16px;
  transition: margin 0.2s ease;
}

.content-navigation-d52iwx.collapsed-d52iwx .navigation-header {
  margin-bottom: 0;
}

.navigation-title-d52iwx {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}

.toc-toggle-icon {
  font-size: 11px;
  color: var(--primary);
  transition: transform 0.25s ease;
  transform: rotate(-180deg);
}

.content-navigation-d52iwx.collapsed-d52iwx .toc-toggle-icon {
  transform: rotate(0deg);
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  max-height: 600px;
  transition: max-height 0.3s ease;
}

.content-navigation-d52iwx.collapsed-d52iwx .toc-list {
  max-height: 0;
}

.toc-link {
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  padding: 2px 0;
  border-bottom: none;
  transition: opacity 0.2s;
}

.toc-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.hero-section-d52iwx {
  position: relative;
  padding: 56px 0 48px;
  background: linear-gradient(to bottom, #0000 40%, #080a10 100%),
              linear-gradient(to right, #02060f 0%, #02060fd9 22%, transparent 55%),
              var(--card-bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-section-d52iwx::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/images/vndv3z6mkv9v.webp);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: 0;
}

.hero-section-d52iwx .container-d52iwx {
  position: relative;
  z-index: 1;
}

.hero-inner-d52iwx {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 40px;
}

.hero-text-d52iwx {
  flex: 1 1 0;
}

.hero-text-d52iwx h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--text);
  font-weight: 900;
}

.hero-description-d52iwx {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 16px;
}

.btn--hero-d52iwx {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--purple), #a044ff);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.4px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(91, 45, 242, 0.45);
  transition: opacity 0.2s, box-shadow 0.2s;
}

.btn--hero-d52iwx:hover {
  opacity: 0.9;
  box-shadow: 0 8px 32px rgba(91, 45, 242, 0.6);
}

.hero-logo-d52iwx {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-img-d52iwx {
  max-width: 280px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
}

@media (max-width: 680px) {
  .hero-inner-d52iwx {
    flex-direction: column-reverse;
    gap: 24px;
    text-align: center;
    margin-bottom: 24px;
  }

  .hero-logo-d52iwx {
    max-width: 160px;
    margin: 0 auto;
  }
}

[data-aff="true"] {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
[data-aff="true"]:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 2px;
}

.slots-section-d52iwx {
  padding: 48px 0 40px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse at top left, rgba(91, 45, 242, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(253, 216, 53, 0.06) 0%, transparent 55%);
}

.slots-head-d52iwx {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.slots-title-d52iwx {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(22px, 3.5vw, 32px);
  color: var(--text);
  font-weight: 800;
  margin: 0;
}

.slots-title-icon-d52iwx {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple), #a044ff);
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
}

.slots-marquee-d52iwx {
  position: relative;
  overflow: hidden;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.slots-marquee__track-d52iwx {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: max-content;
  animation: slotsMarquee 60s linear infinite;
  will-change: transform;
}

.slots-marquee-d52iwx:hover .slots-marquee__track-d52iwx,
.slots-marquee-d52iwx:focus-within .slots-marquee__track-d52iwx {
  animation-play-state: paused;
}

@keyframes slotsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.slot-card-d52iwx {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 220px;
  width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 10px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.slot-card-d52iwx:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 93, 245, 0.55);
  box-shadow: 0 12px 28px rgba(91, 45, 242, 0.25);
}

.slot-thumb-d52iwx {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  background: rgb(15,10,44);
  display: block;
}

.slot-thumb-d52iwx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.slot-card-d52iwx:hover .slot-thumb-d52iwx img {
  transform: scale(1.05);
}

.slot-info-d52iwx {
  padding: 2px 4px 4px;
  text-align: center;
  display: block;
}

.slot-name-d52iwx {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color var(--transition);
  display: block;
}

.slot-card-d52iwx:hover .slot-name-d52iwx {
  color: var(--gold);
}

@media (max-width: 900px) {
  .slots-section-d52iwx {
    padding: 36px 0 32px;
  }
  .slots-marquee__track-d52iwx {
    animation-duration: 50s;
  }
  .slot-card-d52iwx {
    flex-basis: 180px;
    width: 180px;
  }
}

@media (max-width: 560px) {
  .slots-head-d52iwx {
    margin-bottom: 18px;
  }
  .slots-marquee__track-d52iwx {
    gap: 12px;
    animation-duration: 40s;
  }
  .slot-card-d52iwx {
    flex-basis: 150px;
    width: 150px;
    padding: 8px;
  }
  .slot-name-d52iwx {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slots-marquee__track-d52iwx {
    animation: none;
  }
}

.slots-grid-section-d52iwx {
  padding: 56px 0 48px;
  border-top: 1px solid var(--border);
  background:var(--bg);
  position: relative;
  overflow: hidden;
}

.slots-grid-head-d52iwx {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.slots-grid-title-d52iwx {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(24px, 4vw, 38px);
  color: var(--text);
  font-weight: 900;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.slots-grid-title-icon-d52iwx {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple), #a044ff);
  border-radius: 12px;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 8px 22px rgba(91, 45, 242, 0.45);
}

.slots-grid-sub {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
  max-width: 460px;
}

.slots-grid-d52iwx {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.slot-tile-d52iwx {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.slot-tile__media-d52iwx {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgb(15,10,44);
}

.slot-tile__media-d52iwx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.slot-tile__label {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1000;
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 999px;
}

.slot-tile__body-d52iwx {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 14px 16px 16px;
  flex: 1;
}

.slot-tile__title-d52iwx {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 2.6em;
}

.slot-tile__cta-d52iwx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 10px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--purple), #6a27ac);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity var(--transition), box-shadow var(--transition);
}

.slot-tile__cta-d52iwx i {
  font-size: 10px;
}

.slot-tile-d52iwx:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 93, 245, 0.5);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.slot-tile-d52iwx:hover .slot-tile__media-d52iwx img {
  transform: scale(1.05);
}

.slot-tile-d52iwx:hover .slot-tile__cta-d52iwx {
  opacity: 0.95;
  box-shadow: 0 8px 22px rgba(91, 45, 242, 0.45);
}

.slots-grid-cta-row-d52iwx {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.slots-grid-cta-row-d52iwx .btn--hero-d52iwx {
  padding: 14px 36px;
  font-size: 15px;
}

@media (max-width: 1100px) {
  .slots-grid-d52iwx {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .slots-grid-section-d52iwx {
    padding: 36px 0 32px;
  }
  .slots-grid-d52iwx {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .slot-tile__title-d52iwx {
    font-size: 14px;
  }
  .slot-tile__body-d52iwx {
    padding: 12px 14px 14px;
  }
}

@media (max-width: 380px) {
  .slots-grid-d52iwx {
    grid-template-columns: 1fr;
  }
}

#to-top-d52iwx {
  position: fixed;
  bottom: 32px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  border: none;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}

main > .content-section-d52iwx { padding-top: 64px; }

/* batFjZ */
