@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Patrick+Hand&family=Inter:wght@400;600;700;900&family=Special+Elite&display=swap');

:root {
  --btc-orange: #F7931A;
  --btc-gold: #FFD700;
  --btc-dark: #0D1117;
  --btc-darker: #080B10;
  --paper-cream: #FFF8E7;
  --paper-aged: #F0E4C8;
  --tape-yellow: rgba(255, 235, 130, 0.65);
  --red-stamp: #CC2222;
  --blue-ink: #1a3a5c;
  --green-profit: #00C853;
  --neon-orange: #FF6B00;
}

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

body {
  background: var(--btc-darker);
  color: #e0e0e0;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Ticker Banner */
.ticker-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(90deg, #1a0800, #2a1000, #1a0800);
  border-bottom: 2px solid var(--btc-orange);
  padding: 8px 0;
  overflow: hidden;
}
.ticker {
  display: flex;
  animation: scroll-left 60s linear infinite;
  white-space: nowrap;
}
.ticker span {
  font-family: 'Special Elite', monospace;
  font-size: 13px;
  color: var(--btc-orange);
  padding: 0 36px;
  opacity: 0.9;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 60px 20px 40px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(247,147,26,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(247,147,26,0.05) 0%, transparent 50%),
    var(--btc-darker);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F7931A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--btc-orange), #E8820F);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.hero h1 .line1 {
  display: block;
  color: #fff;
}
.hero h1 .line2 {
  display: block;
  background: linear-gradient(90deg, var(--btc-orange), var(--btc-gold), var(--btc-orange));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease infinite;
}
@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-sub {
  font-family: 'Patrick Hand', cursive;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: #aaa;
  margin-top: 20px;
  max-width: 680px;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}
.death-counter {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.death-counter .number {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--red-stamp);
  text-shadow: 0 0 40px rgba(204,34,34,0.3);
  line-height: 1;
  animation: glow-pulse 3s ease-in-out infinite;
}
.death-counter .label {
  font-family: 'Special Elite', monospace;
  font-size: 16px;
  color: #888;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.counter-sub {
  font-family: 'Patrick Hand', cursive;
  font-size: 15px;
  color: var(--green-profit);
  margin-top: 8px;
  opacity: 0.8;
}
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bob 2s ease-in-out infinite;
  color: var(--btc-orange);
  font-size: 28px;
  opacity: 0.6;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Price Scoreboard */
.scoreboard {
  background: linear-gradient(180deg, #0a0f16 0%, #111820 100%);
  border-top: 1px solid rgba(247,147,26,0.2);
  border-bottom: 1px solid rgba(247,147,26,0.2);
  padding: 50px 20px;
  text-align: center;
}
.scoreboard h2 {
  font-family: 'Special Elite', monospace;
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--btc-orange);
  margin-bottom: 30px;
}
.price-timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-chip {
  background: rgba(247,147,26,0.08);
  border: 1px solid rgba(247,147,26,0.15);
  border-radius: 8px;
  padding: 10px 14px;
  min-width: 90px;
  transition: all 0.3s;
}
.price-chip:hover {
  background: rgba(247,147,26,0.15);
  border-color: var(--btc-orange);
  transform: translateY(-2px);
}
.price-chip .yr {
  font-size: 11px;
  color: #777;
  font-weight: 700;
  letter-spacing: 1px;
}
.price-chip .pr {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: var(--green-profit);
  margin-top: 2px;
}
.scoreboard .punchline {
  margin-top: 30px;
  font-family: 'Patrick Hand', cursive;
  font-size: 20px;
  color: #ccc;
}
.scoreboard .punchline em {
  color: var(--btc-orange);
  font-style: normal;
  font-weight: 700;
}

/* Section titles */
.section-title {
  text-align: center;
  padding: 70px 20px 10px;
}
.section-title h2 {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
}
.section-title h2 span { color: var(--btc-orange); }
.section-title p {
  font-family: 'Patrick Hand', cursive;
  font-size: 18px;
  color: #888;
  margin-top: 8px;
}

/* Audacity marquee */
.audacity-bar {
  background: var(--btc-orange);
  padding: 10px 0;
  overflow: hidden;
  margin: 0;
}
.audacity-bar .inner {
  display: flex;
  animation: scroll-right 40s linear infinite;
  white-space: nowrap;
}
.audacity-bar span {
  font-family: 'Permanent Marker', cursive;
  font-size: 18px;
  color: #000;
  padding: 0 50px;
}
@keyframes scroll-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   IRONIC REVERSALS — NEW SECTION
   ============================================ */
.reversals {
  background: linear-gradient(180deg, var(--btc-darker), #0a0a14, var(--btc-darker));
  padding: 0 20px 80px;
}
.reversals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 30px auto 0;
}
.reversal-card {
  background: linear-gradient(145deg, #111118, #161622);
  border: 1px solid rgba(247,147,26,0.12);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.reversal-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}
.reversal-card:hover {
  border-color: var(--btc-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(247,147,26,0.08);
}
.reversal-card::before {
  content: '🔄';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  opacity: 0.4;
}
.reversal-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--btc-orange), #CC6600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
}
.reversal-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.reversal-timeline {
  margin-bottom: 16px;
}
.reversal-then {
  background: rgba(204,34,34,0.08);
  border-left: 3px solid var(--red-stamp);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 8px;
}
.reversal-now {
  background: rgba(0,200,83,0.08);
  border-left: 3px solid var(--green-profit);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
}
.reversal-label {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}
.reversal-quote {
  font-family: 'Patrick Hand', cursive;
  font-size: 16px;
  color: var(--red-stamp);
  line-height: 1.4;
  margin-bottom: 6px;
}
.reversal-fact {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--green-profit);
  line-height: 1.5;
  margin-bottom: 6px;
}
.reversal-arrow {
  text-align: center;
  font-size: 18px;
  padding: 4px 0;
  color: #666;
}
.reversal-roast {
  font-family: 'Patrick Hand', cursive;
  font-size: 15px;
  color: #ccc;
  line-height: 1.5;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(247,147,26,0.15);
}

/* Milk Rating Badge */
.milk-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(247,147,26,0.1);
  border: 1px solid rgba(247,147,26,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  margin-top: 12px;
  font-size: 12px;
}
.milk-emoji { font-size: 16px; }
.milk-label {
  font-family: 'Special Elite', monospace;
  color: var(--btc-orange);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   IF YOU LISTENED CALCULATOR — NEW SECTION
   ============================================ */
.milk-calc {
  background: linear-gradient(180deg, #080b10, #0d1218, #080b10);
  padding: 0 20px 80px;
}
.calc-container {
  max-width: 700px;
  margin: 30px auto 0;
}
.calc-select-wrap {
  position: relative;
}
.calc-select {
  width: 100%;
  padding: 14px 20px;
  background: #151520;
  border: 2px solid rgba(247,147,26,0.3);
  border-radius: 12px;
  color: #ddd;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F7931A' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.calc-select:focus {
  outline: none;
  border-color: var(--btc-orange);
}
.calc-select option {
  background: #151520;
  color: #ddd;
}
.calc-card {
  background: linear-gradient(145deg, #111118, #161622);
  border: 1px solid rgba(247,147,26,0.15);
  border-radius: 16px;
  padding: 32px;
  margin-top: 20px;
  animation: fadeSlideIn 0.4s ease;
}
.calc-quote {
  font-family: 'Patrick Hand', cursive;
  font-size: 20px;
  color: var(--red-stamp);
  line-height: 1.4;
  margin-bottom: 8px;
}
.calc-who {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}
.calc-numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.calc-stat {
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.calc-stat-label {
  font-size: 11px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.calc-stat-value {
  font-family: 'Permanent Marker', cursive;
  font-size: 24px;
  color: #fff;
}
.calc-stat-value.green { color: var(--green-profit); }
.calc-stat-value.red { color: var(--red-stamp); }
.calc-verdict {
  font-family: 'Patrick Hand', cursive;
  font-size: 18px;
  color: #ccc;
  text-align: center;
  padding: 12px;
  background: rgba(247,147,26,0.05);
  border-radius: 10px;
  margin-bottom: 12px;
}

/* ============================================
   OBITUARY STRIP
   ============================================ */
.obit-strip {
  background: linear-gradient(90deg, #1a0000, #2a0500, #1a0000);
  border-top: 1px solid rgba(204,34,34,0.3);
  border-bottom: 1px solid rgba(204,34,34,0.3);
  padding: 50px 20px;
  text-align: center;
}
.obit-strip h2 {
  font-family: 'Special Elite', monospace;
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red-stamp);
  margin-bottom: 20px;
}
.obit-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  max-width: 900px;
  margin: 0 auto;
}
.obit-yr {
  background: rgba(204,34,34,0.08);
  border: 1px solid rgba(204,34,34,0.15);
  border-radius: 8px;
  padding: 10px 14px;
  min-width: 85px;
  transition: all 0.3s;
}
.obit-yr:hover {
  background: rgba(204,34,34,0.15);
  border-color: var(--red-stamp);
}
.obit-yr .yr { font-size: 11px; color: #777; font-weight: 700; }
.obit-yr .ct {
  font-family: 'Permanent Marker', cursive;
  font-size: 22px;
  color: var(--red-stamp);
  margin-top: 2px;
}
.obit-zero {
  border-color: rgba(0,200,83,0.3) !important;
  background: rgba(0,200,83,0.08) !important;
}
.obit-zero .ct {
  color: var(--green-profit) !important;
}
.obit-note {
  font-size: 9px;
  color: var(--green-profit);
  margin-top: 2px;
}
.obit-punchline {
  font-family: 'Patrick Hand', cursive;
  font-size: 18px;
  color: #ccc;
  margin-top: 24px;
}
.obit-punchline strong {
  color: var(--green-profit);
  font-size: 22px;
}

/* ============================================
   SCRAPBOOK TIMELINE
   ============================================ */
.scrapbook {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px 80px;
  position: relative;
}
.scrapbook::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: repeating-linear-gradient(
    180deg,
    var(--btc-orange) 0px,
    var(--btc-orange) 8px,
    transparent 8px,
    transparent 16px
  );
  transform: translateX(-50%);
  opacity: 0.3;
}

/* Year marker */
.year-marker {
  text-align: center;
  position: relative;
  z-index: 2;
  margin: 50px 0 30px;
}
.year-marker .year-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1a1000, #2a1800);
  border: 2px solid var(--btc-orange);
  border-radius: 50px;
  padding: 10px 28px;
  font-family: 'Permanent Marker', cursive;
  font-size: 26px;
  color: var(--btc-orange);
}
.year-marker .year-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--green-profit);
  background: rgba(0,200,83,0.1);
  padding: 3px 10px;
  border-radius: 12px;
}
.year-marker .deaths-badge {
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  color: var(--red-stamp);
  display: block;
  margin-top: 6px;
  letter-spacing: 1px;
}

/* Quote Card */
.quote-card {
  position: relative;
  max-width: 540px;
  margin: 25px 0;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
}
.quote-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}
.quote-card:nth-child(odd) {
  margin-left: 55%;
}
.quote-card:nth-child(even) {
  margin-right: 55%;
  margin-left: auto;
  text-align: right;
}
.quote-card:nth-child(even) .card-inner { text-align: left; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.card-inner {
  background: var(--paper-cream);
  border-radius: 2px;
  padding: 24px 28px 20px;
  position: relative;
  box-shadow:
    2px 3px 12px rgba(0,0,0,0.4),
    inset 0 0 60px rgba(200,180,140,0.15);
  transform: rotate(var(--rot, -0.8deg));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.card-inner:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 4px 6px 25px rgba(0,0,0,0.5);
  z-index: 10;
}

/* Tape effect */
.card-inner::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 30px;
  width: 80px;
  height: 24px;
  background: var(--tape-yellow);
  transform: rotate(-2deg);
  border-radius: 1px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Stamp */
.stamp {
  position: absolute;
  top: 10px;
  right: 15px;
  font-family: 'Permanent Marker', cursive;
  font-size: 16px;
  color: var(--red-stamp);
  transform: rotate(12deg);
  opacity: 0.4;
  border: 3px solid var(--red-stamp);
  border-radius: 6px;
  padding: 2px 8px;
  line-height: 1.2;
  pointer-events: none;
  max-width: 140px;
  text-align: center;
}

.quote-text {
  font-family: 'Patrick Hand', cursive;
  font-size: 19px;
  color: var(--blue-ink);
  line-height: 1.5;
  margin-bottom: 14px;
  position: relative;
}
.quote-text::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 60px;
  color: var(--btc-orange);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
}
.quote-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.quote-meta .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--btc-orange), #CC6600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}
.quote-meta .info { flex: 1; }
.quote-meta .name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #333;
}
.quote-meta .role {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #888;
}

.source-link {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--btc-orange);
  text-decoration: none;
  border-bottom: 1px dashed var(--btc-orange);
  white-space: nowrap;
}
.source-link:hover { color: #E8820F; }

.source-link-sm {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--btc-orange);
  text-decoration: none;
  border-bottom: 1px dashed rgba(247,147,26,0.4);
  margin-left: 4px;
}

.quote-prices {
  margin-top: 10px;
}
.btc-at-time {
  display: inline-block;
  background: #1a3a1a;
  color: var(--green-profit);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
}
.btc-now {
  display: inline-block;
  background: rgba(247,147,26,0.15);
  color: var(--btc-orange);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  margin-left: 6px;
}

/* Roast line on cards */
.quote-roast {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #666;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #ddd;
  line-height: 1.5;
  font-style: italic;
}

/* Card rotation variations */
.quote-card:nth-child(3n+1) .card-inner { --rot: -1.2deg; }
.quote-card:nth-child(3n+2) .card-inner { --rot: 0.8deg; }
.quote-card:nth-child(3n)   .card-inner { --rot: -0.5deg; }

/* ============================================
   HALL OF SHAME
   ============================================ */
.hall-of-shame {
  background: linear-gradient(180deg, var(--btc-darker), #0a0500, var(--btc-darker));
  padding: 80px 20px;
}
.shame-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 30px auto 0;
}
.shame-card {
  background: linear-gradient(145deg, #151515, #1a1a1a);
  border: 1px solid rgba(247,147,26,0.1);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}
.shame-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}
.shame-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red-stamp), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.shame-card:hover {
  border-color: var(--btc-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(247,147,26,0.1);
}
.shame-card:hover::before { opacity: 1; }
.shame-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--btc-orange), #CC6600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  margin: 0 auto 14px;
}
.shame-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.shame-card .shame-role {
  font-size: 12px;
  color: #777;
  margin-bottom: 12px;
}
.shame-card .shame-count {
  font-family: 'Permanent Marker', cursive;
  font-size: 36px;
  color: var(--red-stamp);
  line-height: 1;
}
.shame-card .shame-count-label {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  color: #666;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
.shame-card .worst-quote {
  font-family: 'Patrick Hand', cursive;
  font-size: 14px;
  color: #aaa;
  margin-top: 14px;
  font-style: italic;
  line-height: 1.4;
}
.shame-roast {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #888;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.1);
  line-height: 1.5;
  text-align: left;
}
.shame-funfact {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--btc-orange);
  margin-top: 10px;
  line-height: 1.4;
  text-align: left;
  background: rgba(247,147,26,0.05);
  padding: 8px 12px;
  border-radius: 8px;
}

/* ============================================
   THE SCHIFF SHOW — Peter Schiff's Greatest Misses
   ============================================ */
.schiff-show {
  background: linear-gradient(180deg, var(--btc-darker), #0d0800, var(--btc-darker));
  padding: 0 20px 80px;
}
.schiff-scoreboard {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 600px;
  margin: 20px auto 30px;
  padding: 20px;
  background: rgba(247,147,26,0.05);
  border: 1px solid rgba(247,147,26,0.15);
  border-radius: 12px;
}
.schiff-stat {
  text-align: center;
}
.schiff-stat-number {
  font-family: 'Permanent Marker', cursive;
  font-size: 28px;
  color: #ccc;
}
.schiff-stat-number.schiff-btc-return {
  color: var(--green-profit);
}
.schiff-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #888;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.schiff-vs {
  font-family: 'Permanent Marker', cursive;
  font-size: 22px;
  color: var(--btc-orange);
}
.schiff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.schiff-card {
  background: linear-gradient(145deg, #1a1408, #18150a);
  border: 1px solid rgba(247,147,26,0.12);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.schiff-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}
.schiff-card:hover {
  border-color: rgba(247,147,26,0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(247,147,26,0.06);
}
.schiff-date {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  color: #888;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.schiff-quote {
  font-family: 'Patrick Hand', cursive;
  font-size: 17px;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 8px;
}
.schiff-snark {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--btc-orange);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(247,147,26,0.2);
  line-height: 1.5;
  font-style: italic;
}
.schiff-prices {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.schiff-gold-tag {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  color: #c9a84c;
  margin-top: 8px;
  opacity: 0.7;
}

/* ============================================
   KRUGMAN CORNER — NEW SECTION
   ============================================ */
.krugman-corner {
  background: linear-gradient(180deg, var(--btc-darker), #0a0010, var(--btc-darker));
  padding: 0 20px 80px;
}
.krugman-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 30px auto 0;
}
.krugman-card {
  background: linear-gradient(145deg, #12101a, #181520);
  border: 1px solid rgba(160,100,200,0.15);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.krugman-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}
.krugman-card:hover {
  border-color: rgba(160,100,200,0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(160,100,200,0.08);
}
.krugman-date {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  color: #888;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.krugman-quote {
  font-family: 'Patrick Hand', cursive;
  font-size: 17px;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 8px;
}
.krugman-snark {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--btc-orange);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(160,100,200,0.2);
  line-height: 1.5;
  font-style: italic;
}
.krugman-price {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto 20px;
  padding: 0 20px;
}
.filter-btn {
  background: rgba(247,147,26,0.08);
  border: 1px solid rgba(247,147,26,0.2);
  color: #aaa;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--btc-orange);
  color: #000;
  border-color: var(--btc-orange);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  text-align: center;
  padding: 60px 20px;
  background: var(--btc-darker);
  border-top: 1px solid rgba(247,147,26,0.1);
}
footer .logo {
  font-family: 'Permanent Marker', cursive;
  font-size: 24px;
  color: var(--btc-orange);
  margin-bottom: 10px;
}
footer p {
  font-size: 13px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
footer .disclaimer {
  margin-top: 20px;
  font-size: 11px;
  color: #444;
  line-height: 1.7;
}
footer .disclaimer strong {
  color: #666;
}
footer .disclaimer a {
  color: var(--btc-orange);
  text-decoration: none;
}

/* Glow pulse on death count */
@keyframes glow-pulse {
  0%, 100% { text-shadow: 0 0 20px rgba(204,34,34,0.2); }
  50% { text-shadow: 0 0 40px rgba(204,34,34,0.5); }
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 800px) {
  .scrapbook::before { left: 20px; }
  .quote-card,
  .quote-card:nth-child(odd),
  .quote-card:nth-child(even) {
    max-width: 100%;
    margin-left: 40px !important;
    margin-right: 0 !important;
    text-align: left;
  }
  .year-marker .year-pill { font-size: 20px; padding: 8px 20px; }
  .shame-grid { grid-template-columns: 1fr; max-width: 400px; }
  .reversals-grid { grid-template-columns: 1fr; }
  .schiff-grid { grid-template-columns: 1fr; }
  .krugman-grid { grid-template-columns: 1fr; }
  .calc-numbers { grid-template-columns: 1fr 1fr; }
  .stamp { font-size: 13px; max-width: 110px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1rem; }
  .calc-numbers { grid-template-columns: 1fr; }
}
