/* #icon-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.9;
    pointer-events: none;
}

.icon-wrapper {
    position: absolute;
    width: 30px;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    cursor: default;
    transition: transform 0.05s ease-in-out;
    z-index: 2;

    pointer-events: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon-wrapper svg {
    position: absolute;
    top: 0;
    left: 0;
}

.icon-wrapper:hover {
    transform: translate(-50%, -50%) scale(1.2);
    z-index: 9999;
}

.work-text {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 400;
    white-space: nowrap;
    user-select: none;

    pointer-events: none;

    font-family: "Quicksand", sans-serif;
}

/* Latest Project Indicator */
@keyframes bounce-periodic {
    0%, 80% { transform: translateX(-50%) translateY(0) translateZ(0); }
    85% { transform: translateX(-50%) translateY(-10px) translateZ(0); }
    90% { transform: translateX(-50%) translateY(0) translateZ(0); }
    95% { transform: translateX(-50%) translateY(-5px) translateZ(0); }
    100% { transform: translateX(-50%) translateY(0) translateZ(0); }
}

.latest-indicator {
    position: absolute;
    top: -42px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    animation: bounce-periodic 5s infinite ease-in-out;
    z-index: 100;
    transform: translateX(-50%) translateZ(0);
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
}

.latest-triangle-outlined {
    width: 0; 
    height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #333;
    opacity: 0.8;
    position: relative;
}

.latest-triangle-outlined::after {
    content: '';
    position: absolute;
    top: -9px; 
    left: -4px; 
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #eee; 
}

.latest-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    margin-bottom: 5px;
    font-family: 'Quicksand', sans-serif;
}

.latest-triangle {
    width: 0; 
    height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #333;
    opacity: 0.8;
} */

/* 优先级更高的选择器确保icon-wrapper不受decoration.css中全局规则的影响 */
#icon-container .icon-wrapper,
#icon-container .icon-wrapper *,
.icon-wrapper, 
.icon-wrapper * {
    cursor: default !important;
}

.icon-wrapper {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 48px;
    min-width: 48px;
    min-height: 48px;
    aspect-ratio: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    z-index: 3;

    pointer-events: auto;
    cursor: default !important;
    /* transition: transform 0.05s ease-in-out; */

    overflow: visible;
}

.icon-wrapper canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: default !important;
}

@media (hover: hover) {
    .icon-wrapper:hover {
        transform: translate(-50%, -50%) scale(1.2);
        z-index: 9999;
        cursor: default !important;
    }
}

.icon-wrapper.active {
    transform: translate(-50%, -50%) scale(1.2);
    z-index: 9999;
    cursor: default !important;
}

.work-text {
    position: absolute;
    text-align: center;
    pointer-events: none;
    z-index: 2;

    font-size: 18px;
    font-weight: 400;
    white-space: nowrap;
    user-select: none;

    pointer-events: none;
    cursor: default !important;

    font-family: "Quicksand", sans-serif;
}