:root {
    --bg: #051409;
    --green: #22c55e;
    --font: 'Press Start 2P', monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--green); font-family: var(--font); overflow: hidden; height: 100vh; }

.nav { padding: 2.5rem 4rem; display: flex; justify-content: space-between; border-bottom: 2px solid var(--green); }
.logo { font-size: 1.2rem; }
.chip { font-size: 0.8rem; }

.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; margin-bottom: 2rem; max-width: 900px; text-shadow: 3px 3px #000; }
p { font-size: 0.9rem; line-height: 1.8; max-width: 650px; }