/* Image Modal Styling - matches site theme */
#image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,11,26,0.97); /* site bg color, nearly opaque */
  justify-content: center;
  align-items: center;
  animation: fadeInModal 0.2s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
#image-modal img {
  max-width: 90vw;
  max-height: 90vh;
  border: 4px solid #c084fc;
  border-radius: 0;
  box-shadow: 8px 8px 0px #1e1b3d;
  background: #2d1b40;
  image-rendering: auto;
  transition: box-shadow 0.2s, border-color 0.2s;
}
#image-modal img:hover {
  border-color: #fbbf24;
  box-shadow: 12px 12px 0px #1e1b3d;
}
#close-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2.5rem;
  color: #f472b6;
  cursor: pointer;
  font-family: sans-serif;
  text-shadow: 2px 2px 0px #7c2d92;
  background: #2d1b40;
  border: 2px solid #6d28d9;
  border-radius: 0;
  padding: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0px #1e1b3d;
  transition: all 0.2s ease;
}
#close-modal:hover {
  color: #fbbf24;
  background: #4c1d95;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #1e1b3d;
  border-color: #7c3aed;
}
