body {
    margin: 0;
    padding: 0;
    background-color: #0b0314;
    font-family: 'Courier New', Courier, monospace;
    color: #ff5500;
    overflow: hidden;
}

#desktop {
    width: 100vw;
    height: calc(100vh - 40px);
    position: relative;
    background-image: radial-gradient(#1f0d3d 1px, transparent 1px);
    background-size: 20px 20px;
}

.window {
    position: absolute;
    width: 300px;
    background: #130624;
    border: 2px solid #ff5500;
    box-shadow: 0px 0px 15px rgba(0, 255, 204, 0.3);
    z-index: 1;
}

.window-header {
    background: #ff5500;
    color: #130624;
    padding: 5px 10px;
    cursor: move;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.window-content {
    padding: 15px;
    max-height: 200px;
    overflow-y: auto;
    color: #e5b3ff;
}

.close-btn {
    background: #ff0055;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

#taskbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 40px;
    background: #130624;
    border-top: 2px solid #ff5500;
    display: flex;
    align-items: center;
    padding-left: 10px;
    gap: 10px;
}

#taskbar button {
    background: transparent;
    border: 1px solid #ff5500;
    color: #ff5500;
    padding: 5px 10px;
    cursor: pointer;
}

#taskbar button:hover {
    background: #ff5500;
    color: #130624;
}