* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    background: #0d0d0d;
    font-family: 'Courier New', Courier, monospace;
}

/* Full-screen terminal */
.terminal {
    height: 100vh !important;
    width: 100vw !important;
    background: #0d0d0d !important;
    padding: 20px 28px !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

/* Prompt color — bright green */
.terminal .cmd .prompt span {
    color: #00ff41 !important;
}

/* Default output text — slightly off-white for readability */
.terminal .terminal-output div div {
    color: #c8c8c8 !important;
}

/* Cursor */
.terminal .cmd .cursor {
    background: #00ff41 !important;
}

/* Scrollbar */
.terminal::-webkit-scrollbar {
    width: 6px;
}
.terminal::-webkit-scrollbar-track {
    background: #0d0d0d;
}
.terminal::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

/* Input text */
.terminal .cmd {
    color: #c8c8c8 !important;
}

/* Scanline overlay for CRT effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 2px,
        rgba(0, 0, 0, 0.08) 2px,
        rgba(0, 0, 0, 0.08) 4px
    );
    pointer-events: none;
    z-index: 9999;
}
