body {
    margin: 0;
    background: url("/img/wallpaper/cozy.jpg") center/cover no-repeat fixed;
    font-family: 'Verdana', sans-serif;
    user-select: none;
    overflow: hidden;
}

/* ICONS */
.icon {
    width: 90px;
    text-align: center;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    position: absolute;
}

.icon img {
    width: 60px;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
}

.icon span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    text-shadow: 0 0 3px #000;
}

/* WINDOWS */
.window {
    display: none;               /* important fix */
    width: 420px;
    height: 280px;
    background: rgba(20,20,20,0.85);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    backdrop-filter: blur(6px);
    position: absolute;
    top: 100px;
    left: 100px;
    flex-direction: column;
    color: white;
    z-index: 50;
}

.window-header {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(0,0,0,0.45);
    cursor: move;
    border-radius: 6px 6px 0 0;
}

.close {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.window-content {
    padding: 15px;
    overflow-y: auto;
}


/* SCATTERED ICON PLACEMENT */
.icon:nth-child(1) { top: 90px; left: 70px; }
.icon:nth-child(2) { top: 210px; left: 110px; }
.icon:nth-child(3) { top: 350px; left: 60px; }
.icon:nth-child(4) { top: 120px; left: 250px; }
.icon:nth-child(5) { top: 300px; left: 300px; }
.icon:nth-child(6) { top: 450px; left: 160px; }

/* ICON HOVER EFFECT */
.icon {
    transition: transform 0.2s ease, filter 0.2s ease;
}

.icon:hover {
    transform: scale(1.12);
    filter: brightness(1.15) drop-shadow(0 0 8px #f8d1ff);
}

