/* Global Styles */
body {
    background-color: #fcfcfc;
    /* Off-white for paper feel */
    color: #1a1a1a;
    /* Dark gray for crisp text */
    font-family: 'Courier New', Courier, monospace;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Container */
.terminal-container {
    font-size: 2.5rem;
    /* Large, crisp text */
    font-weight: bold;
    letter-spacing: -0.05em;
    /* Tighter letter spacing for retro feel */
    /* text-shadow removed for clean light mode look */
}

/* Cursor Animation */
.cursor {
    display: inline-block;
    vertical-align: bottom;
    width: 0.6em;
    height: 1.2em;
    /* Block cursor */
    background-color: #1a1a1a;
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    /* Slightly lighter than main text */
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .terminal-container {
        font-size: 1.5rem;
    }
}