* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  background: linear-gradient(45deg, #121212, #1e1e2f, #121212);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
  color: #e0e0e0;
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 2rem;
  overflow-x: hidden;
}
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.animated-blob {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ff0066, #33ccff);
  opacity: 0.2;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
  animation: blobAnimation 20s infinite;
}
@keyframes blobAnimation {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -100px) scale(1.2);
  }
  66% {
    transform: translate(-50px, 100px) scale(0.8);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
.container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
}
.title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ff0066, #ffcc00, #33ccff);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes gradientText {
  0% {
    background-position: 0%;
  }
  50% {
    background-position: 100%;
  }
  100% {
    background-position: 0%;
  }
}
.subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.cta-button {
  background-color: #1f1f1f;
  border: #857989;
  border-style: solid;
  border-radius: 0.5px;
  color: #e0e0e0;
  padding: 1rem 3rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}
.cta-button:hover {
  background-color: #333;
  transform: scale(1.05);
  box-shadow: 0 0 10px 2px rgba(255, 204, 0, 0.7);
}
#confettiCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }
  .subtitle {
    font-size: 1rem;
  }
  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}
