@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dim: #9A7A34;
  --bg-dark: #0A0A0F;
  --bg-card: #13131C;
  --bg-surface: #1A1A28;
  --bg-surface2: #22223A;
  --text-primary: #F0EDE6;
  --text-secondary: #A9A6A0;
  --text-muted: #5E5C5A;
  --red-accent: #D44B3A;
  --green-accent: #3AB87A;
  --border: rgba(201, 168, 76, 0.18);
  --radius: 10px;
  --radius-lg: 16px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 20px rgba(201, 168, 76, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--gold-light);
}

ul {
  padding-left: 1.4em;
}
li {
  margin-bottom: 0.3em;
}


.site-header {
  background: rgba(10, 10, 15, 0.97);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-v {
  color: var(--gold);
}
.logo-text {
  color: var(--text-primary);
}

.header-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.header-nav a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.header-nav a:hover {
  color: var(--gold);
}


.bonus-banner {
  background: linear-gradient(135deg, #1A1408 0%, #2A1F08 40%, #1A1408 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold-dim);
  padding: 20px 0;
}

.mid-banner {
  margin: 48px 0;
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.banner-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.banner-text strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
}

.btn-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold) 100%);
  color: #0A0A0F;
  border: none;
  border-radius: 50px;
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 16px rgba(201, 168, 76, 0.35);
  flex-shrink: 0;
}
.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.5);
}
.btn-cta:active {
  transform: translateY(0);
}


.main-content {
  padding: 48px 0;
}

.review-article {
  margin-bottom: 48px;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: 28px;
  margin-bottom: 12px;
}

p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}
p:last-child {
  margin-bottom: 0;
}


.rating-block {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 32px;
  width: fit-content;
  box-shadow: var(--shadow-gold);
}
.rating-stars {
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 2px;
}
.star-half {
  opacity: 0.4;
}
.rating-score {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.rating-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


.quick-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.fact-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fact-icon {
  font-size: 1.4rem;
}
.fact-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.fact-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}


.cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: var(--gold-dim);
  box-shadow: var(--shadow-gold);
}
.card-icon {
  font-size: 2rem;
}
.card h3 {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--text-primary);
  font-size: 1rem;
}
.card p {
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}
.btn-card {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}
.btn-card:hover {
  background: var(--gold);
  color: #0A0A0F;
  border-color: var(--gold);
}


.table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.payments-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 0.875rem;
}
.payments-table th {
  background: var(--bg-surface2);
  color: var(--gold);
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}
.payments-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  color: var(--text-secondary);
}
.payments-table tr:last-child td {
  border-bottom: none;
}
.payments-table tr:hover td {
  background: var(--bg-surface);
  color: var(--text-primary);
}


.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.pros, .cons {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
}
.pros {
  border-left: 3px solid var(--green-accent);
}
.cons {
  border-left: 3px solid var(--red-accent);
}
.pros h3 {
  color: var(--green-accent);
  margin-top: 0;
}
.cons h3 {
  color: var(--red-accent);
  margin-top: 0;
}
.pros ul, .cons ul {
  color: var(--text-secondary);
  font-size: 0.9rem;
}


.faq-section {
  margin: 48px 0;
}
.faq-section h2 {
  margin-top: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-toggle {
  display: none;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-card);
  transition: background 0.2s, color 0.2s;
  user-select: none;
}
.faq-question:hover {
  background: var(--bg-surface);
  color: var(--gold-light);
}

.faq-arrow {
  font-size: 1rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--bg-surface);
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}
.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.faq-toggle:checked + .faq-question {
  color: var(--gold);
  background: var(--bg-surface2);
}
.faq-toggle:checked + .faq-question .faq-arrow {
  transform: rotate(180deg);
}
.faq-toggle:checked ~ .faq-answer {
  max-height: 400px;
  padding: 18px 22px;
}


.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
}
.footer-disclaimer {
  max-width: 640px;
}
.footer-disclaimer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.footer-copy p {
  font-size: 0.8rem;
  color: var(--text-muted);
}


@media (max-width: 680px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .header-nav {
    gap: 16px;
  }

  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-cta {
    width: 100%;
    text-align: center;
  }

  h1 {
    font-size: 2.6rem;
  }

  .quick-facts {
    grid-template-columns: 1fr 1fr;
  }

  .cards-row {
    grid-template-columns: 1fr;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .rating-block {
    flex-wrap: wrap;
    width: 100%;
  }

  .faq-question {
    font-size: 0.88rem;
    padding: 15px 16px;
  }
  .faq-answer {
    padding: 0 16px;
  }
  .faq-toggle:checked ~ .faq-answer {
    padding: 14px 16px;
  }
}

@media (max-width: 400px) {
  .quick-facts {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 2.2rem;
  }
  .banner-text strong {
    font-size: 1.1rem;
  }
}
