.quote-popup {
  margin: 0;
  font-family: "Georgia", serif;
  height: 200vh; /* just to demo background scroll */
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  color: white;
}

/* Overlay */
#quote-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px); /* frosted glass effect */
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 1.2s ease forwards;
}

#quote-popup.hide {
  animation: fadeOut 1.2s ease forwards;
}

#quote-popup figure {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px 40px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  color: #232222;
}

#quote-popup blockquote {
  font-size: 1.6rem;
  font-style: italic;
  margin: 0 0 15px;
  text-shadow: 0 0 10px rgba(70, 67, 67, 0.4);
}

#quote-popup figcaption {
  font-size: 1rem;
  opacity: 0.8;
}

cite {
    color: rgba(35, 30, 30, 0.4);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; visibility: hidden; }
}