/**
 * Raffle Status Badge Component
 * Sistema de Sorteos - Badge de estado visual
 * 
 * Responsabilidad: Mostrar estado visual del sorteo sobre la imagen
 * Principios: Visual hierarchy, UX clarity, Mobile-first
 * Ubicacion: Esquina inferior izquierda estilo pill
 */

.raffle-status-badge {
    bottom: 8px;
    left: 8px;
    z-index: 10;
}

.raffle-status-badge .badge {
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.status-active {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        background-color: #198754;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    50% {
        background-color: #20c997;
        box-shadow: 0 2px 8px rgba(32, 201, 151, 0.4);
    }
    100% {
        background-color: #198754;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 576px) {
    .raffle-status-badge .badge {
        font-size: 0.6rem;
        padding: 3px 6px;
    }
}