/* base_utils.css - Shared UI Utilities and Interaction Rules */

/* Global Drag Prevention */
img, .enemy, .tower-card, .relic-slot, .equip-slot {
    -webkit-user-drag: none;
    user-select: none;
}

/* Shared UI Components */
.item-new-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff0000;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px #ff0000;
    z-index: 20;
    pointer-events: none;
    animation: notifPulse 1s infinite alternate;
}
