* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Courier New", Courier, monospace;
}

body {
    height: 100vh;
    overflow: hidden;
    background: #111827;
    color: #e5e7eb;
    user-select: none;
}

#desktop-area {
    width: 100vw;
    height: calc(100vh - 36px);
    position: relative;
    padding: 16px;
}

.desk-icon {
    width: 76px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 12px;
    padding: 6px;
    border: 1px dashed transparent;
}

.desk-icon:hover {
    border-color: #4b5563;
    background: rgba(255, 255, 255, 0.05);
}

.desk-icon .img {
    font-size: 28px;
}

.desk-icon p {
    font-size: 11px;
    margin-top: 2px;
}

.win {
    position: absolute;
    width: 280px;
    background: #1f2937;
    border: 2px solid #374151;
    box-shadow: 4px 4px 0 #000;
}

.win-bar {
    background: #374151;
    padding: 4px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: grab;
}

.win-bar .lbl {
    font-size: 12px;
    font-weight: bold;
}

.x-btn {
    color: #f87171;
    cursor: pointer;
    font-weight: bold;
}

.x-btn:hover {
    color: #ef4444;
}

.win-content {
    padding: 10px;
}

textarea {
    width: 100%;
    height: 120px;
    background: #111827;
    border: 1px solid #374151;
    color: #10b981;
    padding: 6px;
    resize: none;
    font-size: 12px;
    outline: none;
}

#screen {
    width: 100%;
    padding: 6px;
    background: #111827;
    border: 1px solid #374151;
    color: #60a5fa;
    text-align: right;
    font-size: 16px;
    margin-bottom: 8px;
}

.keypad {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.keypad button,
.bg-picks button {
    padding: 8px;
    background: #374151;
    border: 1px solid #4b5563;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
}

.keypad button:hover,
.bg-picks button:hover {
    background: #4b5563;
}

.keypad .eq {
    background: #2563eb;
}

.keypad .clr {
    background: #dc2626;
}

.bg-picks {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.settings-text {
    margin-bottom: 8px;
    font-size: 13px;
}
#bottom-bar {
    height: 36px;
    background: #111827;
    border-top: 2px solid #374151;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}
#start-node {
    background: #374151;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: bold;
}
#clock-node {
    font-size: 12px;
    color: #9ca3af;
}
