@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Quicksand:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #ffe6f0, #fff2fa);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: background 1.5s ease;
}

body.active {
  background: radial-gradient(circle at top, #ffd6e0, #fff);
}

.content {
  text-align: center;
  z-index: 2;
}

h1 {
  font-family: 'Pacifico', cursive;
  color: #ff5c8d;
  font-size: 3rem;
  text-shadow: 0 0 10px #ffd6e0;
  animation: float 3s ease-in-out infinite;
}

h1 span {
  color: #ff9ac7;
}

.sub {
  font-family: 'Quicksand', sans-serif;
  color: #555;
  font-size: 1.1rem;
  margin: 15px 0 30px;
}

button {
  background-color: #ff69b4;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-family: 'Quicksand', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #ff8ac5;
  transform: scale(1.05);
}

.stars::before, .stars::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(white 1px, transparent 1px);
  background-size: 50px 50px;
  animation: twinkle 6s linear infinite;
  opacity: 0.5;
}

@keyframes twinkle {
  0% { transform: translate(0,0); }
  100% { transform: translate(-25px,-25px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
