body {
  margin: 0;
  font-family: sans-serif;
  background: #fff5f7;
  text-align: center;
}

section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background: #fff5f7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.hidden {
  display: none;
}

button {
  padding: 12px 22px;
  font-size: 15px;
  background: #ff4d6d;
  color: white;
  border: none;
  border-radius: 30px;
  width: auto;
  display: inline-block;
  margin: 12px auto;
  cursor: pointer;
}

.polaroid {
  background: white;
  padding: 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.polaroid img {
  width: 100%;
  border-radius: 10px;
}

.caption {
  display: none;
}

.caption.show {
  display: block;
}

.question {
  margin: 20px 0;
}

.result {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

h1, h2 {
  font-family: 'Great Vibes', cursive;
}

body {
  font-family: 'Poppins', sans-serif;
}

.quiz-warning {
  display: none;
  color: #ff4d6d;
  font-size: 14px;
  margin-top: 10px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

section {
  opacity: 1;
  transition: opacity 0.6s ease;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

button:active {
  transform: scale(0.95);
}