:root {
    --bg-color: #0d0208;
    --neon-green: #00ff41;
    --neon-purple: #bc13fe;
    --text-color: #00ff41;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'VT323', monospace;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    text-transform: uppercase;
}

/* --- THE CRT VIBE --- */
.crt-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 100%),
                linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%),
                linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 10;
    pointer-events: none;
    background-size: 100% 100%, 100% 2px, 3px 100%;
}

.scanlines {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.1));
    background-size: 100% 4px;
    z-index: 11;
    pointer-events: none;
    animation: scanline 10s linear infinite;
}

/* --- LAYOUT --- */
.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    z-index: 2;
    position: relative;
}

.bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.box {
    border: 2px solid var(--neon-green);
    padding: 20px;
    background: rgba(0, 255, 65, 0.05);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
    position: relative;
}

.box:hover {
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

/* --- ANIMATIONS --- */
@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

h1 { font-size: 3rem; margin: 0; color: var(--neon-purple); text-shadow: 2px 2px #000; }
a { color: var(--neon-green); text-decoration: none; }
a:hover { background: var(--neon-green); color: var(--bg-color); }
