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

body {
  background: #07070f;
  color: #e0e0f0;
  font-family: 'Comic Sans MS', 'Chalkboard SE', cursive;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  gap: 0.35rem;
}

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

.comic {
  width: min(98vw, calc(90vh * 900 / 820));
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 50px #4a9eff18, 0 0 100px #4a9eff08;
}

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

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