/* ============================================
   NOTIFICATION ACTION POPUP
   ============================================ */

.notification-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(4px);
}

.notification-popup-overlay.active {
  display: flex;
}

.notification-popup-container {
  position: relative;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid #e2a301;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.notification-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: #e2a301;
  font-size: 28px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  z-index: 10;
  font-weight: bold;
  line-height: 1;
}

.notification-popup-close:hover {
  color: #ffd500;
}

.notification-popup-content {
  color: #ffffff;
}

.notification-popup-title {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: #e2a301;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.notification-popup-body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

.notification-popup-body p {
  margin: 0 0 15px 0;
}

.notification-popup-body p:last-child {
  margin-bottom: 0;
}

.notification-popup-body ul {
  margin: 15px 0;
  padding-left: 25px;
}

.notification-popup-body li {
  margin: 8px 0;
}

.notification-popup-body strong {
  color: #e2a301;
  font-weight: var(--font-weight-bold);
}

/* Responsive */
@media (max-width: 768px) {
  .notification-popup-container {
    width: 95%;
    padding: 20px;
    max-height: 85vh;
  }

  .notification-popup-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .notification-popup-body {
    font-size: 14px;
  }

  .notification-popup-close {
    top: 10px;
    right: 10px;
    font-size: 24px;
  }
}

