body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
  color: #ffffff;
  overflow: hidden;
}

header {
  text-align: center;
  padding: 2rem;
  background-color: rgba(255,255,255,0.05);
}

.glow-text {
  font-size: 3rem;
  background: linear-gradient(90deg, #ff00cc, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 10px #fff; }
  to { text-shadow: 0 0 20px #ff00cc; }
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.planet-box {
  background: rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.planet-box:hover {
  transform: scale(1.05);
}

.cta {
  text-align: center;
  padding: 2rem;
  background-color: rgba(255,255,255,0.05);
  margin: 2rem;
  border-radius: 1rem;
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  from { box-shadow: 0 0 10px #33ccff; }
  to { box-shadow: 0 0 20px #ff00cc; }
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background-color: rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}

/* Floating Planets Animation */
.rain-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.planet {
  position: absolute;
  font-size: 2rem;
  animation: fall infinite linear;
  opacity: 0.8;
}

.planet1 { left: 5%; animation-duration: 10s; animation-delay: 0s; }
.planet2 { left: 15%; animation-duration: 8s; animation-delay: 1s; }
.planet3 { left: 25%; animation-duration: 12s; animation-delay: 2s; }
.planet4 { left: 35%; animation-duration: 9s; animation-delay: 3s; }
.planet5 { left: 45%; animation-duration: 11s; animation-delay: 0s; }
.planet6 { left: 55%; animation-duration: 10s; animation-delay: 1s; }
.planet7 { left: 65%; animation-duration: 13s; animation-delay: 2s; }
.planet8 { left: 75%; animation-duration: 14s; animation-delay: 3s; }
.planet9 { left: 85%; animation-duration: 9s; animation-delay: 1s; }
.planet10 { left: 95%; animation-duration: 8s; animation-delay: 2s; }

@keyframes fall {
  0% {
    transform: translateY(-100px) translateX(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(50vh) translateX(20px) rotate(180deg);
  }
  100% {
    transform: translateY(100vh) translateX(-20px) rotate(360deg);
    opacity: 0.1;
  }
}
