/* ============================================
   ASTERO REVIEW — Design System & Main Styles
   Premium Dark Editorial Casino Review Theme
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  /* Base surfaces */
  --color-bg: #0B1020;
  --color-surface-1: #121A2E;
  --color-surface-2: #1A2540;
  --color-surface-elevated: #243250;

  /* Text */
  --color-text-primary: #F4F7FB;
  --color-text-secondary: #C8D1DE;
  --color-text-muted: #8E98A8;

  /* Accent */
  --color-accent-mint: #4CE0B3;
  --color-accent-violet: #8D7CFF;
  --color-accent-amber: #F2C75C;

  /* States */
  --color-success: #1FCF7A;
  --color-error: #FF7A7A;
  --color-warning: #FFA94D;
  --color-info: #57A9FF;

  /* Borders & Shadows */
  --border-subtle: 1px solid rgba(255,255,255,0.08);
  --border-medium: 1px solid rgba(255,255,255,0.12);
  --shadow-card: 0 8px 24px rgba(0,0,0,0.18);
  --shadow-panel: 0 16px 36px rgba(0,0,0,0.22);

  /* Radii */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;

  /* Typography */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing base */
  --space-unit: 8px;

  /* Container */
  --container-max: 1200px;
  --content-width: 800px;
  --sidebar-width: 300px;
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-text-primary);
  background-color: var(--color-bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent-mint); text-decoration: none; transition: color 0.2s; }
a:hover { color: #6EECC8; }

ul, ol { list-style: none; }

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

h1 { font-size: 48px; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: 34px; line-height: 1.25; letter-spacing: -0.01em; }
h3 { font-size: 26px; line-height: 1.3; }
h4 { font-size: 20px; line-height: 1.4; }

p { margin-bottom: 1.25em; color: var(--color-text-secondary); }
p:last-child { margin-bottom: 0; }

.text-muted { color: var(--color-text-muted); }
.text-small { font-size: 14px; line-height: 1.6; }
.text-large { font-size: 18px; line-height: 1.65; }

strong { font-weight: 600; color: var(--color-text-primary); }

@media (max-width: 768px) {
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
}

/* ============================================
   4. LAYOUT
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--sm {
  padding: 56px 0;
}

.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width);
  gap: 40px;
  align-items: start;
}

.content-main { min-width: 0; }

@media (max-width: 1024px) {
  .content-with-sidebar {
    grid-template-columns: 1fr;
  }
  .section { padding: 56px 0; }
}

@media (max-width: 768px) {
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }
}

/* Grid helpers */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   5. HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(11, 16, 32, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-subtle);
  transition: height 0.3s, background 0.3s;
}

.site-header.scrolled {
  height: 64px;
  background: rgba(11, 16, 32, 0.95);
}

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

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

.site-logo svg { width: 32px; height: 32px; }

.site-logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

.site-logo-text span {
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Main Navigation */
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active { color: var(--color-text-primary); }

.header-cta {
  flex-shrink: 0;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-primary);
  cursor: pointer;
  padding: 8px;
}

.menu-toggle svg { width: 24px; height: 24px; }

@media (max-width: 960px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface-1);
    border-bottom: var(--border-medium);
    padding: 24px;
    gap: 16px;
  }
  .main-nav.open a { font-size: 16px; }
}

/* Body offset for fixed header */
body { padding-top: 80px; }

/* ============================================
   6. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent-mint);
  color: var(--color-bg);
}
.btn-primary:hover {
  background: #3FD0A3;
  color: var(--color-bg);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(76, 224, 179, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--color-text-primary);
  background: rgba(255,255,255,0.04);
}

.btn-tertiary {
  background: transparent;
  color: var(--color-accent-mint);
  padding: 8px 0;
  font-size: 14px;
}
.btn-tertiary:hover { color: #6EECC8; }
.btn-tertiary::after {
  content: '→';
  transition: transform 0.2s;
}
.btn-tertiary:hover::after { transform: translateX(3px); }

.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* Affiliate note under button */
.affiliate-note {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* ============================================
   7. CARDS
   ============================================ */
.card {
  background: var(--color-surface-1);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: rgba(255,255,255,0.12);
  box-shadow: var(--shadow-card);
}

.card-lg {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.card-elevated {
  background: var(--color-surface-2);
}

/* Review card (hero sidebar) */
.review-card {
  background: linear-gradient(135deg, var(--color-surface-1), var(--color-surface-2));
  border: var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.review-card-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-mint);
  margin-bottom: 4px;
}

.review-card-date {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.review-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.review-metric:last-child { border-bottom: none; }

.review-metric-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.review-metric-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-align: right;
  max-width: 55%;
}

.review-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.review-score-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.review-score-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-accent-mint);
}

/* Quick fact card */
.fact-card {
  position: relative;
  overflow: hidden;
}

.fact-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(76, 224, 179, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-accent-mint);
}

.fact-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.fact-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

/* Alternative card */
.alt-card { position: relative; }

.alt-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent-violet);
  background: rgba(141, 124, 255, 0.12);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.alt-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.alt-card-features {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.alt-card-feature {
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.alt-card-feature .icon-check { color: var(--color-success); }
.alt-card-feature .icon-warn { color: var(--color-warning); }

/* ============================================
   8. BADGES & CHIPS
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.badge-mint {
  background: rgba(76, 224, 179, 0.12);
  color: var(--color-accent-mint);
}

.badge-violet {
  background: rgba(141, 124, 255, 0.12);
  color: var(--color-accent-violet);
}

.badge-amber {
  background: rgba(242, 199, 92, 0.12);
  color: var(--color-accent-amber);
}

.badge-muted {
  background: rgba(255,255,255,0.06);
  color: var(--color-text-muted);
}

/* ============================================
   9. HERO SECTION
   ============================================ */
.hero {
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76,224,179,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 58% 1fr;
  gap: 48px;
  align-items: start;
}

.hero-content { padding-top: 16px; }

.hero-badge { margin-bottom: 16px; }

.hero h1 { margin-bottom: 16px; }

.hero-subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-disclaimer {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 520px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  border-left: 3px solid rgba(255,255,255,0.08);
}

.hero-trust-points {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-trust-point {
  font-size: 12px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-point svg { color: var(--color-accent-mint); width: 14px; height: 14px; }

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero { padding: 40px 0 48px; }
}

/* ============================================
   10. PROS & CONS
   ============================================ */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pros-col, .cons-col {
  padding: 28px;
  border-radius: var(--radius-md);
}

.pros-col {
  background: var(--color-surface-1);
  border: var(--border-subtle);
  border-left: 3px solid var(--color-success);
}

.cons-col {
  background: var(--color-surface-1);
  border: var(--border-subtle);
  border-left: 3px solid var(--color-warning);
}

.pros-cons-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pros-cons-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pros-cons-item {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pros-cons-item svg { flex-shrink: 0; margin-top: 3px; width: 16px; height: 16px; }
.pros-col .pros-cons-item svg { color: var(--color-success); }
.cons-col .pros-cons-item svg { color: var(--color-warning); }

@media (max-width: 768px) {
  .pros-cons { grid-template-columns: 1fr; }
}

/* ============================================
   11. CALLOUT BLOCKS
   ============================================ */
.callout {
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  margin: 24px 0;
}

.callout-check {
  background: rgba(76, 224, 179, 0.06);
  border-left: 3px solid var(--color-accent-mint);
}

.callout-warn {
  background: rgba(242, 199, 92, 0.06);
  border-left: 3px solid var(--color-accent-amber);
}

.callout-info {
  background: rgba(87, 169, 255, 0.06);
  border-left: 3px solid var(--color-info);
}

.callout-verdict {
  background: rgba(141, 124, 255, 0.06);
  border-left: 3px solid var(--color-accent-violet);
}

.callout-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-text-primary);
}

.callout p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* ============================================
   12. FAQ ACCORDION
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--color-surface-1);
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(255,255,255,0.02);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.22s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-text-muted);
  border-radius: 1px;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.22s, opacity 0.22s;
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

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

.faq-answer-inner {
  padding: 0 24px 20px;
}

.faq-answer-inner p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* ============================================
   13. AUTHOR BOX
   ============================================ */
.author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--color-surface-1);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-surface-2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-mint);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
}

.author-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.author-role {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.author-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.author-meta-item {
  font-size: 12px;
  color: var(--color-text-muted);
}

.author-meta-item strong {
  color: var(--color-text-secondary);
  font-weight: 500;
}

.author-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

/* ============================================
   14. CTA PANELS
   ============================================ */
.cta-panel {
  background: linear-gradient(135deg, var(--color-surface-1), var(--color-surface-2));
  border: var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-panel h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.cta-panel p {
  font-size: 15px;
  color: var(--color-text-secondary);
  max-width: 560px;
}

.cta-panel-actions {
  flex-shrink: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .cta-panel {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .cta-panel p { max-width: 100%; }
}

/* ============================================
   15. SECTION HEADERS
   ============================================ */
.section-header {
  margin-bottom: 40px;
}

.section-header h2 { margin-bottom: 8px; }

.section-header p {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 640px;
}

/* ============================================
   16. TABLES
   ============================================ */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.data-table th {
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.data-table td { color: var(--color-text-secondary); }

.data-table tr:hover td { background: rgba(255,255,255,0.02); }

.data-table .note {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ============================================
   17. STEPPER / FLOW
   ============================================ */
.stepper {
  display: flex;
  gap: 0;
  align-items: stretch;
  flex-wrap: wrap;
}

.stepper-step {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 16px;
  position: relative;
}

.stepper-step::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  font-size: 16px;
}

.stepper-step:last-child::after { display: none; }

.stepper-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(76, 224, 179, 0.12);
  color: var(--color-accent-mint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stepper-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .stepper { flex-direction: column; }
  .stepper-step { text-align: left; display: flex; align-items: center; gap: 12px; }
  .stepper-step::after { display: none; }
}

/* ============================================
   18. FOOTER
   ============================================ */
.site-footer {
  background: var(--color-surface-1);
  border-top: var(--border-subtle);
  padding: 64px 0 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--color-text-secondary);
  padding: 4px 0;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: var(--border-subtle);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--color-text-muted);
  max-width: 480px;
  text-align: right;
}

.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; max-width: 100%; }
}

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

/* ============================================
   19. STICKY SIDEBAR
   ============================================ */
.sticky-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--color-surface-1);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
}

.sidebar-card h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.toc-list a {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 6px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: all 0.2s;
}

.toc-list a:hover,
.toc-list a.active {
  color: var(--color-accent-mint);
  border-left-color: var(--color-accent-mint);
}

/* ============================================
   20. METHODOLOGY CRITERIA
   ============================================ */
.criteria-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.criteria-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--color-surface-1);
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
}

.criteria-num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(141, 124, 255, 0.12);
  color: var(--color-accent-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.criteria-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

/* ============================================
   21. DISCLOSURE BLOCKS
   ============================================ */
.disclosure {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm);
  border: var(--border-subtle);
}

.disclosure svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.disclosure p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================
   22. PAGE TEMPLATES
   ============================================ */

/* Trust/Legal pages */
.page-legal .section { padding: 48px 0; }
.page-legal h1 { margin-bottom: 24px; }
.page-legal h2 { font-size: 22px; margin-top: 40px; margin-bottom: 12px; }
.page-legal h3 { font-size: 18px; margin-top: 28px; margin-bottom: 8px; }
.page-legal p { font-size: 15px; line-height: 1.8; }
.page-legal ul { margin: 12px 0; padding-left: 0; }
.page-legal ul li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  padding: 4px 0 4px 20px;
  position: relative;
}
.page-legal ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-text-muted);
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-card {
  text-align: center;
  padding: 28px;
}

.contact-card svg {
  width: 32px;
  height: 32px;
  color: var(--color-accent-mint);
  margin-bottom: 12px;
}

.contact-card h3 { font-size: 16px; margin-bottom: 6px; }
.contact-card p { font-size: 14px; color: var(--color-text-muted); }
.contact-card a { font-size: 14px; font-weight: 500; }

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

/* ============================================
   23. FORM STYLES
   ============================================ */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-surface-2);
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: rgba(76, 224, 179, 0.4);
}

.form-textarea { min-height: 140px; resize: vertical; }

/* ============================================
   24. WAGER CALCULATOR
   ============================================ */
.wager-calc {
  background: var(--color-surface-1);
  border: var(--border-medium);
  border-radius: var(--radius-md);
  padding: 24px;
}

.wager-calc h3 {
  font-size: 16px;
  margin-bottom: 16px;
}

.wager-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.wager-result {
  padding: 16px;
  background: rgba(76, 224, 179, 0.06);
  border-radius: var(--radius-sm);
  text-align: center;
}

.wager-result-label {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.wager-result-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-accent-mint);
}

/* ============================================
   25. BREADCRUMBS
   ============================================ */
.breadcrumbs {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  padding-top: 16px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.breadcrumbs a { color: var(--color-text-muted); }
.breadcrumbs a:hover { color: var(--color-text-primary); }
.breadcrumbs span { margin: 0 8px; opacity: 0.5; }

/* ============================================
   26. SCENARIO CARDS (for /zhaloby/)
   ============================================ */
.scenario-card {
  border-left: 3px solid var(--color-accent-violet);
}

.scenario-card-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent-violet);
  margin-bottom: 8px;
}

/* ============================================
   27. MESSAGE TEMPLATES
   ============================================ */
.message-template {
  background: var(--color-surface-2);
  border-radius: var(--radius-sm);
  padding: 20px;
  position: relative;
}

.message-template-subject {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent-amber);
  margin-bottom: 8px;
}

.message-template-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  font-style: italic;
}

.copy-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.06);
  border: none;
  color: var(--color-text-muted);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.copy-btn:hover { background: rgba(255,255,255,0.1); }

/* ============================================
   28. REVIEW SENTIMENT (for /otzyvy/)
   ============================================ */
.sentiment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.sentiment-col {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--color-surface-1);
  border: var(--border-subtle);
}

.sentiment-positive { border-top: 3px solid var(--color-success); }
.sentiment-negative { border-top: 3px solid var(--color-warning); }

.sentiment-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sentiment-list { display: flex; flex-direction: column; gap: 10px; }
.sentiment-item {
  font-size: 14px;
  color: var(--color-text-secondary);
  padding-left: 16px;
  position: relative;
}
.sentiment-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.sentiment-positive .sentiment-item::before { background: var(--color-success); }
.sentiment-negative .sentiment-item::before { background: var(--color-warning); }

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

/* ============================================
   29. MOBILE NAVIGATION OVERLAY
   ============================================ */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 16, 32, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 80px 24px 24px;
}

.mobile-nav-overlay.open { display: flex; flex-direction: column; }

.mobile-nav-overlay a {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-primary);
  padding: 12px 0;
  border-bottom: var(--border-subtle);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 24px;
  cursor: pointer;
}

/* ============================================
   30. UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.hidden { display: none; }

/* Section divider */
.section-divider {
  height: 1px;
  background: rgba(255,255,255,0.05);
  margin: 0;
  border: none;
}

/* ============================================
   31. ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ============================================
   32. PRINT
   ============================================ */
@media print {
  .site-header, .site-footer, .cta-panel, .btn { display: none; }
  body { background: white; color: #222; padding-top: 0; }
  .card { border: 1px solid #ddd; }
}
