/* General Reset & Background */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background: linear-gradient(to bottom, #1a1a2e, #3c1053);
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

/* Loading Screen Styles */
#loading-screen {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(to bottom, #1a1a2e, #3c1053);
  z-index: 9999;
}

/* Orbiting Sun & Moon */
.orbit-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  animation: rotateOrbit 6s linear infinite;
  margin-bottom: 30px;
}

.sun, .moon {
  position: absolute;
  font-size: 32px;
}

.sun {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.moon {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

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

/* Heart Animation */
.heart {
  font-size: 100px;
  color: white;
  animation: fillHeart 5s forwards;
}

@keyframes fillHeart {
  0% { color: white; }
  100% { color: red; }
}

/* Main Site Content (hidden at first) */
#site-content {
  padding: 40px;
  color: white;
  text-align: center;
}