body {
    background-color: #000000;
    color: #cccccc;
    font-family: Consolas, 'Courier New', monospace;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.terminal-container {
    width: 800px;
    background-color: #0c0c0c;
    border-radius: 4px;
    border: 1px solid #333;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.terminal-header {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    user-select: none;
    border-bottom: 1px solid #333;
}

.terminal-header .title {
    font-weight: normal;
    letter-spacing: 0.5px;
}

.window-buttons {
    display: flex;
    gap: 8px;
}

.window-buttons .button {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-size: 14px;
    cursor: pointer;
    background-color: #333;
    color: #ccc;
}

.button.minimize:hover, .button.maximize:hover {
    background-color: #444;
}

.button.close:hover {
    background-color: #c42b1c;
}

.terminal-body {
    padding: 15px;
    height: 450px;
    overflow-y: auto;
    font-size: 16px;
    line-height: 1.4;
}

/* Custom scrollbar */
.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: #0c0c0c;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: #444;
}

#output {
    white-space: pre-wrap;
}

.input-line {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.prompt {
    color: #0077cc; /* PowerShell blue color */
    margin-right: 5px;
    white-space: nowrap;
}

input {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 16px;
    width: 100%;
    outline: none;
    font-family: Consolas, 'Courier New', monospace;
}

/* Text color classes */
.command-error {
    color: #ff3333;
}

.command-warning {
    color: #ffcc00;
}

.command-success {
    color: #33cc33;
}

.system-message {
    color: #00aaff;
}

.secret-message {
    color: #ff3333;
    animation: glitch 5s infinite;
}

@keyframes glitch {
    0% { text-shadow: none; }
    20% { text-shadow: 0 0 5px #ff0000; }
    40% { text-shadow: none; }
    60% { text-shadow: 0 0 8px #ff0000; }
    80% { text-shadow: none; }
}

.hidden {
    display: none;
}