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

:root {
  --brand-red: #e63946;
  --brand-dark: #1a1a2e;
  --brand-mid: #16213e;
  --brand-accent: #f4a261;
  --brand-gold: #e9c46a;
  --brand-light: #f8f9fa;
  --brand-white: #ffffff;
  --brand-gray: #6c757d;
  --brand-border: #dee2e6;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.15);
  --transition: 0.3s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-main); background: var(--brand-light); color: #1a1a2e; line-height: 1.7; }

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

a { color: var(--brand-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-accent); }

/* ── HEADER ─────────────────────────────── */
.site-header {
  background: var(--brand-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 64px;
}
.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 44px; height: 44px;
  background: var(--brand-red);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: #fff; letter-spacing: -1px;
  flex-shrink: 0;
}
.logo-text { color: var(--brand-white); font-size: 1.25rem; font-weight: 700; line-height: 1.2; }
.logo-text span { color: var(--brand-gold); }

.nav-toggle { display: none; background: none; border: 2px solid var(--brand-accent); color: var(--brand-accent); padding: 6px 12px; border-radius: var(--radius); cursor: pointer; font-size: 1.1rem; }

.main-nav { display: flex; flex-wrap: wrap; gap: 4px; }
.main-nav a {
  color: #ccc;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--brand-red);
  color: #fff;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-bottom: 12px;
    gap: 2px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 16px; border-radius: 4px; }
}

/* ── BONUS BANNER ───────────────────────── */
.bonus-banner {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #2d1b4e 50%, var(--brand-mid) 100%);
  border-bottom: 3px solid var(--brand-red);
  padding: 28px 16px;
  text-align: center;
}
.bonus-banner-inner { max-width: 900px; margin: 0 auto; }
.bonus-badge {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.bonus-banner h2, .bonus-banner-mid h2 {
  color: var(--brand-white);
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 6px;
  line-height: 1.3;
}
.bonus-amount {
  color: var(--brand-gold);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.bonus-sub { color: #ccc; font-size: 0.9rem; margin-bottom: 18px; }
.bonus-sub strong { color: var(--brand-gold); }

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-red), #c1121f);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(230,57,70,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.5px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(230,57,70,0.6); color: #fff; }

.btn-secondary {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-accent));
  color: var(--brand-dark);
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(244,162,97,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,162,97,0.5); color: var(--brand-dark); }

/* ── BONUS BANNER MID ───────────────────── */
.bonus-banner-mid {
  background: linear-gradient(90deg, #1a1a2e, #2d1b4e, #1a1a2e);
  border-top: 2px solid var(--brand-gold);
  border-bottom: 2px solid var(--brand-gold);
  padding: 24px 16px;
  text-align: center;
  margin: 40px 0;
}
.bonus-banner-mid .bonus-amount { font-size: clamp(1.6rem, 4vw, 2.5rem); }

/* ── MAIN LAYOUT ────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.content-wrap { display: grid; grid-template-columns: 1fr; gap: 32px; padding: 40px 16px; max-width: 1200px; margin: 0 auto; }

@media (min-width: 1024px) {
  .content-wrap { grid-template-columns: 1fr 320px; }
}

.main-content { min-width: 0; }
.sidebar { display: flex; flex-direction: column; gap: 24px; }

/* ── TYPOGRAPHY ─────────────────────────── */
.main-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--brand-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  border-left: 4px solid var(--brand-red);
  padding-left: 16px;
}
.main-content h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--brand-dark);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-border);
  position: relative;
}
.main-content h2::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 60px; height: 2px;
  background: var(--brand-red);
}
.main-content h3 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--brand-mid);
  margin: 22px 0 10px;
  padding-left: 12px;
  border-left: 3px solid var(--brand-accent);
}
.main-content p { margin-bottom: 14px; color: #2d2d2d; }
.main-content ul, .main-content ol { margin: 12px 0 16px 24px; }
.main-content li { margin-bottom: 6px; color: #2d2d2d; }
.main-content strong { color: var(--brand-dark); }

/* ── RATING BLOCK ───────────────────────── */
.rating-block {
  background: var(--brand-white);
  border: 2px solid var(--brand-gold);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.rating-score { font-size: 3.5rem; font-weight: 900; color: var(--brand-red); line-height: 1; }
.rating-label { font-size: 0.85rem; color: var(--brand-gray); margin-top: 4px; }
.stars { color: var(--brand-gold); font-size: 1.4rem; margin: 8px 0; }

/* ── INFO TABLE SIDEBAR ─────────────────── */
.info-table { background: var(--brand-white); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.info-table h3 { font-size: 1rem; margin-bottom: 12px; color: var(--brand-dark); border-left: 3px solid var(--brand-red); padding-left: 8px; }
.info-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--brand-border); font-size: 0.85rem; gap: 8px; }
.info-row:last-child { border-bottom: none; }
.info-key { color: var(--brand-gray); flex-shrink: 0; }
.info-val { color: var(--brand-dark); font-weight: 600; text-align: right; }

/* ── CARDS ──────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 32px 0;
}
@media (min-width: 600px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
.card {
  background: var(--brand-white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--brand-red);
  transition: transform var(--transition);
}
.card:hover { transform: translateY(-4px); }
.card-icon { font-size: 2rem; margin-bottom: 12px; }
.card h3 { font-size: 1.1rem; color: var(--brand-dark); margin-bottom: 10px; border-left: none; padding-left: 0; }
.card p { font-size: 0.9rem; color: #555; margin-bottom: 12px; }
.card .btn-primary { font-size: 0.9rem; padding: 10px 22px; }

/* ── TABLES ─────────────────────────────── */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 20px 0; border-radius: var(--radius); box-shadow: var(--shadow); }
.styled-table { width: 100%; border-collapse: collapse; background: var(--brand-white); min-width: 480px; }
.styled-table thead { background: var(--brand-dark); color: var(--brand-white); }
.styled-table th { padding: 12px 16px; text-align: left; font-size: 0.88rem; font-weight: 600; white-space: nowrap; }
.styled-table td { padding: 11px 16px; border-bottom: 1px solid var(--brand-border); font-size: 0.88rem; color: #2d2d2d; vertical-align: middle; }
.styled-table tbody tr:nth-child(even) { background: #f8f0f0; }
.styled-table tbody tr:hover { background: #ffeaea; }
.badge-green { background: #28a745; color: #fff; padding: 3px 8px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.badge-yellow { background: var(--brand-gold); color: var(--brand-dark); padding: 3px 8px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.badge-red { background: var(--brand-red); color: #fff; padding: 3px 8px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }

/* ── FAQ ACCORDION (CSS-only) ───────────── */
.faq-section { margin: 40px 0; }
.faq-section > h2 { margin-bottom: 20px; }
.faq-item { border: 1px solid var(--brand-border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; background: var(--brand-white); }
.faq-item input[type="checkbox"] { display: none; }
.faq-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-dark);
  background: var(--brand-white);
  transition: background var(--transition);
  user-select: none;
  gap: 12px;
}
.faq-label:hover { background: #fef2f2; }
.faq-arrow { font-size: 1.2rem; transition: transform var(--transition); flex-shrink: 0; color: var(--brand-red); }
.faq-item input:checked ~ .faq-label { background: #fef2f2; }
.faq-item input:checked ~ .faq-label .faq-arrow { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 20px; }
.faq-item input:checked ~ .faq-body { max-height: 500px; padding: 16px 20px; }
.faq-body p { font-size: 0.93rem; color: #444; margin: 0; }

/* ── CHECKLIST ──────────────────────────── */
.checklist { list-style: none; margin: 16px 0; padding: 0; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--brand-border); font-size: 0.93rem; }
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: '✔'; color: #28a745; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ── PROS/CONS ──────────────────────────── */
.pros-cons { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 20px 0; }
@media (min-width: 600px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
.pros, .cons { background: var(--brand-white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.pros { border-top: 3px solid #28a745; }
.cons { border-top: 3px solid var(--brand-red); }
.pros h3, .cons h3 { margin-bottom: 12px; border-left: none; padding-left: 0; font-size: 1rem; }
.pros ul, .cons ul { margin-left: 0; list-style: none; padding: 0; }
.pros li, .cons li { padding: 5px 0; font-size: 0.9rem; display: flex; align-items: flex-start; gap: 8px; border-bottom: none; }
.pros li::before { content: '✓'; color: #28a745; font-weight: 700; }
.cons li::before { content: '✗'; color: var(--brand-red); font-weight: 700; }

/* ── HIGHLIGHT BOX ──────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, #fff8f0, #fff0f0);
  border: 1px solid var(--brand-accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}
.highlight-box p { margin: 0; font-size: 0.95rem; }

/* ── STEP LIST ──────────────────────────── */
.step-list { counter-reset: step; list-style: none; margin: 16px 0; padding: 0; }
.step-list li { counter-increment: step; display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--brand-border); font-size: 0.93rem; }
.step-list li:last-child { border-bottom: none; }
.step-list li::before { content: counter(step); background: var(--brand-red); color: #fff; min-width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; flex-shrink: 0; }

/* ── FOOTER ─────────────────────────────── */
.site-footer {
  background: var(--brand-dark);
  color: #aaa;
  padding: 40px 16px 20px;
  margin-top: 60px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 30px; }
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-col h4 { color: var(--brand-white); font-size: 0.95rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #aaa; font-size: 0.88rem; text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--brand-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 18px; text-align: center; font-size: 0.82rem; line-height: 1.6; }
.footer-bottom a { color: var(--brand-gold); }
.age-badge { display: inline-block; background: var(--brand-red); color: #fff; font-weight: 700; padding: 2px 10px; border-radius: 4px; font-size: 0.85rem; margin-right: 8px; }

/* ── BREADCRUMB ─────────────────────────── */
.breadcrumb { padding: 12px 16px; max-width: 1200px; margin: 0 auto; font-size: 0.85rem; color: var(--brand-gray); }
.breadcrumb a { color: var(--brand-red); }
.breadcrumb span { margin: 0 6px; }

/* ── PAGE HERO ──────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-mid));
  padding: 32px 16px;
  text-align: center;
  color: var(--brand-white);
}
.page-hero h1 { color: var(--brand-white); border-left: none; padding-left: 0; font-size: clamp(1.5rem, 4vw, 2.4rem); }
.page-hero p { color: #ccc; font-size: 1rem; max-width: 700px; margin: 10px auto 0; }

/* ── UTILITY ─────────────────────────────── */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-20 { margin-bottom: 20px; }
.section-divider { border: none; border-top: 2px solid var(--brand-border); margin: 36px 0; }
.alert-box { background: #fff3cd; border: 1px solid #ffc107; border-radius: var(--radius); padding: 14px 18px; font-size: 0.9rem; margin: 16px 0; }
.alert-box strong { color: #856404; }

@media (max-width: 599px) {
  .main-content h1 { font-size: 1.6rem; }
  .main-content h2 { font-size: 1.2rem; }
  .content-wrap { padding: 24px 12px; }
  .bonus-banner { padding: 20px 12px; }
}