:root {
  --color-bg: #0d0d0d;
  --color-bg-alt: #1a1a1a;
  --color-bg-card: #222222;
  --color-bg-header: #111111;
  --color-primary: #f5c518;
  --color-primary-hover: #ffd740;
  --color-primary-dark: #c9a000;
  --color-text: #e0e0e0;
  --color-text-muted: #999999;
  --color-text-heading: #ffffff;
  --color-border: #333333;
  --color-border-light: #444444;
  --color-success: #4caf50;
  --color-danger: #e74c3c;
  --color-info: #3498db;
  --color-purple: #7c4dff;
  --color-link: #f5c518;
  --color-link-hover: #ffd740;
  --font-heading: 'Barlow', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --max-width: 1100px;
  --header-height: 64px;
  --radius: 8px;
  --radius-sm: 4px;
  --shadow: 0 2px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }

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

img { max-width: 100%; height: auto; display: block; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2rem; margin-bottom: 1rem; }
h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.2rem; margin-top: 1.8rem; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; }

ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg-header);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.header-nav a {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--color-primary);
}

.header-cta {
  display: inline-block;
  background: var(--color-primary);
  color: #000;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--color-primary-hover);
  color: #000;
  transform: translateY(-1px);
}

/* HAMBURGER */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 999;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--color-bg-alt);
  z-index: 1001;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--color-border);
  display: block;
}

.mobile-menu a:hover { color: var(--color-primary); }

.mobile-menu .header-cta {
  margin-top: 1.5rem;
  text-align: center;
  display: block;
}

.mobile-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

/* MAIN CONTENT */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

/* BREADCRUMBS */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  padding: 0;
}

.breadcrumbs a { color: var(--color-text-muted); }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs span { margin: 0 0.4rem; }

/* VERDICT BOX */
.verdict-box {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.verdict-box .rating {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.verdict-box .rating small {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.verdict-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.verdict-pros-cons h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.verdict-pros h4 { color: var(--color-success); }
.verdict-cons h4 { color: var(--color-danger); }

.verdict-pros-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.verdict-pros-cons li {
  font-size: 0.9rem;
  padding: 0.25rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.verdict-pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.verdict-cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--color-danger);
  font-weight: 700;
}

/* CTA BUTTONS */
.cta-button {
  display: inline-block;
  background: var(--color-primary);
  color: #000;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.25);
}

.cta-button:hover {
  background: var(--color-primary-hover);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.35);
}

.cta-wrap { text-align: center; margin: 2rem 0; }

/* INFO BOXES / CARDS */
.info-box {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.info-box.highlight {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, rgba(245,197,24,0.06), transparent);
}

/* BONUS TABLE */
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
}

.bonus-table th,
.bonus-table td {
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.bonus-table th {
  background: var(--color-bg-card);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.bonus-table tr:hover td {
  background: rgba(245,197,24,0.04);
}

/* STEPS */
.steps { counter-reset: step-counter; margin: 1.5rem 0; }
.step {
  position: relative;
  padding-left: 3.2rem;
  margin-bottom: 1.2rem;
  counter-increment: step-counter;
}
.step::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.2rem;
  height: 2.2rem;
  background: var(--color-primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.step h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.step p { margin: 0; font-size: 0.95rem; }

/* FIGURE / IMAGES */
figure {
  margin: 1.5rem 0;
  text-align: center;
}

figure img {
  width: 90%;
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

figcaption {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

/* FAQ */
.faq-section { margin: 2.5rem 0 1.5rem; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--color-bg-card);
  border: none;
  color: var(--color-text-heading);
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  transition: background 0.2s;
}

.faq-question:hover { background: var(--color-bg-alt); }

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  display: none;
  padding: 0 1.2rem 1rem;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg-card);
}

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

/* FOOTER */
.site-footer {
  background: var(--color-bg-header);
  border-top: 1px solid var(--color-border);
  padding: 2.5rem 1.5rem 1.5rem;
  margin-top: 3rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--color-primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}

.footer-col a {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  padding: 0.25rem 0;
}

.footer-col a:hover { color: var(--color-primary); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.footer-badge {
  display: inline-block;
  border: 2px solid var(--color-danger);
  color: var(--color-danger);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
}

/* TERMS DISCLAIMER */
.terms-disclaimer {
  background: rgba(245,197,24,0.08);
  border-left: 3px solid var(--color-primary);
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 1.5rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* 404 PAGE */
.page-404 {
  text-align: center;
  padding: 4rem 1.5rem;
}

.page-404 h1 {
  font-size: 5rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.page-404 p { font-size: 1.1rem; margin-bottom: 2rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }

  .verdict-pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  figure img { width: 100%; }

  .bonus-table { font-size: 0.85rem; }
  .bonus-table th, .bonus-table td { padding: 0.5rem 0.6rem; }
}

@media (max-width: 480px) {
  .container { padding: 1.5rem 1rem 2.5rem; }
  .cta-button { width: 100%; display: block; }
}
