* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(135deg, #fbc2eb, #a18cd1);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.card {
  position: absolute;
  width: 90%;
  max-width: 480px;
  background: rgba(255,255,255,0.96);
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.3);
  display: none;
  animation: fadeIn 0.6s ease;
}

.card.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

h1 {
  margin-bottom: 16px;
  color: #ff3e6c;
}

p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.emojis {
  font-size: 26px;
  margin: 18px 0;
}

button {
  margin-top: 22px;
  padding: 14px 30px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #9d4edd, #5a189a);
  color: white;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(90,24,154,0.45);
}

.watermark {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, #9d4edd, #5a189a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.85;
  transform: rotate(-6deg);
  user-select: none;
}