diff --git a/index.html b/index.html index e367e84..bd483e6 100644 --- a/index.html +++ b/index.html @@ -85,7 +85,6 @@

AI DEATH CLOCK

-
5 MIN TO MIDNIGHT
0.0% of the way to the final threshold
diff --git a/src/js/18-scary-features.js b/src/js/18-scary-features.js index eb4c80d..df1894d 100644 --- a/src/js/18-scary-features.js +++ b/src/js/18-scary-features.js @@ -21,17 +21,6 @@ const hand = document.getElementById('doomMinHand'); if (hand) hand.setAttribute('transform', `rotate(${angle}, 50, 50)`); - // Text display - const minsLeft = Math.max(0, (1 - doomPercent) * 5); - const timeEl = document.getElementById('doomTimeText'); - if (timeEl) { - if (minsLeft < 0.05) { - timeEl.textContent = '☠️ MIDNIGHT'; - } else { - timeEl.textContent = minsLeft.toFixed(1) + ' MIN TO MIDNIGHT'; - } - } - // Percentage text const pctEl = document.getElementById('doomTokenPct'); if (pctEl) pctEl.textContent = (doomPercent * 100).toFixed(1) + '%'; diff --git a/styles/scary-features.css b/styles/scary-features.css index 1283d11..05ab312 100644 --- a/styles/scary-features.css +++ b/styles/scary-features.css @@ -76,15 +76,6 @@ min-width: 160px; } -.doomsday-time { - font-family: 'Orbitron', monospace; - font-size: clamp(0.75rem, 2.5vw, 1.1rem); - font-weight: 900; - color: var(--accent); - text-shadow: 0 0 10px var(--accent-glow); - letter-spacing: 0.08em; -} - .doomsday-sub { font-size: 0.68rem; color: rgba(255,255,255,0.45);