@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100vw;
  overflow: hidden;
}

body {
  margin: 0;
  height: 100vh;
  font-family: "Poppins", sans-serif;
  background: #0a0a1a;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.6;
  z-index: 0;
}

.pink {
  width: 400px;
  height: 400px;
  background: #ff007a;
  top: 20%;
  left: -10%;
}

.blue {
  width: 500px;
  height: 500px;
  background: #00d2ff;
  bottom: 10%;
  right: -15%;
}

main {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 0 20px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff007a, #00d2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

span {
  font-weight: 400;
  font-size: 2rem;
  display: block;
  margin-top: 10px;
  background: linear-gradient(90deg, #ff007a, #00d2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-size: 1.3rem;
  opacity: 0.7;
  margin-bottom: 40px;
}

.link-btn {
  padding: 14px 36px;
  background: transparent;
  border: 2px solid #00d2ff;
  color: #00d2ff;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 10px #00d2ff44;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.link-btn:hover {
  background: #00d2ff;
  color: #0a0a1a;
  box-shadow: 0 0 20px #00d2ff88;
  transform: scale(1.1);
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }

  span {
    font-size: 1.4rem;
  }

  p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .link-btn {
    padding: 10px 20px !important;
    font-size: 0.6rem !important;
    border-radius: 30px !important;
  }

  main {
    max-width: 90%;
    padding: 0 10px;
  }

  .blur-circle.pink {
    width: 250px;
    height: 250px;
    top: 15%;
    left: -20%;
  }

  .blur-circle.blue {
    width: 300px;
    height: 300px;
    bottom: 5%;
    right: -25%;
  }
}
