@keyframes neon-pulse-green {
    0% {
        box-shadow: 0 0 5px #00ff6a, 0 0 10px #00ff6a;
    }
    50% {
        box-shadow: 0 0 20px #00ff6a, 0 0 30px #00ff6a;
    }
    100% {
        box-shadow: 0 0 5px #00ff6a, 0 0 10px #00ff6a;
    }
}

.event-card-live {
    border: 2px solid #00ff6a !important;
    animation: neon-pulse-green 2s infinite alternate;
}

.event-card-ended {
    border: 2px solid #ff4444 !important;
    filter: saturate(0.22) brightness(0.78);
}

.event-card-soon {
    border: 2px solid #f5c542 !important;
}

.event-status-badge {
    position: absolute;
    inset-block-start: 10px;
    inset-inline-end: 10px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 5px 12px;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Dots */
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.badge-live .badge-dot {
    background-color: #00ff6a;
    box-shadow: 0 0 8px #00ff6a;
    animation: neon-pulse-green 1.5s infinite alternate;
}

.badge-ended .badge-dot {
    background-color: #ff4444;
}

.badge-soon .badge-dot {
    background-color: #f5c542;
}

/* Badge specific color variants */
.badge-live {
    border: 1px solid rgba(0, 255, 106, 0.3);
}

.badge-ended {
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.badge-soon {
    border: 1px solid rgba(245, 197, 66, 0.3);
}
