/* --- WAR CARDS --- */
.arena-card.war-rival-match {
    border: 1px solid #ef4444 !important;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
    position: relative;
    overflow: hidden;
}

.arena-card.war-rival-match::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.war-bounty-badge {
    position: absolute;
    top: 10px;
    left: 10px; /* Alterado de right para left */
    background: #ef4444;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 0 10px #ef4444;
    animation: war-pulse 1.5s infinite;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
}

@keyframes war-pulse {
    0% { transform: scale(1); box-shadow: 0 0 10px #ef4444; }
    50% { transform: scale(1.05); box-shadow: 0 0 20px #ef4444; }
    100% { transform: scale(1); box-shadow: 0 0 10px #ef4444; }
}