/* ============================================================
   Chicken Road 2 — Main Stylesheet
   Dark arcade highway theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=DM+Sans:wght@400;500;600&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
  --bg-primary: #0a0f1a;
  --bg-secondary: #111827;
  --bg-card: rgba(17, 24, 39, 0.95);
  --accent-yellow: #fbbf24;
  --accent-yellow-dark: #d97706;
  --accent-red: #ef4444;
  --accent-green: #22c55e;
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.85);
  --text-muted: rgba(255,255,255,0.6);
  --border-color: rgba(251,191,36,0.2);
  --border-card: rgba(255,255,255,0.08);
  --shadow-glow: 0 0 20px rgba(251,191,36,0.3);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --gradient-dark: linear-gradient(180deg, #111827 0%, #0a0f1a 100%);
  --gradient-yellow: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --gradient-danger: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  --gradient-hero: linear-gradient(135deg, #0a0f1a 0%, #111827 50%, #0f172a 100%);
  --radius-card: 12px;
  --radius-btn: 8px;
  --nav-height: 70px;
}

/* ============================================================
   BASE RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

/* Skip navigation link — accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--accent-yellow);
  color: #0a0f1a;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Focus-visible — keyboard nav only, not mouse */
:focus-visible {
  outline: 2px solid var(--accent-yellow);
  outline-offset: 3px;
  border-radius: 3px;
}
:focus:not(:focus-visible) { outline: none; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
table { border-collapse: collapse; width: 100%; }
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================================================
   STICKY HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 15, 26, 0.97);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-yellow);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--text-primary); }
.nav-links {
  display: none;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,.06); }
.nav-links a.active { color: var(--accent-yellow); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border-card);
  border-radius: 6px;
  padding: 4px;
}
.lang-switcher a {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: 4px;
  transition: all .2s;
  text-transform: uppercase;
}
.lang-switcher a:hover,
.lang-switcher a.active { background: var(--accent-yellow); color: #000; }
.btn-play-nav {
  background: var(--gradient-yellow);
  color: #000 !important;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  animation: pulse-yellow 2.5s ease-in-out infinite;
  transition: transform .15s, box-shadow .15s;
}
.btn-play-nav:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }
@keyframes pulse-yellow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(251,191,36,0); }
}
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: rgba(10, 15, 26, 0.98);
  z-index: 999;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-secondary);
  font-size: 18px;
  font-family: 'Oswald', sans-serif;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-card);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--accent-yellow); }
.mobile-nav .btn-play-full {
  display: block;
  text-align: center;
  margin-top: 16px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(251,191,36,0.08) 0%, transparent 70%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 80px);
  pointer-events: none;
}
/* Road lines animation */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--accent-yellow) 0px, var(--accent-yellow) 40px, transparent 40px, transparent 80px);
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.3);
  color: var(--accent-yellow);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero h1 em { color: var(--accent-yellow); font-style: normal; }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 700px;
  margin: 0 auto 32px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 16px;
  text-align: center;
}
.stat-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--accent-yellow);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient-yellow);
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(251,191,36,0.4); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding: 13px 32px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-btn);
  transition: border-color .2s, background .2s;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--accent-yellow); background: rgba(251,191,36,0.08); }
.btn-danger {
  background: var(--gradient-danger);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform .15s, box-shadow .15s;
}
.btn-danger:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(239,68,68,0.4); }
.btn-full { width: 100%; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 64px 0;
}
.section-alt { background: var(--bg-secondary); }
.section-title {
  font-size: clamp(24px, 4vw, 38px);
  color: var(--text-primary);
  margin-bottom: 8px;
}
.section-title span { color: var(--accent-yellow); }
.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 40px;
  max-width: 600px;
}

/* Section header with line */
.section-header {
  margin-bottom: 36px;
}
.section-header::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gradient-yellow);
  border-radius: 2px;
  margin-top: 10px;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 24px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.card:hover {
  border-color: var(--border-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

/* Feature cards grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 24px;
  transition: border-color .25s, transform .25s;
}
.feature-card:hover { border-color: var(--border-color); transform: translateY(-3px); }
.feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.feature-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: var(--accent-yellow);
  margin-bottom: 8px;
}
.feature-text { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   TABLE WRAPPER
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-card);
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
}
.data-table {
  min-width: 560px;
  font-size: 14px;
}
.data-table thead { background: rgba(251,191,36,0.12); }
.data-table th {
  padding: 12px 16px;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-yellow);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 1px solid var(--border-card);
}
.data-table td {
  padding: 11px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }
.td-highlight { color: var(--accent-yellow); font-weight: 700; }
.td-green { color: var(--accent-green); font-weight: 600; }
.td-red { color: var(--accent-red); font-weight: 600; }
.td-mono { font-family: 'JetBrains Mono', monospace; }
.badge-check { color: var(--accent-green); }
.badge-x { color: var(--accent-red); }

/* ============================================================
   CASINO CARDS
   ============================================================ */
.casino-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  transition: border-color .25s;
}
.casino-card:hover { border-color: var(--border-color); }
.casino-card.featured { border-color: rgba(251,191,36,0.4); }
.casino-rank {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 4px;
}
.casino-name {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.casino-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.stars { color: var(--accent-yellow); font-size: 14px; letter-spacing: 1px; }
.rating-val { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--text-muted); }
.casino-bonus {
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.25);
  color: var(--accent-yellow);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: inline-block;
}
.casino-perks {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}
.casino-perks li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.casino-perks li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
}
.casino-action { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }

/* ============================================================
   HOW IT WORKS / STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-yellow);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}
.step-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.step-text { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--border-color); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  color: var(--text-primary);
  user-select: none;
  transition: color .2s;
}
.faq-q:hover { color: var(--accent-yellow); }
.faq-item.open .faq-q { color: var(--accent-yellow); border-left: 3px solid var(--accent-yellow); }
.faq-icon {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent-yellow); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 20px 18px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 20px;
}
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.reviewer-name { font-weight: 700; color: var(--text-primary); font-size: 15px; }
.reviewer-meta { font-size: 12px; color: var(--text-muted); }
.review-stars { color: var(--accent-yellow); font-size: 14px; }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   WIN CALCULATOR
   ============================================================ */
.calculator-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 28px;
  max-width: 640px;
  margin: 0 auto;
}
.calc-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--accent-yellow);
  margin-bottom: 6px;
}
.calc-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.calc-field { margin-bottom: 20px; }
.calc-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.calc-select, .calc-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 11px 14px;
  transition: border-color .2s;
  appearance: none;
}
.calc-select:focus, .calc-input:focus {
  outline: none;
  border-color: var(--accent-yellow);
}
.calc-slider { width: 100%; accent-color: var(--accent-yellow); cursor: pointer; }
.calc-slider-info { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.calc-result {
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.3);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}
.calc-result-mult {
  font-family: 'JetBrains Mono', monospace;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent-yellow);
  display: block;
  line-height: 1;
}
.calc-result-win {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-green);
  display: block;
  margin-top: 6px;
}
.calc-result-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; display: block; }

/* ============================================================
   PROS / CONS
   ============================================================ */
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pros-box, .cons-box {
  border-radius: var(--radius-card);
  padding: 20px;
}
.pros-box { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25); }
.cons-box { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); }
.verdict-title {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  margin-bottom: 12px;
}
.pros-box .verdict-title { color: var(--accent-green); }
.cons-box .verdict-title { color: var(--accent-red); }
.verdict-list { display: flex; flex-direction: column; gap: 8px; }
.verdict-list li {
  font-size: 13.5px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.pros-box .verdict-list li::before { content: '✓'; color: var(--accent-green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.cons-box .verdict-list li::before { content: '✗'; color: var(--accent-red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   TOC
   ============================================================ */
.toc-box {
  background: rgba(251,191,36,0.06);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: var(--radius-card);
  padding: 24px;
  margin-bottom: 40px;
}
.toc-title {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  color: var(--accent-yellow);
  margin-bottom: 14px;
}
.toc-list { display: flex; flex-direction: column; gap: 6px; counter-reset: toc; }
.toc-list li { counter-increment: toc; }
.toc-list a {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.toc-list a::before {
  content: counter(toc) '.';
  color: var(--accent-yellow);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  min-width: 20px;
}
.toc-list a:hover { color: var(--accent-yellow); }

/* ============================================================
   NOTICE / WARNING BOX
   ============================================================ */
.notice-box {
  border-radius: var(--radius-card);
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.6;
  margin: 20px 0;
}
.notice-box.info { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.25); }
.notice-box.warn { background: rgba(251,191,36,0.08); border: 1px solid rgba(251,191,36,0.25); color: var(--text-secondary); }
.notice-box.danger { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); }
.notice-icon { font-size: 20px; flex-shrink: 0; }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent-yellow); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  background: linear-gradient(135deg, rgba(251,191,36,0.1) 0%, rgba(17,24,39,0.95) 100%);
  border: 1px solid rgba(251,191,36,0.3);
  border-radius: var(--radius-card);
  padding: 40px 24px;
  text-align: center;
  margin-top: 40px;
}
.cta-block h3 {
  font-size: clamp(20px, 3vw, 28px);
  color: var(--text-primary);
  margin-bottom: 8px;
}
.cta-block p { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: rgba(10,15,26,0.97);
  border-top: 1px solid var(--border-color);
  padding: 10px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  backdrop-filter: blur(12px);
}
.sticky-cta.visible { display: flex; }
.sticky-cta-text { font-size: 13px; color: var(--text-muted); line-height: 1.3; }
.sticky-cta-text strong { display: block; color: var(--text-primary); font-size: 14px; }
.sticky-cta a { flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-card);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand { grid-column: 1 / -1; }
.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 10px;
}
.footer-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; max-width: 380px; margin-bottom: 14px; }
.footer-age {
  display: inline-block;
  background: var(--accent-red);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 4px;
}
.footer-col h4 { font-family: 'Oswald', sans-serif; font-size: 14px; color: var(--text-primary); margin-bottom: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13px; color: var(--text-muted); transition: color .2s; }
.footer-col ul a:hover { color: var(--accent-yellow); }
.footer-bottom {
  border-top: 1px solid var(--border-card);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-copy { font-size: 12.5px; color: var(--text-muted); }
.footer-disclaimer { font-size: 11.5px; color: rgba(255,255,255,0.35); line-height: 1.65; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { font-size: 12.5px; color: var(--text-muted); transition: color .2s; }
.footer-links a:hover { color: var(--accent-yellow); }

/* ============================================================
   ARTICLE CONTENT STYLES (for inner pages)
   ============================================================ */
.article-body h2 {
  font-size: clamp(22px, 3vw, 30px);
  color: var(--text-primary);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(251,191,36,0.25);
}
.article-body h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--accent-yellow);
  margin: 28px 0 10px;
}
.article-body p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.article-body ul, .article-body ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 6px;
}
.article-body strong { color: var(--text-primary); }
.article-body em { color: var(--accent-yellow); font-style: normal; font-weight: 600; }

/* Inline highlight */
.highlight-box {
  background: rgba(251,191,36,0.08);
  border-left: 3px solid var(--accent-yellow);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  font-size: 14.5px;
  color: var(--text-secondary);
}

/* ============================================================
   PAGE LAYOUT
   ============================================================ */
.page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 40px 0;
}
.page-main { min-width: 0; }

/* ============================================================
   DIFF TABLE (CR2 vs CR1)
   ============================================================ */
.diff-table td:first-child { font-weight: 700; color: var(--text-primary); }
.diff-better { color: var(--accent-green); font-weight: 700; }
.diff-worse { color: var(--accent-red); }

/* Mobile nav fixes */
@media (max-width: 1023px) {
  .btn-play-nav { display: none !important; }
  /* btn-play-nav-mobile-hide */
  .nav-inner { gap: 8px; }
  .nav-inner > nav { display: none; }
}
