body {
  background: linear-gradient(135deg, #ffe0e0, #d8e6ff);
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  margin: 0;
  padding: 30px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  max-width: 400px;
  margin: auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

h1 {
  color: #ff6699;
  margin-bottom: 20px;
}

audio {
  margin-top: 20px;
}

.qr {
  margin-top: 20px;
}

.qr img {
  width: 150px;
  border-radius: 10px;
}

.falling-messages {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.message {
  font-size: 20px;
  font-weight: bold;
  opacity: 0;
  transform: translateY(-50px) rotateX(90deg);
  animation: dropIn 1s forwards;
}

.message:nth-child(1) { animation-delay: 0.2s; }
.message:nth-child(2) { animation-delay: 0.6s; }
.message:nth-child(3) { animation-delay: 1s; }
.message:nth-child(4) { animation-delay: 1.4s; }
.message:nth-child(5) { animation-delay: 1.8s; }
.message:nth-child(6) { animation-delay: 2.2s; }
.message:nth-child(7) { animation-delay: 2.6s; }
.message:nth-child(8) { animation-delay: 3s; }
.message:nth-child(9) { animation-delay: 3.4s; }

@keyframes dropIn {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}