:root {
  --color-primary: #c8a400;
  --color-primary-dark: #a07c00;
  --color-secondary: #1a0a00;
  --color-bg: #0d0600;
  --color-bg-card: #1e1000;
  --color-bg-header: #140900;
  --color-text: #f0e6c8;
  --color-text-muted: #b09060;
  --color-accent: #ff6a00;
  --color-accent2: #e8b800;
  --color-border: #3a2000;
  --color-banner-bg: linear-gradient(135deg, #2a1400 0%, #1a0900 50%, #2a1000 100%);
  --color-btn: #c8a400;
  --color-btn-hover: #ff6a00;
  --font-main: 'Segoe UI', Arial, sans-serif;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(200,164,0,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

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

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--color-bg-header);
  border-bottom: 2px solid var(--color-primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(200,164,0,0.15);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #c8a400, #ff6a00);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: #0d0600;
  font-family: var(--font-heading);
  letter-spacing: -1px;
  box-shadow: 0 2px 10px rgba(200,164,0,0.4);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}
.logo-text span { color: var(--color-accent); }

/* ===== NAVIGATION ===== */
.main-nav { display: flex; flex-wrap: wrap; gap: 4px; }

.main-nav a {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  border: 1px solid transparent;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(200,164,0,0.15);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 1.3rem;
  cursor: pointer;
}

/* ===== BONUS BANNER ===== */
.bonus-banner {
  background: var(--color-banner-bg);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius);
  padding: 24px 20px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 4px 32px rgba(200,164,0,0.18);
  position: relative;
  overflow: hidden;
}

.bonus-banner::before {
  content: '🐉';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
  opacity: 0.08;
  pointer-events: none;
}

.bonus-banner-text h2,
.bonus-banner-text .banner-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.bonus-banner-text p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 500px;
}

.bonus-banner-text .bonus-amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-accent);
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #0d0600;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(200,164,0,0.35);
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,106,0,0.45);
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  color: #0d0600;
}

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

.btn-secondary:hover {
  background: var(--color-primary);
  color: #0d0600;
}

/* ===== MAIN CONTENT ===== */
main { padding: 20px 0 40px; }

.content-section { margin-bottom: 40px; }

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 14px;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--color-accent2);
  margin: 36px 0 14px;
  line-height: 1.3;
}

h3 {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--color-primary);
  margin: 20px 0 8px;
  font-family: var(--font-main);
  font-weight: 700;
}

p { margin-bottom: 14px; }

ul, ol {
  margin: 10px 0 16px 20px;
}

ul li, ol li { margin-bottom: 8px; }

strong { color: var(--color-accent2); }

/* ===== RATING BLOCK ===== */
.rating-block {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rating-score {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
}

.rating-stars { color: var(--color-primary); font-size: 1.4rem; }
.rating-label { color: var(--color-text-muted); font-size: 0.9rem; }

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.15s;
}

.card:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.card-icon { font-size: 2rem; margin-bottom: 10px; }

.card h3 {
  margin-top: 0;
  font-size: 1.05rem;
  color: var(--color-primary);
}

.card p { font-size: 0.92rem; color: var(--color-text-muted); }

/* ===== TABLE ===== */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 16px 0; border-radius: var(--radius); }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 420px;
}

thead tr { background: linear-gradient(90deg, #2a1400, #3a1c00); }

th {
  color: var(--color-primary);
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--color-primary);
  white-space: nowrap;
}

td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  vertical-align: top;
}

tbody tr:nth-child(even) { background: rgba(255,255,255,0.03); }
tbody tr:hover { background: rgba(200,164,0,0.07); }

/* ===== FAQ ACCORDION (CSS only) ===== */
.faq-section { margin: 40px 0; }

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--color-bg-card);
  cursor: pointer;
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.97rem;
  transition: background 0.2s, color 0.2s;
  user-select: none;
}

.faq-question:hover { background: rgba(200,164,0,0.1); color: var(--color-primary); }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-primary);
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-left: 10px;
}

.faq-item input[type="checkbox"]:checked + .faq-question { background: rgba(200,164,0,0.12); color: var(--color-primary); }
.faq-item input[type="checkbox"]:checked + .faq-question::after { content: '−'; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  background: var(--color-bg);
  padding: 0 20px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 600px;
  padding: 16px 20px;
}

/* ===== CHECKLIST ===== */
.checklist {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 16px 0;
}

.checklist h3 {
  margin-top: 0;
  color: var(--color-accent2);
  margin-bottom: 12px;
}

.checklist ol,
.checklist ul {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}

.checklist ol li,
.checklist ul li {
  padding: 8px 0 8px 32px;
  position: relative;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.95rem;
}

.checklist ol li:last-child,
.checklist ul li:last-child { border-bottom: none; }

.checklist ol { counter-reset: check-counter; }

.checklist ol li::before {
  counter-increment: check-counter;
  content: counter(check-counter);
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #0d0600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 22px;
  text-align: center;
}

.checklist ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--color-primary);
  font-size: 1rem;
}

/* ===== INFO BLOCK ===== */
.info-box {
  background: rgba(200,164,0,0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 0.95rem;
  color: var(--color-text);
}

.info-box.warning { border-left-color: var(--color-accent); background: rgba(255,106,0,0.07); }

/* ===== PROS CONS ===== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}

.pros, .cons {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--color-border);
}

.pros { border-top: 3px solid #4caf50; }
.cons { border-top: 3px solid #f44336; }

.pros h3 { color: #4caf50; margin-top: 0; }
.cons h3 { color: #f44336; margin-top: 0; }

.pros ul li::marker { color: #4caf50; }
.cons ul li::marker { color: #f44336; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-bg-header);
  border-top: 2px solid var(--color-primary);
  padding: 40px 0 24px;
  margin-top: 60px;
}

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

.footer-brand .logo-text { font-size: 1.1rem; margin-bottom: 10px; }
.footer-brand p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.6; }

.footer-nav h3 {
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.footer-nav ul { list-style: none; margin: 0; padding: 0; }
.footer-nav ul li { margin-bottom: 8px; }
.footer-nav ul li a { color: var(--color-text-muted); font-size: 0.88rem; transition: color 0.2s; }
.footer-nav ul li a:hover { color: var(--color-primary); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; color: var(--color-text-muted); }

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 900;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, #1a0900 0%, #0d0600 60%, #200d00 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px 30px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: '🐉';
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 12rem;
  opacity: 0.05;
  pointer-events: none;
}

.hero-section h1 { border-bottom: none; padding-bottom: 0; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }

.badge {
  display: inline-block;
  background: rgba(200,164,0,0.15);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ===== STEPS ===== */
.steps { counter-reset: step-counter; margin: 20px 0; }
.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--color-border);
}

.step-number {
  counter-increment: step-counter;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
  color: #0d0600;
  line-height: 1;
}

/* ===== PROVIDER LOGOS ===== */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.provider-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: border-color 0.2s, transform 0.15s;
}

.provider-card:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.provider-card .provider-icon { font-size: 2rem; margin-bottom: 8px; }
.provider-card span { font-size: 0.88rem; color: var(--color-text-muted); font-weight: 600; display: block; }

/* ===== BONUS TABLE ===== */
.highlight-row { background: rgba(200,164,0,0.12) !important; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .main-nav { display: none; flex-direction: column; width: 100%; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .cards-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .bonus-banner { flex-direction: column; text-align: center; }
  .bonus-banner::before { display: none; }
  .rating-block { flex-direction: column; gap: 10px; }
  .hero-section { padding: 24px 16px; }
  .step-item { flex-direction: column; }
}

@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; text-align: center; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.15rem; }
}