#s-desktop {
    position: fixed;
    inset: 0;
    bottom: 52px;
    background-image: url('../../assets/bgs/bg_hills.png');
    background-size: cover;
    background-position: center;
    display: none;
    overflow: hidden;
    transition: background-image .5s;
}

.dicons-l {
    position: absolute;
    left: 12px;
    top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dicons-r {
    position: absolute;
    right: 12px;
    top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dicon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    width: 80px;
}

.dicon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(1px 2px 4px rgba(0, 0, 0, .4));
    transition: transform .15s;
}

.dicon:hover img {
    transform: scale(1.12) rotate(-2deg);
}

.dicon-placeholder {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: #fff;
    border: 3px dashed var(--dark);
    border-radius: 12px;
    box-shadow: 0 3px 0 var(--dark);
    filter: drop-shadow(1px 2px 4px rgba(0, 0, 0, .4));
    transition: transform .15s;
}
.dicon:hover .dicon-placeholder {
    transform: scale(1.12) rotate(-2deg);
}

.dicon span {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: white;
    text-shadow: 1px 1px 0 #000, 0 0 5px #000;
    text-align: center;
    line-height: 1.6;
}

#countdown {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(8px, 1.5vw, 14px);
    color: var(--pink);
    text-shadow: 1px 1px 0 white;
    white-space: nowrap;
    pointer-events: none;
}

/* NEON KONBINI SIGN */
#konbini-sign {
    position: absolute;
    bottom: 70px;
    right: 18px;
    cursor: grab;
    user-select: none;
    z-index: 100;
    filter: drop-shadow(0 0 18px rgba(247, 37, 133, .55));
    transition: filter .4s;
}

#konbini-sign:active {
    cursor: grabbing;
}

#konbini-sign:hover {
    filter: drop-shadow(0 0 28px rgba(247, 37, 133, .85));
}

#ks-svg {
    display: block;
}

/* TASKBAR */
#taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 52px;
    background: var(--pink);
    border-top: 3px solid var(--dark);
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    z-index: 2000;
}

.tb-l {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 11px;
    font-weight: 700;
}

.tb-c {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tb-logo {
    height: 36px;
    cursor: pointer;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .3));
    transition: transform .15s;
}

.tb-logo:hover {
    transform: scale(1.07);
}

.tb-search {
    background: white;
    border: 2px solid var(--dark);
    border-radius: 20px;
    padding: 4px 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    width: 150px;
    outline: none;
}

.tb-r {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tb-link {
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s;
    display: flex;
    align-items: center;
}

.tb-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.tb-link:hover {
    transform: scale(1.15);
}

.tb-pts {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: var(--dark);
    background: var(--lime);
    padding: 5px 10px;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid var(--dark);
    box-shadow: 0 2px 0 var(--dark);
    transition: transform .1s;
}

.tb-pts:hover {
    transform: translateY(-1px);
}

.tb-time {
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    color: white;
}
