/* Retro CRT Monitor Styling */
body {
    background-color: #030a05;
    color: #39ff14; /* Classic neon terminal green */
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.7);
}

/* Scanline Overlay Effect */
body::before {
    content: " ";
    display: block;
    position: absolute;
    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: 2;
    background-size: 100% 4px, 6px 100%;
    pointer-events: none;
}

/* Screen Flicker Simulation */
.terminal-container {
    text-align: center;
    border: 2px solid #39ff14;
    padding: 40px;
    background-color: rgba(5, 20, 5, 0.85);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    border-radius: 4px;
    animation: flicker 0.15s infinite;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

p {
    font-size: 1.1rem;
    margin-top: 0;
    opacity: 0.85;
}

/* Blinking Cursor */
.cursor {
    display: inline-block;
    background-color: #39ff14;
    width: 10px;
    height: 18px;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    margin-left: 5px;
}

/* Animations */
@keyframes blink {
    from, to { background-color: transparent }
    50% { background-color: #39ff14; }
}

@keyframes flicker {
    0% { opacity: 0.98; }
    50% { opacity: 1; }
    100% { opacity: 0.99; }
}
