/* -------------------------------------------------
   Terminal‑style theme – mobile‑friendly version
   ------------------------------------------------- */

/* Global page styling – black background, centered layout */
html,
body {
    min-height: 100vh;
    margin: 0;
    padding: 0 1rem;
    background-color: #000;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(0.8rem, 2.5vw, 1.1rem);

    width: 90%;
    max-width: 70ch;
    margin-inline: auto;
}

/* Optional smooth scrolling */
html {
    scroll-behavior: smooth;
    overflow-y: auto;
}

/* Links */
a {
    color: #00ff00;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Paragraphs */
p {
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Blinking cursor */
.cursor::after {
    content: '_';
    animation: blink 1s steps(2) infinite;
}

/* Disable text selection (authentic feel) */
/*body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}*/

/* Ultra‑small screens */
@media (max-width: 320px) {
    html,
    body {
        padding: 0 0.5rem;
        max-width: 55ch;
    }
}