* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff0f3;
  color: #333;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  color: #ff4d6d;
  font-size: 2.2rem;
}

.hero p {
  margin-top: 10px;
  opacity: 0.7;
}

.card, .final {
  margin: 60px auto;
  width: 85%;
  max-width: 400px;
  background: white;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.final h2 {
  color: #ff4d6d;
  margin-bottom: 10px;
}

.show {
  opacity: 1;
  transform: translateY(0);
}