body {
    background-color: #121212;
    color: #00E676;
    font-family: 'Roboto Mono', monospace;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
}

.console {
    width: 65%;
    background-color: #1e1e1e;
    padding: 20px;
    border: 2px solid #00E676;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
    margin-right: 20px;
    overflow: hidden;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
}

.warning {
    width: 35%;
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    color: #ff5252;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 0 15px rgba(255, 82, 82, 0.2);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.warning h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ff5252;
}

.warning p {
    font-size: 0.9em;
    line-height: 1.5;
}

pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 0;
}

.cursor {
    color: #00E676;
    animation: blink 1s infinite;
    position: absolute;
    bottom: 15px;
    left: 15px;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
