/* Reset and body styles */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: "Montserrat", Arial, sans-serif;
  background: linear-gradient(135deg, #232526 0%, #2196f3 100%);
  overflow: hidden;
}

/* Animated stars background */
.stars {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}
.stars:before,
.stars:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: white;
  box-shadow: 20vw 10vh 0 0 white, 40vw 30vh 0 0 #2196f3, 60vw 50vh 0 0 white,
    80vw 70vh 0 0 #2196f3, 10vw 80vh 0 0 white, 70vw 20vh 0 0 #2196f3;
  animation: twinkle 2s infinite alternate;
}
@keyframes twinkle {
  to {
    opacity: 0.5;
  }
}

/* Container styles */
.container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Logo styles */
.logo {
  margin-bottom: 32px;
  animation: float 2.5s infinite ease-in-out;
}
.logo svg circle {
  stroke: #2196f3;
}
.logo svg text {
  fill: #2196f3;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Message styles */
.message {
  font-size: 2.2rem;
  text-align: center;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.3;
  letter-spacing: 1px;
  font-weight: 700;
}

/* Gradient text effect */
.gradient-text {
  background: linear-gradient(90deg, #2196f3 40%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Fade-in effect */
.fade-in {
  display: inline-block;
  opacity: 0;
  animation: fadeIn 2s 1s forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Loader styles */
.loader {
  margin-top: 24px;
  width: 60px;
  height: 60px;
  border: 6px solid #fff;
  border-top: 6px solid #2196f3;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
