body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: "Montserrat", Arial, sans-serif;
  background: #fff;
  overflow: hidden;
}

/* Animated bubbles background */
.bubbles {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubbles::before,
.bubbles::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: bubbleMove 6s infinite alternate;
}
.bubbles::before {
  width: 80px;
  height: 80px;
  left: 10vw;
  top: 70vh;
  background: #bfff00;
  animation-delay: 0s;
}
.bubbles::after {
  width: 120px;
  height: 120px;
  left: 70vw;
  top: 20vh;
  background: #7fff00;
  animation-delay: 2s;
}
@keyframes bubbleMove {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-40px) scale(1.2);
  }
}

/* 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: bounce 2s infinite;
}
.logo svg circle {
  stroke: #bfff00;
}
.logo svg text {
  fill: #bfff00;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

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

/* Gradient text effect */
.gradient-text {
  background: linear-gradient(90deg, #00c3ff 40%, #232526 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;
  }
}

/* Pulse loader styles */
.pulse-loader {
  margin-top: 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2381da;
  box-shadow: 0 0 0 0 #2381da;
  animation: pulse 1.2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(7, 95, 110);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(191, 255, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(191, 255, 0, 0);
  }
}
