/* Base styles */
body {
  background-color: #fff8f0;
  color: #4b3b47;
  font-family: 'Patrick Hand', cursive;
  font-size: 1.2rem;
  line-height: 1.6;
  padding: 2rem;
  margin: 0;
}

.container {
  max-width: 800px;
  margin: auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 3px dashed #f8c4e4;
}

/* Headers */
h1, h2 {
  color: #e91e63;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.6rem;
}

/* Lists & Quotes */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 0.6rem;
  padding-left: 1rem;
  position: relative;
}

ul li::before {
  content: "🎈";
  position: absolute;
  left: 0;
}

blockquote {
  font-style: italic;
  background-color: #fce4ec;
  border-left: 5px solid #ec407a;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 8px;
}

/* FAQ Styling */
p strong {
  color: #ba2f6b;
}

/* Confetti Button */
.confetti-button {
  display: block;
  margin: 20px auto;
  background-color: #fdd835;
  color: #000;
  border: 3px solid #ff4081;
  font-size: 1.3rem;
  font-family: 'Patrick Hand', cursive;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.confetti-button:hover {
  transform: scale(1.05) rotate(-1deg);
  background-color: #ffe082;
}

/* Angry screen shake */
@keyframes shake {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-5px, 5px); }
  40% { transform: translate(5px, -5px); }
  60% { transform: translate(-5px, 5px); }
  80% { transform: translate(5px, -5px); }
  100% { transform: translate(0, 0); }
}

.shake {
  animation: shake 0.5s;
}