/* Shared Openverse atmosphere — Apex charcoal/gold, no purple glow kitsch */
.atmosphere-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 12% -8%, rgba(232, 196, 124, 0.14), transparent 55%),
    linear-gradient(180deg, #101018, #07070A);
}
.atmosphere-layer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 12s ease;
}
.atmosphere-layer.is-ready img {
  opacity: 0.42;
  transform: scale(1);
}
.atmosphere-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 10, 0.35) 0%, rgba(7, 7, 10, 0.72) 48%, rgba(7, 7, 10, 0.92) 100%),
    linear-gradient(90deg, rgba(7, 7, 10, 0.55), transparent 40%);
}
.atmosphere-credit {
  position: fixed;
  left: 12px;
  bottom: 10px;
  z-index: 2;
  margin: 0;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(247, 244, 239, 0.55);
  background: rgba(7, 7, 10, 0.45);
  pointer-events: none;
}
.atmosphere-content {
  position: relative;
  z-index: 1;
}
