/* --- Стили для миниигры с камнем: Слабая точка --- */
#weak-spot {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 0, 0.8);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 15px 5px rgba(255, 255, 0, 0.7);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: none; /* Изначально скрыта */
    animation: pulse 1.5s infinite;
    z-index: 10;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 0, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 10px 15px rgba(255, 255, 0, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 0, 0);
    }
}


/* === КОНТЕЙНЕР ДЛЯ КНОПОК HUD === */
#hud-buttons-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Контейнер не должен перехватывать клики */
    z-index: 100;
}

#hud-buttons-container button {
    pointer-events: auto; /* А кнопки должны */
}

