:root {
  --background: #080b14;
  --header: rgba(8, 11, 20, 0.96);
  --btn: #c9920a;
  --btn-hover: #f0b429;
  --promo: rgba(18, 14, 38, 0.88);
  --table: rgba(22, 18, 48, 0.92);
  --white: #e8deff;
  --gold: #d4a017;
  --gold-light: #f5c842;
  --card-bg: rgba(255, 255, 255, 0.04);
  --border-gold: rgba(212, 160, 23, 0.35);
  --border-radius: 16px;
}

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

body {
  font-family: sans-serif;
  line-height: 1.65;
  color: var(--white);
  background-color: var(--background);
  background-image: url(images/layer.webp);
  background-repeat: no-repeat;
  background-size: 100% auto;
}

h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 0%, #f5c842 60%, #d4a017 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  color: var(--gold-light);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

h3 {
  border-left: 3px solid var(--gold);
  padding-left: 10px;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

p {
  margin-bottom: 14px;
}

ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

ul li {
  margin-bottom: 6px;
}

ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

ol li {
  margin-bottom: 8px;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}

a {
  color: var(--gold-light);
  text-decoration: none;
}

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

.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--btn) 0%, var(--gold-light) 100%);
  color: #0a0d16;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(212, 160, 23, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 160, 23, 0.55);
  color: #0a0d16;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--btn-hover) 100%);
}

.outline-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.outline-btn:hover {
  background: rgba(212, 160, 23, 0.12);
  color: var(--gold-light);
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
}

.header-inner {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.header-inner a:first-child img {
  margin: 0;
}

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

.wraper {
  max-width: 80%;
  margin: 0 auto;
}

.flex {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.flex-content {
  width: 50%;
}

.hero-section {
  padding: 48px 40px;
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(135deg, rgba(18, 14, 38, 0.92), rgba(30, 18, 8, 0.85));
  margin: 36px 0;
}

.hero-section img {
  margin: 0;
}

.section-table-wrapper {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.facts-table,
.bonus-table,
.payments-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 3px;
  margin-bottom: 20px;
}

.facts-table th,
.facts-table td,
.bonus-table th,
.bonus-table td,
.payments-table th,
.payments-table td {
  padding: 12px 16px;
  text-align: left;
  background: var(--table);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.facts-table th:first-child,
.facts-table td:first-child,
.bonus-table th:first-child,
.bonus-table td:first-child,
.payments-table th:first-child,
.payments-table td:first-child {
  border-left: 1px solid var(--border-gold);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.facts-table th:last-child,
.facts-table td:last-child,
.bonus-table th:last-child,
.bonus-table td:last-child,
.payments-table th:last-child,
.payments-table td:last-child {
  border-right: 1px solid var(--border-gold);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.facts-table th,
.bonus-table th,
.payments-table th {
  color: var(--gold-light);
  font-weight: 600;
  background: rgba(30, 22, 60, 0.96);
}

.facts-table td:first-child {
  color: var(--gold-light);
  font-weight: 500;
  width: 36%;
}

.facts-table tbody tr:hover td,
.bonus-table tbody tr:hover td,
.payments-table tbody tr:hover td {
  background: rgba(212, 160, 23, 0.07);
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius);
  padding: 18px 20px;
  margin-bottom: 14px;
}

.review-card::before {
  content: "★★★★★";
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.review-card p {
  margin-bottom: 0;
  margin-top: 8px;
}

.faq-section {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-section h2 {
  margin-bottom: 24px;
}

.qa-scontent-title {
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius);
  padding: 16px 24px;
  background: var(--card-bg);
  transition: border-color 0.25s;
  margin-bottom: 12px;
  cursor: pointer;
}

.qa-scontent-title:hover {
  border-color: var(--gold);
}

.qa-scontent-title.open {
  border-color: var(--gold);
}

.qa-scontent-title h3 {
  margin-bottom: 0;
  font-size: 1rem;
  transition: color 0.2s;
}

.qa-answaer {
  padding-top: 14px;
  color: var(--white);
  font-size: 0.95rem;
  display: none;
}

.qa-answaer p {
  margin-bottom: 0;
}

.qa-scontent-title.open .qa-answaer {
  display: block;
}

.promo {
  background: var(--promo);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius);
  padding: 48px 40px;
  text-align: center;
  margin: 36px 0;
}

.promo h2 {
  margin-bottom: 16px;
}

.promo p {
  max-width: 680px;
  margin: 0 auto 24px;
}

footer {
  border-top: 1px solid var(--border-gold);
  padding: 32px 0 40px;
}

.footer-inner {
  max-width: 80%;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  color: rgba(232, 222, 255, 0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(232, 222, 255, 0.4);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .flex {
    flex-direction: column;
  }

  .flex-content {
    width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .header-inner,
  .wraper,
  .footer-inner {
    max-width: 92%;
  }
}

@media (max-width: 768px) {
  .facts-table th,
  .facts-table td,
  .bonus-table th,
  .bonus-table td,
  .payments-table th,
  .payments-table td {
    padding: 9px 12px;
    font-size: 0.88rem;
  }

  .hero-section {
    padding: 32px 20px;
  }

  h1 {
    font-size: 1.7rem;
  }

  .promo {
    padding: 36px 20px;
  }
}

@media (max-width: 480px) {
  .hero-section .cta-btn {
    width: 100%;
    text-align: center;
    display: block;
  }

  .hero-section {
    padding: 24px 16px;
  }

  .header-nav .outline-btn {
    display: none;
  }
}
