:root {
    --bg: #0a0512;
    --neon-pink: #ff007f;
    --neon-yellow: #ffea00;
    --font: 'Press Start 2P', monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: #fff; font-family: var(--font); overflow: hidden; height: 100vh; }

.crt-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%); background-size: 100% 4px; pointer-events: none; z-index: 100; }

.nav { padding: 2.5rem 4rem; display: flex; justify-content: space-between; border-bottom: 2px solid var(--neon-pink); }
.logo { font-size: 1.2rem; color: var(--neon-pink); text-shadow: 2px 2px var(--neon-yellow); }
.credits { font-size: 0.8rem; color: var(--neon-yellow); }

.hero { height: calc(100vh - 100px); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 2rem; }
h1 { font-size: 2.2rem; line-height: 1.4; color: #fff; text-shadow: 3px 3px var(--neon-pink); margin-bottom: 2rem; max-width: 900px; }
p { font-size: 0.9rem; color: var(--neon-yellow); line-height: 1.8; max-width: 650px; margin-bottom: 3rem; }

.btn-coin { background: var(--neon-pink); color: #fff; border: none; padding: 1rem 2rem; font-family: var(--font); font-size: 0.9rem; cursor: pointer; box-shadow: 4px 4px 0 var(--neon-yellow); }
.btn-coin:hover { background: var(--neon-yellow); color: #000; box-shadow: 4px 4px 0 var(--neon-pink); }