/* Empty Events - Inspirado en noticias-empty pero con colores oscuros */
.empty-events-container {
    background: linear-gradient(145deg, rgba(33,37,41,0.9) 0%, rgba(52,58,64,0.85) 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    margin: 2rem auto;
    background-color: #212529;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.empty-events-content {
    text-align: center;
    width: 100%;
}

.empty-events-icon {
    color: #ffc107;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: float 3s ease-in-out infinite;
}

.empty-events-icon i {
    font-size: 4rem;
}

.empty-events-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffc107, #fd7e14);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.empty-events-message {
    font-size: 1.1rem;
    color: #dee2e6;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.empty-events-animation {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.empty-events-animation .pulse-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #ffc107;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}
