DamageDisplay {
    position: absolute;
    width: 100px;
    height: 100px;
    pointer-events: none;
    align-items: center;
    justify-content: center;
}

.damage-number {
    position: absolute;
    top: 50%;
    transform: translate(-50%, 0); // center baseline

    font-size: 30px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    pointer-events: none;
    font-family: 'Poppins', sans-serif;

    animation: floatUp 1s ease-out forwards;
}

.damage-number.headshot {
    color: #ff4444;
    font-size: 40px;
    text-shadow: 0 0 10px rgba(255,68,68,0.8),
                 2px 2px 4px rgba(0,0,0,0.8);
}

@keyframes floatUp {
    0%   { transform: translate(-50%, 0) scale(1); }
    20%  { transform: translate(-50%, -10px) scale(1.25); }
    100% { transform: translate(-50%, -65px) scale(0.9); }
}
