.notifi-v3-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1f1f1f;
  color: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
  font-family: 'Poppins', sans-serif;
  width: 90%;
  max-width: 440px;
  z-index: 10000;
  opacity: 0;
  animation: notifi-v3-fadeIn 0.4s forwards;
}

.notifi-v3-container h4 {
  margin: 0 0 15px 0;
  font-size: 18px;
color: rgb(183 110 35);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.notifi-v3-container h4 i {
  animation: notifi-v3-vibrar 1.5s infinite;
  font-size: 18px;
}

.notifi-v3-content {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.notifi-v3-img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: white;
}

.notifi-v3-texto {
  flex-grow: 1;
  font-size: 15px;
  line-height: 1.4;
}

.notifi-v3-fecha {
  margin-top: 6px;
  font-size: 14px;
  color: #ccc;
  display: flex;
  justify-content: space-between;
}

.notifi-v3-progress-container {
  width: 100%;
  height: 8px;
  background: #444;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 5px;
}

.notifi-v3-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  border-radius: 6px;
  transition: width 0.1s linear;
}

@keyframes notifi-v3-fadeIn {
  to { opacity: 1; }
}

@keyframes notifi-v3-vibrar {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(-15deg); }
  40% { transform: rotate(10deg); }
  60% { transform: rotate(-10deg); }
  80% { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}