/* =========================================
   Abby’s Petz Society — Surprise Petz
   (simple, magical, cohesive styling)
========================================= */

main {
  max-width: 700px;
  margin: 40px auto;
  padding: 0 16px;
  text-align: center;
  margin-top: 0;
}

/* Paragraphs */
.center {
  text-align: center;
  line-height: 1.5;
  color: var(--text);
}

/* Surprise link button */
#surpriseLink {
  display: inline-block;
  font-family: 'Raleway', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 0.95rem;
  padding: 10px 22px;
  color: #fff;
  background: linear-gradient(135deg, #a77ccf 0%, #5ac9b4 100%);
  border-radius: 999px;
  border: none;
  box-shadow: 0 4px 12px rgba(70,56,104,.15);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
#surpriseLink:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(70,56,104,.18);
  background: linear-gradient(135deg, #5ac9b4 0%, #a77ccf 100%);
}

/* Count text (bottom line) */
b {
  font-weight: 700;
  color: var(--title);
}

/* Image */
main img {
  margin: 18px 0 10px;
  max-width: 220px;
  height: auto;
}

/* Responsive tweak */
@media (max-width: 480px) {
  main img { max-width: 180px; }
  #surpriseLink { font-size: 0.85rem; padding: 8px 18px; }
}
