.receiver-avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: #fff;
  border: 1px solid #ddd6cb;
  box-shadow: 0 6px 18px rgba(33, 28, 21, 0.05);
}

body {
  transition: background 0.2s ease;
}

/* Floating background bubbles */
.mood-bubbles {
  display: none;
}

.mood-bubble {
  position: absolute;
  bottom: -120px;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.22;
  animation: bubbleRise linear infinite;
  will-change: transform, opacity;
}

@keyframes bubbleRise {
  from {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 0.18;
  }
  80% {
    opacity: 0.2;
  }
  to {
    transform: translateY(-115vh) translateX(25px) scale(1.18);
    opacity: 0;
  }
}

/* Mood themes based on answer */
body.mood-default {
  background: #f7f4ef;
}

body.mood-yes {
  background: #f3faf5;
}

body.mood-softyes {
  background: #fff8f1;
}

body.mood-maybe {
  background: #f7f5ff;
}

body.mood-later {
  background: #fff6f7;
}

body.mood-no {
  background: #f5f2ee;
}

.no-gentle-panel {
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  background: #fff8f1;
  border: 1px solid rgba(185, 111, 56, 0.22);
  animation: fadeUp 0.28s ease;
}

.no-gentle-title {
  font-size: 14px;
  color: #1f1b16;
  margin-bottom: 6px;
}

.no-gentle-sub {
  font-size: 12px;
  color: #5f564d;
  margin-bottom: 10px;
}

.no-gentle-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.no-gentle-btn {
  border: 1px solid #ddd6cb;
  background: #fff;
  color: #1f1b16;
  border-radius: 10px;
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.no-gentle-btn:hover {
  border-color: rgba(185, 111, 56, 0.38);
  background: #fcfaf7;
}

.no-gentle-btn.ghost {
  background: #f8f4ef;
  color: #5f564d;
}

.direct-save-status {
  font-size: 12px;
  color: #5f564d;
  margin: -8px auto 12px;
}

.answers-inbox-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.answer-row {
  border: 1px solid #ddd6cb;
  background: #fcfaf7;
  border-radius: 12px;
  padding: 12px;
}

.answer-row-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: #5f564d;
  margin-bottom: 6px;
}

.answer-row-person {
  font-size: 14px;
  font-weight: 600;
  color: #1f1b16;
}

.answer-row-question {
  font-size: 14px;
  color: #1f1b16;
  line-height: 1.6;
  margin-bottom: 4px;
}

.answer-row-reply {
  font-size: 14px;
  color: #8d5429;
  line-height: 1.6;
}

.interest-strip {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ddd6cb;
  background: #fff;
}

.interest-title {
  font-size: 12px;
  color: #5f564d;
  margin-bottom: 8px;
}

.interest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.interest-chip {
  border: 1px solid rgba(210, 138, 143, 0.28);
  background: #fff7f7;
  color: #1f1b16;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.interest-chip:hover {
  background: #fff2e6;
  border-color: rgba(185, 111, 56, 0.38);
}

.interest-chip.active {
  background: #fff1e4;
  border-color: rgba(185, 111, 56, 0.5);
  box-shadow: none;
}

.interest-note {
  margin-top: 8px;
  font-size: 11px;
  color: #85796f;
}

/* Outcome effect layer */
.fx-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  overflow: hidden;
}

.vibe-orb {
  position: fixed;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(232, 160, 176, 0.2), transparent 70%);
  animation: vibeFloat 7s ease-in-out infinite;
  will-change: transform, opacity;
}

.vibe-orb.one {
  top: 8%;
  right: -40px;
}

.vibe-orb.two {
  bottom: 6%;
  left: -55px;
  background: radial-gradient(circle, rgba(160, 144, 208, 0.2), transparent 70%);
  animation-delay: -2.4s;
}

@keyframes vibeFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.35; }
  50% { transform: translateY(-10px) scale(1.08); opacity: 0.55; }
}

.fx-heart {
  position: absolute;
  font-size: 18px;
  animation: heartBurst 1.2s ease-out forwards;
  opacity: 0;
}

@keyframes heartBurst {
  0% { transform: translate(0, 0) scale(0.6); opacity: 0; }
  18% { opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(1.35); opacity: 0; }
}

.fx-shimmer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08), transparent 55%);
  animation: shimmerPulse 1.6s ease-out forwards;
}

@keyframes shimmerPulse {
  0% { opacity: 0; transform: scale(0.92); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.12); }
}

.fx-thought {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(200, 188, 255, 0.6);
  animation: thoughtFloat 2.8s ease-out forwards;
}

@keyframes thoughtFloat {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  20% { opacity: 0.7; }
  100% { transform: translateY(-180px) scale(1.8); opacity: 0; }
}

.fx-calm {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212,160,120,0.16), transparent 60%);
  animation: calmFade 2.2s ease-out forwards;
}

@keyframes calmFade {
  0% { opacity: 0; }
  35% { opacity: 0.65; }
  100% { opacity: 0; }
}

@media (max-width: 768px) {
  .mood-bubble {
    filter: none;
    opacity: 0.18;
  }
  .vibe-orb {
    width: 130px;
    height: 130px;
    opacity: 0.7;
  }
  .fx-heart {
    font-size: 15px;
  }
  .answer-row-top {
    font-size: 13px;
    color: rgba(240, 232, 224, 0.86);
  }
  .answer-row-question,
  .answer-row-reply {
    font-size: 14px;
    line-height: 1.6;
  }
}
