:root {
    --neon-pink: #ff00ff;
    --neon-blue: #00f2ff;
    --neon-blue-dead: #003e42;
    --wood-dark: #24180f;
    --wood-med: #3d2b1f;
    --silver-trim: #c0c0c0;
}
* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    background-attachment: fixed;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    background-repeat: repeat;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #080808; }
::-webkit-scrollbar-thumb { background: #222; border: 1px solid #333; }