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

body {
  background: #0a0a12;
  color: #dfe3ee;
  font-family: 'Segoe UI', system-ui, sans-serif;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  gap: 0.35rem;
}

.atlas-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
}

.atlas {
  width: min(98vw, calc(92vh * 1000 / 760));
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 50px #5a7bff18, 0 0 100px #5a7bff08;
}

.atlas-svg {
  width: 100%;
  height: auto;
  display: block;
}

.caption {
  font-size: clamp(0.5rem, 1.1vw, 0.75rem);
  color: #444d60;
  font-style: italic;
  text-align: center;
}
