:root {
    --void: #050505;
    --text: #e0e0e0;
    --accent: #D4AF37; /* Or Rubedo */
    --terminal: #33ff00; 
    --font-sacred: 'Cinzel', serif;
    --font-tech: 'Space Mono', monospace;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);
}

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

body {
    background-color: var(--void);
    color: var(--text);
    font-family: var(--font-tech);
    overflow-x: hidden;
    line-height: 1.8;
    cursor: none; /* Custom cursor global */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- UTILS --- */
.hacker-text {
    font-family: var(--font-tech);
}

.highlight {
    color: var(--accent);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.cursor {
    display: inline-block;
    width: 10px;
    background-color: var(--accent);
    animation: blink 1s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* --- CRT SCANLINES OVERLAY --- */
.crt::before {
    content: " ";
    display: block;
    position: fixed; /* Fixed to cover updated scroll */
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 900;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

/* Background Canvas */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.2;
}
