:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-pale: #F5E6B8;
  --navy: #0B1120;
  --navy-mid: #131D33;
  --navy-card: #1A2640;
  --navy-border: #243050;
  --white: #FFFFFF;
  --off-white: #EEF0F5;
  --text-body: #C8D0E0;
  --text-muted: #8A95AA;
  --green: #2ECC71;
  --red: #E74C3C;

  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
}

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

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

.site-header {
  background: var(--navy-mid);
  border-bottom: 2px solid var(--gold);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--gold);
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.header-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.bonus-banner {
  background: linear-gradient(100deg, #0B1120 0%, #1A2640 40%, #0B1120 100%);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 22px 0;
  position: relative;
  overflow: hidden;
}
.bonus-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.bonus-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.bonus-copy {}
.bonus-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.bonus-headline {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--white);
  font-weight: bold;
  line-height: 1.2;
}
.bonus-headline em {
  color: var(--gold-light);
  font-style: normal;
}
.bonus-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 18px rgba(201,168,76,0.35);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.5);
  color: var(--navy);
}
.btn-cta:active { transform: translateY(0); }

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

h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 12px;
}
h1 .gold { color: var(--gold); }

.intro-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--navy-border);
}
.meta-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.meta-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.meta-badge.warn .dot { background: var(--gold); }

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--white);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--navy-border);
  position: relative;
}
h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 48px;
  height: 2px;
  background: var(--gold);
}

h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-top: 28px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 16px;
  color: var(--text-body);
}

.highlight-box {
  background: var(--navy-card);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.highlight-box p:last-child { margin-bottom: 0; }

.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.score-item {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.score-item .score-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: bold;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.score-item .score-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border-radius: var(--radius);
  border: 1px solid var(--navy-border);
}
table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
thead tr {
  background: var(--navy-card);
}
thead th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid var(--navy-border);
}
tbody tr {
  border-bottom: 1px solid var(--navy-border);
  transition: background 0.12s;
}
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(255,255,255,0.03); }
tbody td {
  padding: 11px 16px;
  color: var(--text-body);
  vertical-align: top;
}
tbody td:first-child { color: var(--off-white); font-weight: 500; }
.td-good { color: var(--green) !important; }
.td-warn { color: var(--gold) !important; }

ul, ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 6px;
  color: var(--text-body);
}
ul li::marker { color: var(--gold); }

.cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}
.card p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
.pros, .cons {
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.pros { border-top: 3px solid var(--green); }
.cons { border-top: 3px solid var(--red); }
.pros-title, .cons-title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.pros-title { color: var(--green); }
.cons-title { color: var(--red); }
.pros ul, .cons ul {
  padding-left: 18px;
  margin-bottom: 0;
}
.pros ul li::marker { color: var(--green); }
.cons ul li::marker { color: var(--red); }

.bonus-banner-2 {
  background: linear-gradient(100deg, #0F1829 0%, #1E2F4F 50%, #0F1829 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 28px 0;
  margin: 48px 0 0;
  position: relative;
  overflow: hidden;
}
.bonus-banner-2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.bonus-banner-2 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.b2-text .b2-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.b2-text .b2-headline {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  line-height: 1.2;
}
.b2-text .b2-headline strong { color: var(--gold-light); }
.b2-text .b2-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 6px;
}
.btn-cta-outline {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 13px 30px;
  border-radius: var(--radius);
  cursor: pointer;
  background: transparent;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.btn-cta-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.faq-section {
  padding: 48px 0;
}
.faq-section h2 {
  margin-top: 0;
}
.faq-list {
  margin-top: 24px;
}
.faq-item {
  border-bottom: 1px solid var(--navy-border);
}
.faq-item input[type="checkbox"] {
  display: none;
}
.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  cursor: pointer;
  font-weight: 600;
  color: var(--off-white);
  font-size: 0.97rem;
  user-select: none;
  gap: 12px;
}
.faq-label .faq-arrow {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: background 0.15s;
}
.faq-label .faq-arrow::before,
.faq-label .faq-arrow::after {
  content: '';
  position: absolute;
  background: var(--gold);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s;
}
.faq-label .faq-arrow::before {
  width: 10px;
  height: 1.5px;
}
.faq-label .faq-arrow::after {
  width: 1.5px;
  height: 10px;
}
.faq-item input:checked ~ .faq-label .faq-arrow::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item input:checked ~ .faq-body {
  max-height: 500px;
}
.faq-body-inner {
  padding: 0 4px 20px;
  color: var(--text-body);
  font-size: 0.93rem;
  line-height: 1.72;
}
.faq-body-inner p:last-child { margin-bottom: 0; }

.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  padding: 32px 0 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-disclaimer {
  line-height: 1.65;
  max-width: 800px;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid var(--navy-border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 680px) {
  .bonus-banner .container,
  .bonus-banner-2 .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .bonus-headline { font-size: 1.25rem; }
  .b2-text .b2-headline { font-size: 1.3rem; }
  .btn-cta, .btn-cta-outline { width: 100%; text-align: center; }
  .cards-row { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .score-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 1.7rem; }
  .intro-meta { gap: 12px; }
  .site-header .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .score-grid { grid-template-columns: 1fr 1fr; }
}
