/* ===============================
   BODY & BACKGROUND
   =============================== */
body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #ff4ecd, #ffb347, #7df9ff);
  background-size: 400% 400%;
  animation: bgShift 10s ease infinite;
  font-family: 'Comic Neue', cursive;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222;
}

@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===============================
   CARD CONTAINER
   =============================== */
.card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 40px;
  max-width: 800px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  animation: popIn 0.8s ease;
}

@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ===============================
   HEADINGS
   =============================== */
h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
  color: #ff3b3b;
  text-shadow: 3px 3px 0 #000;
}

/* ===============================
   PARAGRAPHS
   =============================== */
p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* ===============================
   CHOICES (CLICKABLE LINKS)
   =============================== */
.choice {
  font-weight: 700;
  color: #6a00ff;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.choice::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: #6a00ff;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.choice:hover {
  color: #ff0080;
  transform: rotate(-2deg) scale(1.05);
}

.choice:hover::after {
  transform: scaleX(1);
}

/* ===============================
   HINT TEXT
   =============================== */
.hint {
  margin-top: 25px;
  font-size: 0.9rem;
  opacity: 0.7;
  text-align: center;
}

/* ===============================
   IMAGES (OPTIONAL)
   =============================== */
img {
  max-width: 100%;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
