/* ══════════════════════════════════════════════════════
   $100M COLLAPSE — MASTER STYLESHEET
   Premium dark financial presentation
══════════════════════════════════════════════════════ */

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

:root {
  --bg-primary:    #080a0f;
  --bg-secondary:  #0d1117;
  --bg-card:       #111622;
  --bg-card2:      #161d2e;
  --border:        #1e2d45;
  --border-light:  #2a3a55;
  --red:           #e53935;
  --red-dark:      #b71c1c;
  --red-glow:      rgba(229,57,53,0.25);
  --orange:        #f57c00;
  --orange-glow:   rgba(245,124,0,0.25);
  --green:         #00c853;
  --green-glow:    rgba(0,200,83,0.25);
  --gold:          #ffd600;
  --gold-glow:     rgba(255,214,0,0.2);
  --white:         #f0f4ff;
  --gray:          #8892a4;
  --gray2:         #4a5568;
  --btc:           #F7931A;
  --eth:           #627EEA;
  --sol:           #9945FF;
  --doge:          #C2A633;
  --sui:           #4DA2FF;
  --font-main:     'Space Grotesk', 'Inter', sans-serif;
  --font-body:     'Inter', sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg-primary);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════════════
   PROGRESS BAR
══════════════════════════════════════════════════ */
.progress-bar-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.06);
  z-index: 1000;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 12px var(--red-glow);
  width: 3.33%;
}

/* ══════════════════════════════════════════════════
   SLIDE COUNTER
══════════════════════════════════════════════════ */
.slide-counter {
  position: fixed;
  top: 18px;
  right: 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.08em;
  z-index: 1000;
  font-family: var(--font-main);
}

/* ══════════════════════════════════════════════════
   NAV BUTTONS
══════════════════════════════════════════════════ */
.nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(13,17,23,0.85);
  color: var(--gray);
  font-size: 18px;
  cursor: pointer;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}
.nav-btn:hover { border-color: var(--red); color: var(--white); background: rgba(229,57,53,0.15); }
.nav-prev { left: 16px; }
.nav-next { right: 16px; }
.nav-btn:disabled { opacity: 0.2; pointer-events: none; }

/* ══════════════════════════════════════════════════
   DOT NAV
══════════════════════════════════════════════════ */
.dot-nav {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 900;
}
.dot-nav .dot-btn {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.dot-nav .dot-btn.active {
  background: var(--red);
  width: 20px;
  border-radius: 3px;
  box-shadow: 0 0 8px var(--red-glow);
}

/* ══════════════════════════════════════════════════
   PRESENTATION WRAPPER
══════════════════════════════════════════════════ */
.presentation {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* ══════════════════════════════════════════════════
   SLIDE BASE
══════════════════════════════════════════════════ */
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  opacity: 0;
  pointer-events: none;
  transform: translateX(60px);
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.55s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.slide.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.slide.exit-left {
  opacity: 0;
  transform: translateX(-60px);
}
.slide.exit-right {
  opacity: 0;
  transform: translateX(60px);
}

.slide-inner {
  width: 100%;
  max-width: 1100px;
  padding: 60px 80px 70px;
  position: relative;
  z-index: 2;
  overflow-y: auto;
  max-height: 100vh;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.slide-inner::-webkit-scrollbar { width: 4px; }
.slide-inner::-webkit-scrollbar-track { background: transparent; }
.slide-inner::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.slide-inner.center-all {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding-top: 40px;
  padding-bottom: 40px;
}
.slide-inner.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ══════════════════════════════════════════════════
   SLIDE BACKGROUNDS
══════════════════════════════════════════════════ */
.slide-bg-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.12;
}
.red-glow { background: var(--red); bottom: -200px; right: -200px; }
.green-glow { background: var(--green); bottom: -200px; right: -200px; }
.orange-glow { background: var(--orange); bottom: -200px; right: -200px; }
.strong-glow { opacity: 0.22; }

.slide-phase { background: var(--bg-primary); }
.red-phase   { background: #0c0608; }
.green-phase { background: #060c08; }
.orange-phase{ background: #0a0806; }

.slide-collapse, .slide-liq {
  background: #0a0304;
}
.slide-defense {
  background: #090c12;
}
.slide-end {
  background: #06080d;
}

/* ══════════════════════════════════════════════════
   PARTICLE FIELD
══════════════════════════════════════════════════ */
.particle-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

/* ══════════════════════════════════════════════════
   TAGS / EYEBROWS
══════════════════════════════════════════════════ */
.eyebrow-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-family: var(--font-main);
  text-transform: uppercase;
}
.red-tag    { background: rgba(229,57,53,0.15); color: #ff6b6b; border: 1px solid rgba(229,57,53,0.3); }
.white-tag  { background: rgba(255,255,255,0.06); color: var(--gray); border: 1px solid var(--border); }
.orange-tag { background: rgba(245,124,0,0.12); color: #ffab40; border: 1px solid rgba(245,124,0,0.3); }
.yellow-tag { background: rgba(255,214,0,0.1); color: var(--gold); border: 1px solid rgba(255,214,0,0.3); }

/* ══════════════════════════════════════════════════
   SLIDE 01 — TITLE
══════════════════════════════════════════════════ */
.title-hero {
  font-family: var(--font-main);
  font-size: clamp(90px, 14vw, 180px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  background: linear-gradient(135deg, #fff 0%, #ff6b6b 50%, #ff0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.dollar-sign { font-size: 0.6em; vertical-align: top; margin-top: 14px; display: inline-block; }
.m-sign { font-size: 0.7em; }
.title-sub {
  font-family: var(--font-main);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.title-date {
  font-size: 13px;
  color: var(--gray2);
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}
.title-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  margin: 0 auto 28px;
}
.title-body {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 580px;
}
.title-body strong { color: var(--white); }
.scroll-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--red);
  cursor: pointer;
  font-family: var(--font-main);
}

/* ══════════════════════════════════════════════════
   CONFESSION SLIDE
══════════════════════════════════════════════════ */
.slide-headline {
  font-family: var(--font-main);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.confession-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}
.confession-line {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--gray);
  line-height: 1.5;
  font-style: italic;
  padding: 6px 0;
  border-left: 3px solid transparent;
  padding-left: 16px;
  transition: all 0.3s ease;
}
.confession-line.highlight-red {
  color: var(--white);
  border-left-color: var(--red);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════
   ASSET CARDS
══════════════════════════════════════════════════ */
.slide-subhead {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.6;
}
.slide-subhead .highlight-gold { color: var(--gold); font-weight: 700; }

.asset-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.asset-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.asset-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.btc-card::before { background: var(--btc); }
.eth-card::before { background: var(--eth); }
.sol-card::before { background: var(--sol); }
.doge-card::before { background: var(--doge); }
.sui-card::before { background: var(--sui); }
.asset-card:hover { transform: translateY(-4px); border-color: var(--border-light); }

.asset-icon { font-size: 28px; }
.btc-card .asset-icon { color: var(--btc); }
.eth-card .asset-icon { color: var(--eth); }
.sol-card .asset-icon { color: var(--sol); }
.doge-card .asset-icon { color: var(--doge); }
.sui-card .asset-icon { color: var(--sui); }

.asset-name { font-size: 12px; font-weight: 700; color: var(--gray); letter-spacing: 0.1em; }
.asset-amount { font-family: var(--font-main); font-size: 22px; font-weight: 800; color: var(--white); }
.asset-bar { width: 100%; height: 4px; background: var(--bg-card2); border-radius: 2px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 2px; transition: width 1.5s ease; }
.asset-pct { font-size: 11px; color: var(--gray); }

.total-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.total-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--gray); text-transform: uppercase; }
.total-amount { font-family: var(--font-main); font-size: 32px; font-weight: 900; }
.green { color: var(--green); }
.red-text, .red { color: var(--red); }
.orange-text, .orange { color: #ffab40; }
.gold-text, .gold { color: var(--gold); }
.green-text { color: var(--green); }

/* ══════════════════════════════════════════════════
   PIE CHART SLIDE
══════════════════════════════════════════════════ */
.col-text { padding-right: 20px; }
.col-chart { display: flex; flex-direction: column; align-items: center; }
.chart-wrap { position: relative; width: 100%; }
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}
.leg-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray);
}
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.slide-body {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.insight-box {
  background: rgba(229,57,53,0.08);
  border: 1px solid rgba(229,57,53,0.25);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px;
  font-size: 13px;
  color: #ff8a80;
  line-height: 1.5;
}
.insight-box i { margin-top: 2px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════
   PHASE SLIDES
══════════════════════════════════════════════════ */
.phase-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  font-family: var(--font-main);
  text-transform: uppercase;
}
.green-badge { background: rgba(0,200,83,0.12); color: var(--green); border: 1px solid rgba(0,200,83,0.3); }
.red-badge   { background: rgba(229,57,53,0.12); color: var(--red); border: 1px solid rgba(229,57,53,0.3); }
.orange-badge{ background: rgba(245,124,0,0.12); color: #ffab40; border: 1px solid rgba(245,124,0,0.3); }
.gray-badge  { background: rgba(136,146,164,0.1); color: var(--gray); border: 1px solid var(--border); }
.black-badge { background: rgba(229,57,53,0.2); color: #ff3333; border: 1px solid rgba(229,57,53,0.5); }

.phase-dates {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
  letter-spacing: 0.06em;
}
.phase-quote {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--border-light);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  font-style: italic;
  color: var(--gray);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.phase-quote i { color: var(--gray2); margin-top: 2px; flex-shrink: 0; }

/* Status grid */
.status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.status-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
}
.status-label { font-size: 11px; color: var(--gray); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.status-val { font-family: var(--font-main); font-size: 18px; font-weight: 700; }

/* PnL display */
.pnl-display {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.pnl-label { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; }
.pnl-value { font-family: var(--font-main); font-size: 28px; font-weight: 900; }

/* Hope bar */
.hope-bar { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 16px 20px; }
.hope-label { font-size: 11px; color: var(--gray); margin-bottom: 10px; }
.hope-track { height: 8px; background: var(--bg-card2); border-radius: 4px; overflow: hidden; margin-bottom: 8px; }
.hope-fill { height: 100%; background: linear-gradient(90deg, var(--green), #ffab40); border-radius: 4px; transition: width 1.5s ease; }
.hope-note { font-size: 12px; color: var(--gray2); }

/* Crack grid */
.crack-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.crack-item {
  background: var(--bg-card);
  border: 1px solid rgba(229,57,53,0.2);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}
.crack-asset { font-family: var(--font-main); font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.crack-move { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.from { color: var(--gray); }
.red-arrow { color: var(--red); }
.crack-note { font-size: 10px; color: var(--gray2); }

/* ══════════════════════════════════════════════════
   DEFENSE SLIDE
══════════════════════════════════════════════════ */
.defense-visual {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 28px 0;
}
.defense-before, .defense-after {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 36px;
  text-align: center;
}
.def-label { font-size: 12px; color: var(--gray); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.1em; }
.def-amount { font-family: var(--font-main); font-size: 40px; font-weight: 900; color: var(--white); }
.defense-after .def-amount { color: var(--gold); }
.defense-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.injection-badge {
  background: rgba(0,200,83,0.15);
  border: 1px solid rgba(0,200,83,0.3);
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 8px;
  font-family: var(--font-main);
}
.defense-arrow > i { font-size: 28px; color: var(--green); }

.defense-effects {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.effect-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
}
.effect-item.success { background: rgba(0,200,83,0.08); border: 1px solid rgba(0,200,83,0.2); color: var(--green); }
.effect-item.partial { background: rgba(245,124,0,0.08); border: 1px solid rgba(245,124,0,0.2); color: #ffab40; }
.effect-item.neutral { background: rgba(136,146,164,0.08); border: 1px solid var(--border); color: var(--gray); }

/* ══════════════════════════════════════════════════
   BREAKDOWN LIST
══════════════════════════════════════════════════ */
.breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.bd-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
}
.bd-asset { font-family: var(--font-main); font-size: 14px; font-weight: 800; color: var(--white); }
.bd-desc { font-size: 14px; color: var(--gray); }

/* ══════════════════════════════════════════════════
   BOUNCE VISUAL
══════════════════════════════════════════════════ */
.bounce-visual {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
.bounce-item {
  flex: 1;
  background: rgba(0,200,83,0.06);
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}
.bounce-asset { font-family: var(--font-main); font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.bounce-price { font-size: 15px; font-weight: 600; }

/* ══════════════════════════════════════════════════
   CHART CONTAINERS
══════════════════════════════════════════════════ */
.chart-container {
  position: relative;
  width: 100%;
  margin: 20px 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}
.chart-annotations {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.ann-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray);
}
.ann-item i { font-size: 8px; }
.ann-item.green { color: var(--green); }
.ann-item.orange { color: #ffab40; }
.ann-item.red { color: var(--red); }

/* ══════════════════════════════════════════════════
   FAILURE GRID
══════════════════════════════════════════════════ */
.failure-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.fail-item {
  background: var(--bg-card);
  border: 1px solid rgba(229,57,53,0.25);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}
.fail-icon { font-size: 20px; color: var(--red); margin-bottom: 8px; }
.fail-asset { font-family: var(--font-main); font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.fail-price { font-size: 12px; color: var(--gray); margin-bottom: 4px; }
.fail-status { font-size: 12px; font-weight: 600; }

/* ══════════════════════════════════════════════════
   EDGE METER
══════════════════════════════════════════════════ */
.edge-meter {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 28px;
}
.meter-label { font-size: 11px; color: var(--gray); letter-spacing: 0.1em; margin-bottom: 10px; text-transform: uppercase; }
.meter-track {
  position: relative;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}
.meter-zones {
  display: flex;
  height: 100%;
}
.zone {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.green-zone  { background: rgba(0,200,83,0.2); color: var(--green); }
.yellow-zone { background: rgba(255,214,0,0.15); color: var(--gold); }
.red-zone    { background: rgba(245,124,0,0.2); color: #ffab40; }
.dark-zone   { background: rgba(229,57,53,0.3); color: var(--red); }
.meter-needle {
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 10px rgba(255,255,255,0.8);
  transform: translateX(-50%);
  transition: left 1.5s cubic-bezier(0.4,0,0.2,1);
}
.meter-reading { font-size: 14px; font-weight: 700; text-align: center; }

.edge-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.edge-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.e-label { font-family: var(--font-main); font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.e-val { font-size: 14px; color: var(--gray); margin-bottom: 4px; }
.e-status { font-size: 12px; font-weight: 600; }

/* ══════════════════════════════════════════════════
   FINAL DEFENSE
══════════════════════════════════════════════════ */
.final-defense-visual {
  display: flex;
  gap: 30px;
  margin: 24px 0;
  justify-content: center;
}
.fd-inject, .fd-total {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 40px;
  text-align: center;
}
.fd-inject { border-color: rgba(0,200,83,0.3); }
.fd-total  { border-color: rgba(255,214,0,0.3); }
.fd-amount {
  font-family: var(--font-main);
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 6px;
}
.fd-inject .fd-amount { color: var(--green); }
.fd-total .fd-amount  { color: var(--gold); }
.fd-label { font-size: 12px; color: var(--gray); }

.fd-breakdown {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.fd-row {
  display: grid;
  grid-template-columns: 60px 1fr 70px;
  gap: 12px;
  align-items: center;
}
.fd-asset {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}
.btc-color  { color: var(--btc); }
.eth-color  { color: var(--eth); }
.sol-color  { color: var(--sol); }
.doge-color { color: var(--doge); }
.sui-color  { color: var(--sui); }

.fd-bar-wrap { height: 8px; background: var(--bg-card2); border-radius: 4px; overflow: hidden; }
.fd-bar-fill { height: 100%; border-radius: 4px; transition: width 1.5s ease; }
.fd-val { font-size: 13px; color: var(--gray); text-align: right; }

.fd-result {
  background: rgba(136,146,164,0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
}
.fd-result i { color: #ffab40; }

/* ══════════════════════════════════════════════════
   CAPITAL ESCALATION
══════════════════════════════════════════════════ */
.escalation-notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.esc-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray);
}
.esc-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.esc-dot.green  { background: var(--green); }
.esc-dot.orange { background: #ffab40; }
.esc-dot.red    { background: var(--red); }

/* ══════════════════════════════════════════════════
   FALSE HOPE
══════════════════════════════════════════════════ */
.false-hope-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}
.fh-candle { position: relative; display: flex; flex-direction: column; align-items: center; }
.fh-body { width: 40px; height: 80px; border-radius: 4px; }
.green-body { background: linear-gradient(180deg, #00e676, #00c853); box-shadow: 0 0 20px rgba(0,200,83,0.4); }
.fh-wick-top { width: 2px; height: 30px; background: #00c853; margin-bottom: 0; order: -1; }
.fh-wick-bottom { width: 2px; height: 20px; background: #00c853; }
.fh-arrow-down { font-size: 36px; color: var(--red); margin-top: 10px; animation: bounce-down 1.5s infinite; }
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

.fh-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 20px 0;
  width: 100%;
  max-width: 700px;
}
.fh-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.fh-label { font-size: 11px; color: var(--gray); margin-bottom: 6px; }
.fh-val { font-family: var(--font-main); font-size: 16px; font-weight: 700; }

/* ══════════════════════════════════════════════════
   ILLUSION SLIDE
══════════════════════════════════════════════════ */
.illusion-visual {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 20px 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 32px;
}
.illusion-candle { display: flex; flex-direction: column; align-items: center; }
.ill-wick-top { width: 2px; height: 24px; background: #00c853; }
.ill-body { width: 36px; height: 60px; border-radius: 4px; }
.ill-wick-bottom { width: 2px; height: 16px; background: #00c853; }
.illusion-text { text-align: left; }
.illusion-text p { font-size: 16px; color: var(--gray); margin-bottom: 6px; }

.illusion-quote-big {
  margin: 16px 0;
}
.illusion-quote-big p {
  font-family: var(--font-main);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 6px;
}

/* ══════════════════════════════════════════════════
   SILENCE
══════════════════════════════════════════════════ */
.flat-line-container {
  width: 100%;
  max-width: 500px;
  margin-bottom: 24px;
}
.flat-line-svg { width: 100%; height: 80px; }
.silence-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  text-align: left;
}
.sil-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray);
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* ══════════════════════════════════════════════════
   COLLAPSE SLIDE
══════════════════════════════════════════════════ */
.skull-icon { font-size: 48px; margin-bottom: 12px; animation: pulse-skull 2s infinite; }
.big-skull  { font-size: 80px; margin-bottom: 16px; }
@keyframes pulse-skull {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.1); opacity: 0.8; }
}

.collapse-headline { color: var(--red); text-shadow: 0 0 30px rgba(229,57,53,0.5); }

.collapse-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.col-item {
  background: rgba(229,57,53,0.08);
  border: 1px solid rgba(229,57,53,0.3);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}
.col-asset { font-family: var(--font-main); font-size: 15px; font-weight: 800; margin-bottom: 8px; }
.col-move { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; flex-wrap: wrap; margin-bottom: 4px; }
.col-move i { color: var(--red); }
.col-note { font-size: 10px; color: var(--gray2); }

.collapse-warning {
  background: rgba(229,57,53,0.12);
  border: 1px solid rgba(229,57,53,0.4);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
  justify-content: center;
}

/* ══════════════════════════════════════════════════
   LIQUIDATION SLIDE
══════════════════════════════════════════════════ */
.liq-price-box {
  background: rgba(229,57,53,0.1);
  border: 1px solid rgba(229,57,53,0.4);
  border-radius: 16px;
  padding: 28px 48px;
  margin: 20px 0;
  text-align: center;
}
.liq-wick { font-size: 13px; color: var(--gray); margin-bottom: 8px; }
.liq-price {
  font-family: var(--font-main);
  font-size: 52px;
  font-weight: 900;
  color: var(--red);
  text-shadow: 0 0 30px rgba(229,57,53,0.6);
  margin-bottom: 10px;
}
.liq-result {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--red);
  text-transform: uppercase;
}

.liq-amount { margin: 16px 0; }
.liq-loss-label { font-size: 12px; color: var(--gray); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.1em; }
.liq-loss-value {
  font-family: var(--font-main);
  font-size: 48px;
  font-weight: 900;
  color: var(--red);
}

.liq-bar-visual { width: 100%; max-width: 500px; }
.liq-bar-bg {
  height: 12px;
  background: var(--bg-card);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}
.liq-bar-fill { height: 100%; background: linear-gradient(90deg, var(--red), var(--red-dark)); border-radius: 6px; animation: bar-fill 2s ease forwards; }
@keyframes bar-fill { from { width: 0; } }
.liq-bar-label { font-size: 12px; color: var(--gray); }

/* ══════════════════════════════════════════════════
   CASCADE TIMELINE
══════════════════════════════════════════════════ */
.cascade-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 20px 0;
}
.cascade-item {
  display: grid;
  grid-template-columns: 20px 2px 1fr;
  gap: 16px;
  align-items: flex-start;
}
.cas-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}
.red-dot { background: var(--red); box-shadow: 0 0 10px var(--red-glow); }
.cas-line {
  width: 2px;
  background: rgba(229,57,53,0.3);
  height: 100%;
  min-height: 50px;
  margin-left: 50%;
}
.cas-line.last-line { background: transparent; }
.cas-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
.cas-asset { font-family: var(--font-main); font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.cas-event { font-size: 13px; color: var(--gray); margin-bottom: 6px; }
.cas-loss { font-family: var(--font-main); font-size: 20px; font-weight: 900; }

/* ══════════════════════════════════════════════════
   LOSS CHART TOTAL BOX
══════════════════════════════════════════════════ */
.total-loss-box {
  background: rgba(229,57,53,0.08);
  border: 1px solid rgba(229,57,53,0.3);
  border-radius: 12px;
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.tl-label { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; }
.tl-value { font-family: var(--font-main); font-size: 28px; font-weight: 900; color: var(--red); }

/* ══════════════════════════════════════════════════
   FULL TIMELINE
══════════════════════════════════════════════════ */
.full-timeline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 16px 0;
}
.ft-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  border-left: 3px solid transparent;
}
.ft-date { color: var(--gray2); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; }
.ft-event { color: var(--gray); }
.green-ft  { background: rgba(0,200,83,0.05); border-left-color: rgba(0,200,83,0.4); }
.red-ft    { background: rgba(229,57,53,0.05); border-left-color: rgba(229,57,53,0.4); }
.yellow-ft { background: rgba(255,214,0,0.05); border-left-color: rgba(255,214,0,0.4); }
.orange-ft { background: rgba(245,124,0,0.05); border-left-color: rgba(245,124,0,0.4); }
.black-ft  { background: rgba(229,57,53,0.1); border-left-color: var(--red); color: #ff8a80 !important; }
.black-ft .ft-event { color: #ff8a80; }
.last-ft   { margin-top: 4px; border-top: 1px solid rgba(229,57,53,0.3); padding-top: 12px; }

/* ══════════════════════════════════════════════════
   CORRELATION
══════════════════════════════════════════════════ */
.corr-insight {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.ci-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--gray);
}
.red-icon { color: var(--red); font-size: 16px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════
   WHY THIS HAPPENED
══════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.why-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.why-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.why-num {
  font-family: var(--font-main);
  font-size: 40px;
  font-weight: 900;
  color: rgba(229,57,53,0.15);
  position: absolute;
  top: 10px;
  right: 16px;
  line-height: 1;
}
.why-title { font-family: var(--font-main); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ══════════════════════════════════════════════════
   MARKET FACTORS
══════════════════════════════════════════════════ */
.market-factors {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}
.mf-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}
.mf-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(229,57,53,0.12);
  border: 1px solid rgba(229,57,53,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
  flex-shrink: 0;
}
.mf-title { font-family: var(--font-main); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.mf-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ══════════════════════════════════════════════════
   DECISION TABLE
══════════════════════════════════════════════════ */
.decision-table {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 20px;
}
.dt-header {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1.5fr;
  gap: 0;
  background: var(--bg-card2);
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-transform: uppercase;
}
.dt-row {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1.5fr;
  gap: 0;
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  transition: background 0.2s;
}
.dt-row:hover { background: rgba(255,255,255,0.02); }
.dt-point { color: var(--gray); }
.dt-actual { color: var(--red); font-weight: 600; }
.dt-alt { color: var(--green); font-weight: 600; }
.highlight-row { background: rgba(255,214,0,0.04) !important; border-top-color: rgba(255,214,0,0.2) !important; }

/* ══════════════════════════════════════════════════
   FINAL BREAKDOWN BARS
══════════════════════════════════════════════════ */
.final-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}
.fb-item {
  display: grid;
  grid-template-columns: 28px 80px 1fr 60px 50px;
  gap: 14px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
}
.fb-rank { font-size: 13px; color: var(--gray2); font-weight: 700; }
.fb-asset { display: flex; align-items: center; gap: 8px; }
.fb-icon { font-size: 18px; }
.fb-name { font-family: var(--font-main); font-size: 15px; font-weight: 800; }
.fb-bar-wrap { height: 8px; background: var(--bg-card2); border-radius: 4px; overflow: hidden; }
.fb-bar { height: 100%; border-radius: 4px; transition: width 1.5s ease; }
.fb-loss { font-family: var(--font-main); font-size: 18px; font-weight: 900; color: var(--red); text-align: right; }
.fb-pct { font-size: 12px; color: var(--gray); text-align: right; }

/* ══════════════════════════════════════════════════
   LESSONS
══════════════════════════════════════════════════ */
.lessons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.lesson-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  position: relative;
}
.lesson-num {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gray2);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.lesson-title { font-family: var(--font-main); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.lesson-body { font-size: 12px; color: var(--gray); line-height: 1.6; }

/* ══════════════════════════════════════════════════
   END SLIDE
══════════════════════════════════════════════════ */
.end-skull { font-size: 64px; margin-bottom: 16px; animation: pulse-skull 3s infinite; }
.end-headline {
  font-family: var(--font-main);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 400;
  color: var(--gray);
  margin-bottom: 16px;
  max-width: 600px;
  line-height: 1.4;
}
.end-amount {
  font-family: var(--font-main);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, #ff6b6b 50%, #ff0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}
.end-sub {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 28px;
}
.end-divider {
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 28px;
}
.end-truth { max-width: 600px; }
.end-truth p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  font-style: italic;
}
.end-final { font-weight: 600; margin-top: 8px; }
.end-footer {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.ef-stat { text-align: center; }
.ef-val {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 4px;
}
.ef-label { font-size: 11px; color: var(--gray2); text-transform: uppercase; letter-spacing: 0.1em; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .slide-inner { padding: 48px 40px 60px; }
  .asset-grid { grid-template-columns: repeat(3, 1fr); }
  .crack-grid { grid-template-columns: repeat(3, 1fr); }
  .failure-grid { grid-template-columns: repeat(3, 1fr); }
  .collapse-grid { grid-template-columns: repeat(3, 1fr); }
  .slide-inner.two-col { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .slide-inner { padding: 36px 24px 56px; }
  .asset-grid { grid-template-columns: repeat(2, 1fr); }
  .status-grid { grid-template-columns: repeat(2, 1fr); }
  .fh-stats { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .lessons-grid { grid-template-columns: repeat(2, 1fr); }
  .dt-header, .dt-row { grid-template-columns: 1fr 1fr 1fr; font-size: 11px; padding: 10px 12px; }
  .fb-item { grid-template-columns: 24px 60px 1fr 50px; }
  .fb-pct { display: none; }
  .nav-prev { left: 8px; }
  .nav-next { right: 8px; }
  .end-footer { gap: 20px; }
  .final-defense-visual { flex-direction: column; }
  .defense-visual { flex-direction: column; }
}
