:root {
  --void: #111015;
  --chart-red: #E83B3B;
  --monitor-glow: #2A1F3D;
  --exhausted-white: #C8C2BC;
  --ash: #5A5458;
}

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

body {
  background: var(--void);
  color: var(--exhausted-white);
  font-family: 'Geist Mono', monospace;
  min-height: 100vh;
  cursor: default;
  overflow-x: hidden;
}

/* ── CRT scan lines ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 2px,
    rgba(255,255,255,0.008) 2px,
    rgba(255,255,255,0.008) 3px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ── Background falling charts ── */
.bg-charts {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-charts svg {
  position: absolute;
  opacity: 0.04;
}

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17,16,21,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(232,59,59,0.08);
  padding: 12px 20px;
}

.header-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.header-btn {
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--monitor-glow);
  border: 1px solid rgba(232,59,59,0.15);
  color: var(--exhausted-white);
  padding: 8px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  border-radius: 0;
}

.header-btn:hover {
  border-color: var(--chart-red);
}

.header-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Main content ── */
.main {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 20px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Hero ── */
.ticker {
  font-family: 'Anybody', sans-serif;
  font-size: clamp(60px, 12vw, 120px);
  color: var(--chart-red);
  text-shadow: 0 0 40px rgba(232,59,59,0.2);
  letter-spacing: -2px;
  line-height: 1;
  text-align: center;
  font-weight: 900;
}

.hero-img {
  width: 100%;
  max-width: 480px;
  margin-top: 32px;
  border: 1px solid rgba(232,59,59,0.1);
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(232,59,59,0.06);
  display: block;
}

/* ── DoomPost block ── */
.doom-block {
  width: 100%;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reason-card {
  width: 100%;
  background: var(--monitor-glow);
  border: 1px solid rgba(232,59,59,0.12);
  padding: 32px;
  cursor: pointer;
  transition: border-color 0.2s;
  user-select: none;
}

.reason-card:hover {
  border-color: rgba(232,59,59,0.3);
}

.reason-text {
  font-family: 'Geist Mono', monospace;
  font-size: clamp(14px, 2vw, 16px);
  color: var(--exhausted-white);
  line-height: 1.6;
}

.reason-hint {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--ash);
  margin-top: 12px;
  text-align: center;
}

.doom-btn {
  font-family: 'Anybody', sans-serif;
  font-size: 22px;
  font-weight: 700;
  background: var(--chart-red);
  color: var(--void);
  border: none;
  border-radius: 0;
  padding: 14px 48px;
  margin-top: 24px;
  cursor: pointer;
  transition: filter 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
}

.doom-btn:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 20px rgba(232,59,59,0.3);
}

/* ── All reasons section ── */
.reasons-section {
  width: 100%;
  margin-top: 80px;
}

.reasons-title {
  font-family: 'Anybody', sans-serif;
  font-size: 24px;
  color: var(--chart-red);
  margin-bottom: 32px;
  font-weight: 700;
}

.reasons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reasons-list li {
  font-family: 'Geist Mono', monospace;
  font-size: 14px;
  color: var(--ash);
  line-height: 1.5;
}

.reasons-list li::before {
  content: '– ';
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  background: var(--chart-red);
  color: var(--void);
  padding: 10px 24px;
  z-index: 10000;
  transition: bottom 0.3s ease;
  white-space: nowrap;
  border-radius: 0;
}

.toast.show {
  bottom: 32px;
}

/* ── Responsive ── */
@media (max-width: 520px) {
  .header-inner {
    gap: 6px;
  }
  .header-btn {
    font-size: 11px;
    padding: 7px 10px;
  }
  .reason-card {
    padding: 24px 20px;
  }
  .doom-btn {
    font-size: 18px;
    padding: 12px 36px;
  }
}
