/* Important Notice Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.popup-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
  padding: 2.5rem;
  max-width: 550px;
  width: 90%;
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: slideUp 0.4s ease-out;
  position: relative;
}

.popup-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

.popup-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.popup-box h2 {
  margin: 0 0 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.popup-box p {
  color: #a3a3a3;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 0.95rem;
}

.popup-box p:last-of-type {
  margin-bottom: 2rem;
}

.popup-box a {
  color: #dc2626;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.popup-box a:hover {
  color: #ef4444;
}

.popup-box button {
  width: 100%;
  padding: 14px 32px;
  border: none;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: #ffffff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.popup-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.popup-box button:active {
  transform: translateY(0);
}
