body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #181818;
  color: white;
  overflow-x: hidden;
}

.return-icon {
  position: fixed;
  top: 20px;
  left: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 1.8em;
  z-index: 100;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease;
}

.return-icon:hover {
  transform: scale(1.2);
}

.return-icon:focus-visible {
  outline: 2px solid #a8d8ff;
  outline-offset: 4px;
  border-radius: 6px;
}

.watermark {
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1px);
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.2em;
  letter-spacing: 2px;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 50;
}

.artist-statement-container {
  max-width: 800px;
  margin: 60px auto 20px;
  padding: 0 20px;
  text-align: center;
}

.toggle-button {
  background: none;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9em;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.toggle-button:hover,
.toggle-button:focus-visible {
  color: white;
  border-color: white;
}

.toggle-button:focus-visible {
  outline: 2px solid #a8d8ff;
  outline-offset: 3px;
}

.artist-statement {
  margin-top: 20px;
  font-size: 0.95em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.artist-statement a {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.artist-statement a:hover {
  border-bottom-color: white;
}

.media-gallery {
  max-width: 1200px;
  margin: 100px auto 40px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.media-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.5s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.media-gallery img:hover,
.media-gallery img:focus-visible {
  transform: scale(1.05);
}

.media-gallery img:focus-visible {
  outline: 2px solid #a8d8ff;
  outline-offset: 4px;
}

.blur-up {
  filter: blur(12px);
}

.blur-up.is-loaded {
  filter: blur(0);
}

.fullscreen-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.fullscreen-modal.is-open {
  display: flex;
}

.fullscreen-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
  object-fit: contain;
  background: black;
}

.close-fullscreen {
  position: fixed;
  top: 20px;
  right: 30px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: white;
  cursor: pointer;
  z-index: 1002;
  font-size: 32px;
  line-height: 44px;
  transition: transform 0.2s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.close-fullscreen:hover {
  transform: scale(1.2);
}

.close-fullscreen:focus-visible {
  outline: 2px solid #a8d8ff;
  outline-offset: 4px;
}

@media (max-width: 600px) {
  .media-gallery {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    margin-top: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .return-icon,
  .toggle-button,
  .media-gallery img,
  .close-fullscreen {
    transition: none;
  }

  .media-gallery img:hover,
  .media-gallery img:focus-visible {
    transform: none;
  }
}