:root {
  --bg: #071e31;
  --surface: #0b2b46;
  --surface-alt: #123b5e;
  --text: #f7ead0;
  --muted: #c5b99f;
  --accent: #c89b55;
  --accent-dark: #7b5428;
  --border: rgba(200, 155, 85, 0.55);
  --radius: 18px;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(25, 82, 121, 0.5), transparent 32%),
    linear-gradient(180deg, #08243b 0%, #061a2b 48%, #061522 100%);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
}

header {
  background: linear-gradient(180deg, #0c304d 0%, #09263f 100%);
  border-bottom: 2px solid var(--accent-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  height: 58px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 58px;
}

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

.button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 12px;
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, #2b5478 0%, #173a5d 48%, #0d2b47 100%);
  color: #fff3d7;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.4px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(255, 235, 180, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.28);
}

.button:last-child,
.button-link {
  background: linear-gradient(180deg, #395f84 0%, #21486d 45%, #123657 100%);
}

.section {
  max-width: 1320px;
  margin: 26px auto;
  padding: 34px;
  background: linear-gradient(
    180deg,
    rgba(14, 48, 76, 0.96),
    rgba(7, 31, 50, 0.96)
  );
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  line-height: 1.2;
  color: #f8e6bd;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.36);
}

h1 {
  font-size: clamp(36px, 5vw, 62px);
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-top: 4px;
}

h3 {
  font-size: clamp(22px, 2vw, 30px);
}

h4 {
  font-size: 20px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

ul,
ol {
  margin: 16px 0 20px;
  padding-left: 24px;
  color: var(--muted);
}

li {
  margin: 8px 0;
}

.hero-intro {
  max-width: 980px;
  margin: 0 auto 24px;
  text-align: center;
}

.hero-bonus {
  max-width: 760px;
  margin: 26px auto 30px;
  padding: 28px;
  border-radius: 22px;
  border: 2px solid var(--border);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(200, 155, 85, 0.28),
      transparent 36%
    ),
    linear-gradient(135deg, rgba(42, 14, 20, 0.82), rgba(8, 28, 46, 0.96));
  text-align: center;
  box-shadow: var(--shadow);
}

.hero-bonus p {
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.25;
  font-weight: 900;
  color: #fff3d7;
  margin-bottom: 22px;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.34);
}

.section-label {
  margin: 24px 0 14px;
  color: #f8e6bd;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.36);
}

.notice-box {
  padding: 22px;
  margin: 22px 0;
  border-radius: 16px;
  border: 1px solid rgba(200, 155, 85, 0.5);
  background: rgba(200, 155, 85, 0.08);
}

.notice-box p:last-child {
  margin-bottom: 0;
}

.app-text {
  margin-top: 16px;
}

.game-highlight {
  margin: 20px 0;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(200, 155, 85, 0.52);
  background: linear-gradient(
    180deg,
    rgba(18, 59, 94, 0.88),
    rgba(7, 30, 49, 0.9)
  );
}

.game-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #071e31;
  background: linear-gradient(180deg, #e4c177, #b8873f);
  border-radius: 10px;
  padding: 7px 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.3px;
}

.game-highlight p {
  margin-bottom: 0;
  color: #f7ead0;
  font-weight: 700;
}

.promo-code {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 10px;
  background: linear-gradient(180deg, #e4c177, #b8873f);
  color: #071e31;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 22px 0;
}

.review-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(200, 155, 85, 0.4);
  background: linear-gradient(
    180deg,
    rgba(18, 59, 94, 0.78),
    rgba(8, 35, 58, 0.82)
  );
}

.review-card h3 {
  text-align: left;
  margin-bottom: 12px;
}

.geo {
  color: var(--accent);
  font-size: 0.92em;
  margin-right: 6px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 22px 0;
  border-radius: 16px;
  border: 1px solid var(--border);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(6, 25, 40, 0.82);
}

tr {
  border-bottom: 1px solid rgba(200, 155, 85, 0.24);
}

tr:last-child {
  border-bottom: 0;
}

td {
  padding: 14px 16px;
  color: var(--muted);
  vertical-align: top;
}

td:first-child {
  color: #f8e6bd;
  font-weight: 800;
}

.comparison-table tr:first-child td {
  background: linear-gradient(180deg, #d7b46d, #9b6c34);
  color: #071e31;
  font-weight: 900;
  font-family: Arial, Helvetica, sans-serif;
}

.steps-list {
  list-style: none;
  counter-reset: step;
  padding: 0;
}

.steps-list li {
  counter-increment: step;
  position: relative;
  padding: 16px 18px 16px 58px;
  border-radius: 14px;
  border: 1px solid rgba(200, 155, 85, 0.34);
  background: rgba(255, 255, 255, 0.045);
}

.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #e4c177, #b8873f);
  color: #071e31;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.faq-container {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(200, 155, 85, 0.45);
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
  padding: 0 20px;
  margin-bottom: 0;
}

.toggle {
  display: none;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.icon {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
}


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

.faq-question::after {
  content: "+";
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.2s;
}

.faq-item.active .faq-question::after {
  content: "−";
}

footer {
  margin-top: 34px;
  background: #061522;
  border-top: 2px solid var(--border);
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 30px 22px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.footer-main {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  gap: 12px;
}

.footer-brand {
  color: #f8e6bd;
  font-size: 22px;
  font-weight: 900;
  text-align: left;
}

.footer-contacts {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 8px;
  justify-self: end;
  justify-content: end;
  color: var(--muted);
  text-align: right;
  max-width: 420px;
}

.footer-contacts strong {
  color: #f8e6bd;
  font-size: 20px;
}

.footer-links,
.footer-note,
.responsible-note {
  color: var(--muted);
  text-align: left;
}

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

  h1,
  h2,
  h3 {
    text-align: center;
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .button,
  .button-link {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .section {
    margin: 18px 12px;
    padding: 22px 16px;
  }

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

  .review-card h3 {
    text-align: center;
  }

  table {
    width: 100%;
    min-width: 720px;
  }

  footer,
  .footer-inner,
  .footer-brand,
  .footer-links,
  .footer-note,
  .responsible-note,
  .footer-contacts {
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-contacts {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    justify-content: center;
  }

  .footer-main {
    grid-column: 1;
    grid-row: 1;
  }
}
