/* Object Labels for Interactive Elements */
.object-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Press Start 2P', cursive;
    font-size: 0.6rem;
    color: #ffd700;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 100;
}

.hotspot:hover .object-label {
    opacity: 1;
}

/* Interactive Halo Effect */
.hotspot {
    /* Transparent by default - only shows on hover */
    background: transparent;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hotspot:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow:
        0 0 15px 5px rgba(255, 215, 0, 0.5),
        inset 0 0 20px rgba(255, 215, 0, 0.2);
    cursor: pointer;
    transform: scale(1.02);
    /* Slight pulse */
}