body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow: hidden;
  background: black;
}

/* BACKGROUND */
.bg {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* PLANETS (approx same placement as screenshot) */
.planet {
  position: absolute;
  z-index: 2;
}

.saturn { bottom: 30px; left: 20%; width: 240px; }
.jupiter { bottom: 50px; right: 20%; width: 240px; }
.earth { top: 200px; right: 65%; width: 190px; }
.neptune { top: 150px; left: 65%; width: 190px; }
.mars { bottom: 200px; left: 60%; width: 160px; }
.moon { top: 120px; right: 69%; width: 200px; }

/* CENTER */
.center {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
}

.chakra {
  width: 350px;
  animation: spin 25s linear infinite;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.8));
}

@keyframes spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

.title {
  margin-top: 1px;
}

.tag {
  color: #66ff66;
  font-style: italic;
  font-size: 18px;
    width: 350px;
}

.title h1 {
  letter-spacing: 6px;
  margin: 5px 0;
}

.title h2 {
  letter-spacing: 4px;
  font-weight: normal;
}

/* MENUS */
.menu {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.left { left: 160px; }
.right { right: 160px; }

.menu a {
  display: block;
  margin: 6px 0;
  padding: 8px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(255,255,255,0.4);
  transition: 0.2s;
}

/* EXACT COLOR STACK */
.purple { background: #4c126f; }
.violet { background: #8e24aa; }
.blue { background: #1e88e5; }
.green { background: #43a047; }
.yellow { background: #d6c600; color: black; }
.orange { background: #fb8c00; }
.red { background: #e53935; }

/* HOVER GLOW */
.menu a:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px white;
}

.sound-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

/* FOOTER */
.footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: white;
  z-index: 3;
  opacity: 0.8;
}