body {
    font-family: "Tahoma", "MS Sans Serif", Arial, sans-serif;
    font-size: 11px;
    margin: 0;
    overflow: hidden;
    user-select: none;
}
#desktop {
    width: 100vw;
    height: 100vh;
    background: radial-gradient(ellipse at center, #2c3e50 0%, #1a1a1a 100%);
    position: relative;
    padding: 10px;
}
.desktop-icon {
    width: 80px; height: 80px; margin: 5px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: white; text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    cursor: pointer; position: absolute; z-index: 10;
}
.desktop-icon i { font-size: 3.5em; margin-bottom: 5px; color: #f1f1f1; }
.desktop-icon img { width: 50px; height: 50px; margin-bottom: 5px; }
.desktop-icon p { font-size: 1em; text-align: center; margin: 0; }
.desktop-icon:hover { background-color: rgba(70, 130, 180, 0.4); outline: 1px dashed white; }
.desktop-icon.active { background-color: rgba(70, 130, 180, 0.6); outline: 1px solid white; }
.xp-window {
    min-width: 300px; min-height: 200px;
    border: 1px solid #005cff; box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    position: absolute; z-index: 100;
    display: none; flex-direction: column;
    resize: both; overflow: auto;
}
.xp-window.show { display: flex; }
.xp-window .title-bar {
    background: linear-gradient(to right, #005cff, #004fb6);
    color: white; padding: 4px 6px; font-weight: bold;
    display: flex; justify-content: space-between; align-items: center;
    cursor: grab;
}
.xp-window .title-bar.grabbing { cursor: grabbing; }
.xp-window .title-bar-buttons { font-family: "Webdings", sans-serif; }
.xp-window .title-bar-buttons span {
    display: inline-block; width: 16px; height: 16px;
    background-color: #c0c0c0; border: 1px outset #fff;
    color: black; text-align: center; line-height: 14px;
    font-size: 12px; cursor: pointer; margin-left: 2px;
}
.xp-window .window-body {
    background-color: #ece9d8; border-top: 1px solid white;
    padding: 10px; flex-grow: 1;
    display: flex; flex-direction: column; overflow: auto;
}
#project-icons { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; }
.project-icon-in-window { text-align: center; cursor: pointer; width: 80px; color: black; border: 1px solid transparent; padding: 5px; border-radius: 3px; }
.project-icon-in-window .fa-github { font-size: 3em; color: #333; margin-bottom: 5px; }
.project-icon-in-window p { margin: 0; font-size: 0.9em; }
.project-icon-in-window:hover { background-color: rgba(0,0,128,0.1); border: 1px dashed #888; }
.project-icon-in-window.active { background-color: rgba(0,0,128,0.2); border: 1px solid #005cff; }
#info-display { border: 2px inset #fff; background-color: #fff; padding: 10px; flex-grow: 1; }
#info-display h3 { margin: 0 0 5px 0; }
#info-display a { color: #005cff; text-decoration: none; }
.stats { margin-top: 10px; display: flex; gap: 15px; }
#snake-game-window { width: 320px; height: 400px; }
#snake-game-window .window-body { align-items: center; justify-content: center; background-color: #000; padding: 0; }
#snake-canvas { border: 2px solid #0f0; background-color: #000; }
#game-controls { margin-top: 10px; color: white; text-align: center; }
#game-controls button { background-color: #005cff; color: white; border: 1px outset #c0c0c0; padding: 5px 10px; cursor: pointer; }