body {
    font-family: 'JetBrains Mono', monospace;
    background-color: black;
    color: limegreen;
}

/* ── Blinking cursor ── */
.terminal-text {
    position: relative;
    display: inline-block;
}

.terminal-text::after {
    content: "";
    position: absolute;
    right: -4px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: limegreen;
    animation: blink 1s step-end infinite;
}

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