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

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #2b0e62, #ff3b7b, #ff8c00);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
  padding: 20px;
  max-width: 400px;
}

.logo {
  width: 120px;
  border-radius: 25%;
  margin-bottom: 20px;
  animation: pop 1.2s ease-in-out infinite alternate;
}

@keyframes pop {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.title span {
  color: #ffce00;
}

.subtitle {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 30px;
}

button {
  background: linear-gradient(90deg, #ff5f6d, #ffc371);
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.footer {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ✅ Mobile-first */
@media (max-width: 480px) {
  body {
    height: 100vh;
    padding: 20px;
  }

  .logo {
    width: 100px;
  }

  .title {
    font-size: 1.6rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  button {
    width: 100%;
    padding: 14px;
  }
}
