* { margin:0; padding:0; box-sizing:border-box; }

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #2b1f5c 0%, #0e0b1f 70%);
  font-family: 'KenyanCoffee', cursive;
  color: #f0e6ff;
  text-align: center;
}

.intent-container {
  max-width: 700px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  opacity: 0;
  animation: fadeUp 1.2s forwards;
}

p {
  font-size: 20px;
  opacity: 0;
  animation: fadeUp 1.2s forwards;
  animation-delay: 0.3s;
}

.timer {
  font-size: 48px;
  margin: 20px 0;
  opacity: 0;
  animation: fadeUp 1.2s forwards;
  animation-delay: 0.6s;
}

#continueBtn {
  padding: 14px 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #f5f5f5;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeUp 1.2s forwards;
  animation-delay: 0.9s;
}

#continueBtn:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

@keyframes fadeUp {
  from { opacity:0; transform: translateY(20px); }
  to { opacity:1; transform: translateY(0); }
}