.AmmoTest1, .AmmoTest2 {
transition: transform 0.3s ease;
cursor: pointer;
display: inline-block;
}
.active {
filter: brightness(1.2) drop-shadow(0 0 5px #3D5F12);
}
.damage-display {
font-size: 1.2em;
color: #FFD700;
font-weight: bold;
transition: opacity 0.3s;
}
.updated {
animation: damagePop 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes damagePop {
0% { transform: scale(1); }
50% { transform: scale(1.15); }
100% { transform: scale(1); }
}