:root {
  --gold-primary: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #8B6914;
  --crimson: #8B1A1A;
  --crimson-light: #B22020;
  --deep-black: #0A0A0A;
  --rich-dark: #111111;
  --dark-surface: #1A1A1A;
  --mid-surface: #222222;
  --card-bg: #1E1E1E;
  --border-gold: rgba(201,168,76,0.3);
  --text-primary: #F0E6CC;
  --text-secondary: #B8A88A;
  --text-muted: #7A7060;
  --white: #FFFFFF;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-gold: 0 0 20px rgba(201,168,76,0.2);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: var(--deep-black);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
}

.site-header {
  background: linear-gradient(135deg, var(--deep-black) 0%, var(--rich-dark) 50%, #1C1200 100%);
  border-bottom: 1px solid var(--border-gold);
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.logo-crown {
  font-size: 1.5rem;
  color: var(--gold-primary);
  line-height: 1;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.03em;
  font-family: 'Georgia', serif;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.header-badge {
  font-size: 0.7rem;
  font-family: 'Arial', sans-serif;
  color: var(--text-muted);
  border: 1px solid var(--border-gold);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.bonus-banner {
  padding: 0;
}

.bonus-banner--top {
  background: linear-gradient(135deg, #6B0000 0%, #8B1A1A 40%, #5A0A00 100%);
  border-bottom: 2px solid var(--gold-dark);
}

.bonus-banner--mid {
  background: linear-gradient(135deg, #0D0D00 0%, #1A1500 50%, #0A0800 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  margin: 48px 0;
}

.banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-content {
  flex: 1;
}

.banner-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  font-family: 'Arial', sans-serif;
  margin-bottom: 6px;
  opacity: 0.9;
}

.banner-headline {
  font-size: 1.6rem;
  color: var(--white);
  font-family: 'Georgia', serif;
  line-height: 1.2;
  margin-bottom: 6px;
}

.banner-headline strong {
  color: var(--gold-light);
}

.banner-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-family: 'Arial', sans-serif;
}

.btn-cta {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-cta--primary {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  color: #1A0A00;
}

.btn-cta--secondary {
  background: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
}

.btn-cta--secondary:hover {
  background: rgba(201,168,76,0.1);
}

.main-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrap {
  padding: 40px 0 60px;
}

.review-article {
  max-width: 800px;
  margin: 0 auto;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: 'Georgia', serif;
  color: var(--gold-primary);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(201,168,76,0.3);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-family: 'Georgia', serif;
  color: var(--text-primary);
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-gold);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.1rem;
  font-family: 'Georgia', serif;
  color: var(--gold-light);
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.75;
  font-family: 'Georgia', serif;
}

.intro-text {
  font-size: 1.1rem;
  color: var(--text-primary);
  border-left: 3px solid var(--gold-primary);
  padding-left: 20px;
  margin: 24px 0 32px;
  font-style: italic;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: var(--dark-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 32px 0 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 8px;
  border-right: 1px solid var(--border-gold);
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  font-size: 1.6rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.bonus-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
}

.data-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
}

.data-table thead tr {
  background: linear-gradient(135deg, var(--gold-dark) 0%, #6B5010 100%);
}

.data-table th {
  padding: 12px 16px;
  text-align: left;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  white-space: nowrap;
}

.data-table td {
  padding: 11px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.data-table tbody tr:nth-child(even) {
  background: rgba(201,168,76,0.04);
}

.data-table tbody tr:hover {
  background: rgba(201,168,76,0.08);
}

.data-table tfoot tr {
  background: rgba(201,168,76,0.06);
  border-top: 2px solid var(--border-gold);
}

.data-table tfoot td {
  color: var(--text-primary);
  padding: 12px 16px;
}

.cards-section {
  max-width: 800px;
  margin: 56px auto 0;
}

.cards-section h2 {
  text-align: center;
  border-bottom: none;
  margin-bottom: 28px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.card-icon {
  font-size: 1.8rem;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-primary);
}

.card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 0;
}

.faq-section {
  max-width: 800px;
  margin: 56px auto 0;
}

.faq-section h2 {
  text-align: left;
  max-width: none;
}

.faq-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  position: relative;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--card-bg);
}

.faq-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  user-select: none;
  gap: 12px;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold-primary);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s ease;
  font-weight: 300;
  font-family: 'Arial', sans-serif;
}

.faq-toggle:checked + .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 600px;
}

.faq-answer p {
  padding: 0 20px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.7;
  font-family: 'Arial', sans-serif;
}

.faq-item:has(.faq-toggle:checked) {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.03);
}

.disclaimer-section {
  max-width: 800px;
  margin: 48px auto 0;
  padding: 20px 24px;
  background: var(--dark-surface);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--crimson-light);
}

.disclaimer-section p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
  font-family: 'Arial', sans-serif;
}

.disclaimer-section strong {
  color: var(--text-secondary);
}

.site-footer {
  background: var(--rich-dark);
  border-top: 1px solid var(--border-gold);
  padding: 36px 20px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo .logo-crown {
  font-size: 1.2rem;
  color: var(--gold-primary);
}

.footer-logo .logo-text {
  font-size: 1rem;
  color: var(--gold-primary);
  font-family: 'Georgia', serif;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.75rem;
  font-family: 'Arial', sans-serif;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

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

  .banner-headline {
    font-size: 1.3rem;
  }

  .btn-cta {
    width: 100%;
    max-width: 340px;
    padding: 16px 20px;
  }

  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 16px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-gold);
    padding: 14px 8px;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border-gold);
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.2rem;
    margin-top: 36px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-article {
    max-width: 100%;
  }

  .cards-section {
    max-width: 100%;
  }

  .faq-section {
    max-width: 100%;
  }

  .disclaimer-section {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1rem;
  }

  .banner-headline {
    font-size: 1.15rem;
  }

  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-value {
    font-size: 1.3rem;
  }

  .data-table {
    font-size: 0.8rem;
  }

  .data-table th,
  .data-table td {
    padding: 9px 10px;
  }

  .card {
    padding: 20px 18px;
  }

  .faq-question {
    font-size: 0.88rem;
    padding: 15px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
