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

body {
  background: #0a0a14;
  color: #e0e0f0;
  font-family: 'Comic Sans MS', 'Chalkboard SE', cursive;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.title {
  font-size: clamp(1rem, 3vw, 1.8rem);
  letter-spacing: 0.3em;
  color: #4a9eff;
  text-shadow: 0 0 20px #4a9eff88;
  font-weight: bold;
}

.comic {
  width: 100%;
  max-width: min(92vw, 860px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 40px #4a9eff33, 0 0 80px #4a9eff11;
}

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

.caption {
  font-size: clamp(0.6rem, 1.5vw, 0.85rem);
  color: #556;
  font-style: italic;
  text-align: center;
}
