body {
    margin: 0;
    background: #000;
    color: #00ff88;
    font-family: "Courier New", monospace;
    overflow: hidden;
}

/* canvas layers */
#noise, #scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#noise {
    z-index: 1;
    opacity: 0.08;
}

#scanlines {
    z-index: 2;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 3;
    padding: 40px;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
    text-shadow: 0 0 8px #00ff88;
}

.terminal {
    white-space: pre-line;
    line-height: 1.6;
}

.cursor {
    display: inline-block;
    width: 10px;
    background: #00ff88;
    margin-left: 5px;
    animation: blink 1s infinite;
}

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