body {
    margin: 0;
    font-family: monospace;
    background: #0f0f0f;
    overflow: hidden;
    color: #33ff33;
}

.wave-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, #002b36, #001f27);
    background-size: 400% 400%;
    animation: wave 20s ease infinite;
    z-index: -1;
}

@keyframes wave {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

.desktop {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.top-bar {
    background-color: #1a1a1a;
    color: #00ffcc;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px #000;
}

.logo {
    font-size: 18px;
    font-weight: bold;
}

.time {
    font-size: 14px;
}

.terminal {
    width: 80%;
    max-width: 900px;
    margin: 50px auto;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #33ff33;
    flex-grow: 1;
    overflow-y: auto;
}

.output {
    white-space: pre-wrap;
    word-break: break-word;
    margin-bottom: 10px;
}

.input-line {
    display: flex;
}

.prompt {
    margin-right: 5px;
    color: #00ffcc;
}

input {
    background: transparent;
    border: none;
    outline: none;
    color: #33ff33;
    flex-grow: 1;
    font-family: monospace;
}
