.desktop-icon {
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.icon-visual {
    width: 42px;
    height: 42px;
    background: var(--k-accent-red);
    border: 2px solid var(--k-black);
    box-shadow: 
        inset 2px 2px 0px var(--k-light-reflect), 
        inset -2px -2px 0px var(--k-shadow-soft),
        3px 3px 0px var(--k-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--k-white);
}

.icon-label {
    margin-top: 6px;
    font-size: 11px;
    background: transparent;
    color: var(--k-white);
    padding: 2px 5px;
    text-align: center;
    width: max-content;
    max-width: 120px; 
    white-space: nowrap;
    font-weight: bold;
    text-shadow: 1px 1px 0px var(--k-black);
}