* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #0b0c10;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  overflow: auto;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

#display-image {
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(245, 166, 35, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  cursor: zoom-in;
  user-select: none;
}

#display-image.zoomed {
  max-height: none;
  max-width: none;
  cursor: zoom-out;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}
