:root {
  --purple: #610052;
  --purple-dark: #35002f;
  --gold: #fbc238;
  --gold-light: #ffe4a0;
  --pink: #d70078;
  --ink: #1d181e;
  --text: #3b353c;
  --muted: #716a72;
  --paper: #ffffff;
  --surface: #f8f5f8;
  --border: #e2dbe2;
  --shadow: 0 12px 34px rgba(53, 0, 47, 0.1);
  --radius: 7px;
  --content-width: 1120px;
  --reading-width: 820px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.72;
}

header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 4px solid var(--gold);
  background: var(--purple-dark);
  box-shadow: 0 4px 18px rgba(53, 0, 47, 0.2);
}

.header-inner {
  display: flex;
  width: min(var(--content-width), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  height: 58px;
  align-items: center;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -1px;
  white-space: nowrap;
}

.logo img {
  height: 58px;
}

.logo-accent {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button,
.button-link {
  display: inline-flex;
  min-height: 46px;
  padding: 12px 23px;
  border: 2px solid var(--gold);
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--purple-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.button:hover,
.button-link:hover {
  background: #ffffff;
  color: var(--purple);
  transform: translateY(-2px);
}

.button:active,
.button-link:active {
  transform: translateY(1px);
}

.button:focus-visible,
.button-link:focus-visible,
.toggle:focus-visible ~ .icon {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.button-secondary {
  border-color: #ffffff;
  background: transparent;
  color: #ffffff;
}

.section {
  width: min(var(--content-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

h1,
h2,
h3 {
  max-width: 900px;
  margin-top: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 25px;
  font-size: clamp(40px, 4vw, 58px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 3vw, 42px);
}

h3 {
  margin: 34px 0 14px;
  font-size: clamp(23px, 2.2vw, 29px);
}

p {
  max-width: var(--reading-width);
  margin: 0 0 20px;
}

ul,
ol {
  max-width: var(--reading-width);
  margin: 25px 0;
  padding: 0;
}

.hero {
  background: var(--purple);
  color: #ffffff;
}

.hero-content {
  width: min(var(--content-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 65px 0;
}

.hero-content h1 {
  max-width: 760px;
  color: #ffffff;
}

.hero-content p {
  max-width: var(--reading-width);
  color: #ffffff;
  font-size: 17px;
  line-height: 1.75;
}

.bonus-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.bonus-banner {
  display: grid;
  width: min(var(--content-width), calc(100% - 40px));
  margin: 0 auto;
  grid-template-columns: 0.65fr 1fr 1fr;
  border-top: 4px solid var(--gold);
  background: var(--purple-dark);
  box-shadow: var(--shadow);
}

.bonus-part {
  display: flex;
  min-width: 0;
  min-height: 165px;
  padding: 27px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  flex-direction: column;
  justify-content: center;
}

.bonus-part:last-child {
  border-right: 0;
}

.bonus-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bonus-number {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 6vw, 85px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.bonus-amount {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
}

.bonus-spins {
  margin: 0;
  color: var(--gold);
  font-size: 18px;
  font-weight: 800;
}

.bonus-action .button {
  width: 100%;
  white-space: normal;
}

.responsible-note {
  margin: 12px 0 0;
  color: var(--gold-light);
  font-size: 12px;
}

.quick-facts {
  padding-top: 56px;
  padding-bottom: 64px;
}

.fact-grid {
  display: block;
  width: 100%;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.fact-row {
  display: grid;
  width: 100%;
  min-width: 0;
  padding: 19px 22px;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 28px;
  border-bottom: 1px solid var(--border);
}

.fact-row:last-child {
  border-bottom: 0;
}

.fact-row p {
  max-width: none;
  margin: 0;
  overflow-wrap: anywhere;
}

.fact-row p:first-child {
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fact-row p:last-child {
  color: var(--ink);
  font-weight: 700;
}

.reading-block {
  max-width: var(--reading-width);
}

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

.content-accent {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.table-wrap {
  width: 100%;
  margin: 30px 0;
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 700px;
  border: 1px solid var(--border);
  border-collapse: collapse;
  background: #ffffff;
}

tr {
  border-bottom: 1px solid var(--border);
}

tr:first-child {
  background: var(--purple);
  color: #ffffff;
}

tr:nth-child(even):not(:first-child) {
  background: var(--surface);
}

td {
  padding: 16px 18px;
  border-right: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

td:last-child {
  border-right: 0;
}

tr:first-child td {
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tr:not(:first-child) td:first-child {
  color: var(--purple);
  font-weight: 800;
}

.steps {
  display: grid;
  max-width: none;
  margin: 32px 0;
  list-style: none;
  counter-reset: steps;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 4px solid var(--purple);
  border-bottom: 1px solid var(--border);
}

.steps li {
  min-width: 0;
  padding: 22px 18px;
  border-right: 1px solid var(--border);
  counter-increment: steps;
}

.steps li:last-child {
  border-right: 0;
}

.steps li::before {
  display: block;
  margin-bottom: 18px;
  color: var(--pink);
  content: "0" counter(steps);
  font-size: 14px;
  font-weight: 900;
}

.payment-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-list {
  display: grid;
  max-width: none;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 3px solid var(--purple);
  border-left: 1px solid var(--border);
}

.feature-list li {
  position: relative;
  padding: 17px 20px 17px 50px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #ffffff;
  font-weight: 700;
}

.feature-list li::before {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--purple-dark);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.mobile-block {
  border-top: 1px solid var(--border);
  background: var(--purple);
  color: #ffffff;
}

.mobile-block h2 {
  color: #ffffff;
}

.mobile-content {
  max-width: var(--reading-width);
}

.spec-list {
  max-width: var(--reading-width);
  list-style: none;
  border-top: 1px solid var(--gold);
}

.spec-list li {
  position: relative;
  padding: 15px 0 15px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.spec-list li::before {
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--gold);
  content: "◆";
  font-size: 12px;
}

.rating-summary {
  display: flex;
  max-width: var(--reading-width);
  margin-bottom: 30px;
  padding: 20px 24px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--purple);
  color: #ffffff;
}

.rating-summary p {
  margin: 0;
  font-weight: 800;
}

.rating-stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 4px;
}

.reviews {
  max-width: 900px;
  border-top: 4px solid var(--purple);
}

.review {
  display: grid;
  padding: 32px 0;
  grid-template-columns: 65px minmax(0, 1fr);
  gap: 22px;
  border-bottom: 1px solid var(--border);
}

.review-number {
  color: var(--pink);
  font-size: 14px;
  font-weight: 900;
}

.review h3 {
  margin-top: 0;
  color: var(--purple);
}

.review-stars {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 19px;
  letter-spacing: 3px;
}

.review-experience {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.faq-container {
  max-width: 900px;
  border-top: 4px solid var(--purple);
}

.faq-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  border-bottom: 1px solid var(--border);
}

.toggle {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}

.faq-question {
  margin: 0;
  padding: 23px 25px 23px 0;
  color: var(--purple);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.4;
}

.icon {
  position: relative;
  width: 36px;
  height: 36px;
  margin-top: 19px;
  border: 2px solid var(--purple);
  border-radius: 50%;
}

.icon::before,
.icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  background: var(--purple);
  content: "";
  transform: translate(-50%, -50%);
}

.icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  display: none;
  max-width: var(--reading-width);
  margin: 0;
  padding: 0 55px 23px 0;
  grid-column: 1 / -1;
}

.toggle:checked ~ .faq-answer {
  display: block;
}

.toggle:checked ~ .icon {
  border-color: var(--pink);
  background: var(--pink);
}

.toggle:checked ~ .icon::before,
.toggle:checked ~ .icon::after {
  background: #ffffff;
}

.toggle:checked ~ .icon::after {
  opacity: 0;
}

.pros-cons,
.expert-note,
.author-block,
.comparison-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

footer {
  background: var(--purple-dark);
  color: #ffffff;
}

.footer-inner {
  display: flex;
  width: min(var(--content-width), calc(100% - 40px));
  min-height: 110px;
  margin: 0 auto;
  padding: 28px 0;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-inner p {
  margin: 0;
}

.footer-brand {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

@media (max-width: 900px) {
  .bonus-banner {
    grid-template-columns: 0.7fr 1fr;
  }

  .bonus-action {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .steps,
  .payment-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    width: min(100% - 24px, var(--content-width));
    min-height: 68px;
  }

  .logo {
    height: 48px;
    font-size: 19px;
  }

  .logo img {
    height: 48px;
  }

  .header-actions .button-secondary {
    display: none;
  }

  .header-actions .button {
    min-height: 42px;
    padding: 10px 15px;
  }

  .section {
    width: min(100% - 30px, var(--content-width));
    padding: 48px 0;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  .hero-content {
    width: min(100% - 30px, var(--content-width));
    padding: 48px 0;
  }

  .hero-content p {
    font-size: 16px;
  }

  .bonus-section {
    padding: 30px 0;
  }

  .bonus-banner {
    width: min(100% - 30px, var(--content-width));
    grid-template-columns: 1fr;
  }

  .bonus-part {
    min-height: auto;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .bonus-part:last-child {
    border-bottom: 0;
  }

  .bonus-action {
    grid-column: auto;
  }

  .bonus-number {
    font-size: 65px;
  }

  .quick-facts {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .fact-row {
    padding: 17px 19px;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .steps,
  .payment-steps,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .steps li {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .rating-summary,
  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .review {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding-right: 12px;
    font-size: 17px;
  }

  .faq-answer {
    padding-right: 0;
  }

  .footer-inner {
    width: min(100% - 30px, var(--content-width));
  }
}

body > header,
body > section.section,
body > footer {
  width: min(var(--content-width), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}
body > section.section {
  padding-top: 48px;
  padding-bottom: 48px;
}
body > section.section[data-layout~="hero"] {
  width: 100%;
  background: var(--purple);
  color: #fff;
}
body > section.section[data-layout~="bonus-section"] {
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
body > section.section[data-layout~="content-accent"] {
  width: 100%;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
body > section.section[data-layout~="mobile-block"] {
  width: 100%;
  border-top: 1px solid var(--border);
  background: var(--purple);
  color: #fff;
}
