/* =========================================
   PETZ ACTIVITY PICKER
========================================= */

/* Main activity card */
.card.petz-idea {
  max-width: 760px;
  margin: 22px auto 0;
  padding: 18px 18px 16px;
  text-align: center;
}

/* Keep this card still when other cards use a hover lift */
.card.petz-idea:hover {
  transform: none;
  box-shadow: 0 6px 20px rgba(70, 56, 104, 0.09);
}

/* Subtle sparkle sticker in the corner */
.card.petz-idea::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 46px;
  height: 46px;
  opacity: 0.22;
  background: radial-gradient(rgba(90, 201, 180, 0.55) 1px, transparent 2px);
  background-size: 10px 10px;
  pointer-events: none;
  border-radius: 12px;
}

/* Title */
.petz-idea-title {
  margin: 0 0 8px;
  font-family: "Chicle", Georgia, serif;
  color: var(--title);
  font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing: 0.6px;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.6);
}

/* Dice icon */
.petz-idea-title i.fa-dice,
.petz-idea-title i.fa-dice-five,
.petz-idea-title i.fa-dice-d20 {
  font-size: 0.7em;
  vertical-align: middle;
  margin-left: 6px;
  opacity: 0.85;
}

.petz-idea-title i.fa-dice {
  color: var(--title);
}

/* Optional intro text */
.petz-idea-intro {
  margin: 4px auto 14px;
  max-width: 56ch;
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* Helper text under the title */
.petz-idea-note {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.78;
}

/* Soft divider */
.petz-idea-divider {
  width: min(140px, 40%);
  height: 2px;
  margin: 10px auto;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(167, 124, 207, 0.45),
    transparent
  );
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(167, 124, 207, 0.18);
  opacity: 0.9;
}

/* Activity idea */
.petz-idea-text {
  margin: 35px auto;
  max-width: 60ch;
  min-height: 3.2em;
  font-size: 1.05rem;
  line-height: 1.6;
}

.petz-idea-text .emoji {
  font-size: 1.05em;
  margin-right: 0.15em;
  opacity: 0.85;
}

/* Button row */
.petz-idea-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

/* Activity button */
.petz-idea-btn {
  appearance: none;
  border: 1px solid rgba(167, 124, 207, 0.28);
  background: linear-gradient(
    180deg,
    rgba(167, 124, 207, 0.20),
    rgba(167, 124, 207, 0.08)
  );
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  font-family: "Raleway", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(70, 56, 104, 0.10);
  transition:
    transform 0.12s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.petz-idea-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 10px 22px rgba(70, 56, 104, 0.16),
    0 0 0 3px rgba(90, 201, 180, 0.10) inset;
  letter-spacing: 0.12em;
}

.petz-idea-btn:focus-visible {
  outline: 2px dashed var(--link);
  outline-offset: 3px;
}

/* Mobile */
@media (max-width: 560px) {
  .card.petz-idea {
    padding: 16px 14px 14px;
  }

  .petz-idea-btn {
    width: 100%;
  }
}
