/* Reset default browser styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden; /* Hide scrollbars */
}

.bsod-container {
    background-color: #0000AA; /* Classic BSOD blue */
    color: #FFFFFF; /* White text */
    font-family: 'Lucida Console', 'Consolas', 'Courier New', monospace; /* Monospaced font */
    font-size: 16px; /* Base font size */
    line-height: 1.4;
    padding: 40px;
    box-sizing: border-box; /* Include padding in width/height calculation */
    height: 100vh; /* Full viewport height */
    width: 100vw; /* Full viewport width */
    cursor: none; /* Hide the default mouse cursor */
    overflow-y: auto; /* Allow scrolling if content overflows (unlikely with this text length) */
}

p {
    margin-bottom: 1.2em; /* Spacing between paragraphs */
}

.error-title {
    font-size: 1.1em;
    text-transform: uppercase; /* Often the first line is uppercase */
}

.error-message {
    text-transform: uppercase;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

.stop-code {
    font-weight: normal; /* Stop codes aren't always bold */
    margin-top: 2em;
}

.error-code-display {
    font-weight: bold; /* Make the custom code stand out */
    margin-top: 0.5em;
}

/* Optional Blinking Cursor Simulation */
.cursor {
    display: inline-block;
    animation: blink 1s step-end infinite;
    margin-left: 5px; /* Space after text */
    font-weight: bold;
}

@keyframes blink {
    from, to {
        color: transparent;
    }
    50% {
        color: #FFFFFF;
    }
}