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

html, body {
  width: 100%;
  height: 100%;
  background: black;
  overflow: hidden;
  font-family: Georgia, serif;
  color: white;
}

.scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   SATURN SYSTEM
   =============================== */

.saturn {
  position: absolute;
  width: 420px;
  height: 420px;
  animation: systemSpin 140s linear infinite;
}

/* Planet */
.planet {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    #f4ecff 0%,
    #b48cff 30%,
    #6a3dff 55%,
    #b48cff 75%,
    #f4ecff 100%
  );
  box-shadow:
    inset -22px -22px 45px rgba(0,0,0,0.6),
    inset 10px 10px 28px rgba(255,255,255,0.2);
  z-index: 2;
}

/* ===============================
   RINGS (VISIBLE + STABLE)
   =============================== */

.ring-back,
.ring-front {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 680px;
  height: 190px;
  border-radius: 50%;
  transform:
    translate(-50%, -50%)
    rotateX(64deg);
  pointer-events: none;
}

/* Back ring */
.ring-back {
  background: radial-gradient(
    ellipse at center,
    rgba(140,90,255,0.25),
    rgba(0,0,0,0) 70%
  );
  border: 4px solid rgba(140,90,255,0.35);
  z-index: 1;
}

/* Front ring */
.ring-front {
  border: 4px solid rgba(210,170,255,0.9);
  box-shadow: 0 0 18px rgba(180,120,255,0.6);
  z-index: 3;
  animation: ringSpin 100s linear infinite;
}

/* ===============================
   MOTION
   =============================== */

@keyframes systemSpin {
  from { transform: rotateZ(0deg); }
  to   { transform: rotateZ(360deg); }
}

@keyframes ringSpin {
  from {
    transform:
      translate(-50%, -50%)
      rotateX(64deg)
      rotateZ(0deg);
  }
  to {
    transform:
      translate(-50%, -50%)
      rotateX(64deg)
      rotateZ(-360deg);
  }
}

/* ===============================
   VERSE
   =============================== */

.verse {
  position: relative;
  text-align: center;
  max-width: 740px;
  padding: 26px;
  z-index: 4;
}

.verse p {
  font-size: 1.9rem;
  line-height: 1.65;
  text-shadow: 0 0 14px rgba(180,120,255,0.55);
}

.verse span {
  display: block;
  margin-top: 20px;
  font-size: 1.1rem;
  opacity: 0.85;
}
