/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0d0d0d;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Blobs background */
.blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 10s infinite ease-in-out alternate;
}

.blob.one {
  width: 400px;
  height: 400px;
  background: #ff6ec4;
  top: -100px;
  left: -100px;
}

.blob.two {
  width: 300px;
  height: 300px;
  background: #7873f5;
  bottom: -100px;
  right: -100px;
  animation-delay: 2s;
}

.blob.three {
  width: 200px;
  height: 200px;
  background: #00f5d4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-30px) scale(1.05); }
}

/* Content */
.content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 4rem 2rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ff6ec4, #7873f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

p {
  font-size: 1.25rem;
  color: #ccc;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.button {
  background: linear-gradient(90deg, #ff6ec4, #7873f5);
  padding: 1rem 2rem;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.button:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.5);
}

.footer {
  font-size: 0.9rem;
  color: #777;
  z-index: 2;
  margin-top: 3rem;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.footer a {
  color: #aaa;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

/* Scroll animation trigger */
.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  p {
    font-size: 1rem;
  }
  .button {
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
  }
}
