* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
}

body {
  height: 100vh;
  overflow: hidden;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.glow {
  position: absolute;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0, 242, 96, 0.35), transparent 60%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2.5rem 3rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  animation: float 4s ease-in-out infinite;
  max-width: 90vw;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

.logo {
  width: 120px;
  max-width: 60vw;
  margin-bottom: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease;
  will-change: transform;
}

.spin {
  animation: spinBounce 2.2s ease-out forwards;
}

@keyframes spinBounce {
  0% {
    transform: rotate(0deg) scale(1);
  }
  60% {
    transform: rotate(1440deg) scale(1.1);
  }
  80% {
    transform: rotate(1500deg) scale(0.95);
  }
  100% {
    transform: rotate(1440deg) scale(1);
  }
}

p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 1.8rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #00f260, #0575e6);
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  user-select: none;
}

.badge:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(0, 242, 96, 0.8);
}

.rocket {
  display: inline-block;
  animation: rocketMove 1s linear infinite;
}

@keyframes rocketMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 600px) {
  .logo {
    width: 90px;
  }
  p {
    font-size: 1rem;
  }
}
