:root {
  --bg-peach: #fff6ef;
  --bg-rose: #ffe7f1;
  --ink: #37242f;
  --soft-ink: #6e5561;
  --card: rgba(255, 255, 255, 0.8);
  --line: rgba(226, 170, 190, 0.5);
  --accent: #ff7aa9;
  --accent-deep: #e85a92;
  --mint: #b7f0db;
  --yellow: #ffe7a2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Baloo 2", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% 10%, #fff 0%, var(--bg-peach) 45%, var(--bg-rose) 100%);
  position: relative;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.38;
  z-index: 0;
  pointer-events: none;
}

.orb-left {
  background: var(--mint);
  top: -90px;
  left: -120px;
}

.orb-right {
  background: var(--yellow);
  bottom: -80px;
  right: -90px;
}

.page {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 16px 48px;
  position: relative;
  z-index: 1;
}

.card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 30px rgba(236, 121, 167, 0.12);
}

h1,
h2 {
  margin: 0 0 10px;
  font-family: "ZCOOL KuaiLe", "PingFang SC", "Microsoft YaHei", cursive;
  letter-spacing: 0.4px;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
}

h2 {
  font-size: clamp(1.35rem, 3.5vw, 2rem);
}

p {
  margin: 0;
  line-height: 1.65;
  color: var(--soft-ink);
}

.badge {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #7e3c56;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(120deg, #ffd1e4, #ffe9f3);
  border: 1px solid #ffc2dc;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 1.05rem;
}

.flow {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 10px;
}

.flow li {
  position: relative;
  padding: 12px 14px 12px 40px;
  border-radius: 14px;
  border: 1px dashed #f0a6c4;
  background: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  color: #503542;
}

.flow li::before {
  content: "•";
  position: absolute;
  left: 16px;
  top: 11px;
  font-size: 1.2rem;
  color: var(--accent);
}

.mood-btn {
  margin-top: 14px;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(130deg, var(--accent), var(--accent-deep));
  box-shadow: 0 6px 16px rgba(232, 90, 146, 0.35);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.mood-btn:hover {
  transform: translateY(-2px) rotate(-1deg);
  box-shadow: 0 10px 20px rgba(232, 90, 146, 0.4);
}

.mood-btn:active {
  transform: translateY(1px) scale(0.98);
}

.mood-btn.is-popped {
  animation: pop 0.35s ease;
}

.feedback {
  margin-top: 10px;
  min-height: 28px;
  font-size: 0.98rem;
  color: #7f4e63;
}

@keyframes pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.08) rotate(2deg);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  .card {
    padding: 16px;
    border-radius: 16px;
  }
}
