/* ============================================================
   Vybe Space — Feed Page Styles  (Sprint 12.5)
   feed_themes.css
   Cozy, feed-first social scroll
   ============================================================ */

/* Feed tabs */
.cozy-feed-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.75rem 0 0.5rem;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cozy-feed-tabs::-webkit-scrollbar { display: none; }

.cozy-feed-tab {
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cozy-feed-tab:hover { color: #c4b5fd; }
.cozy-feed-tab--active {
  color: #c4b5fd;
  border-bottom-color: #8b5cf6;
}

/* Compose card */
.cozy-compose-card { padding: 1rem; }

.cozy-compose-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cozy-compose-input-wrap { flex: 1; min-width: 0; }

.cozy-compose-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  color: #f0e8ff;
  font-family: inherit;
  resize: none;
  transition: border-color 0.15s ease;
}

.cozy-compose-input:focus {
  outline: none;
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
}

.cozy-compose-input::placeholder { color: #6b7280; }

.cozy-compose-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cozy-compose-emoji-row {
  display: flex;
  gap: 0.35rem;
}

.cozy-emoji-pick {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 0.4rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cozy-emoji-pick:hover { background: rgba(139, 92, 246, 0.15); transform: scale(1.1); }

.cozy-compose-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cozy-upload-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 0.4rem;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  transition: background 0.15s ease;
}

.cozy-upload-btn:hover { background: rgba(139, 92, 246, 0.15); }

.cozy-compose-privacy {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 0.4rem 0.65rem;
  font-size: 0.82rem;
  color: #94a3b8;
  cursor: pointer;
  min-height: 40px;
  font-family: inherit;
}

.cozy-char-counter {
  font-size: 0.72rem;
  color: #6b7280;
  margin-left: auto;
}

.cozy-media-preview {
  margin-top: 0.75rem;
  border-radius: 0.75rem;
  overflow: hidden;
  max-height: 300px;
}

/* Friends rail */
.cozy-friends-rail-wrap { padding: 0.85rem 1rem; }

.cozy-friends-rail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.cozy-friends-rail {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.cozy-friends-rail::-webkit-scrollbar { display: none; }

.cozy-friend-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
}

.cozy-friend-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.cozy-friend-online::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #4ade80;
  border: 2px solid #020304;
  border-radius: 50%;
  bottom: 0;
  right: 0;
  animation: cozyPulse 2.5s ease-in-out infinite;
}

.cozy-friend-name {
  font-size: 0.65rem;
  color: #94a3b8;
  max-width: 52px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
}

/* Social scrapbook */
.cozy-atmosphere-strip {
  padding: 1rem;
}

.cozy-atmosphere-strip__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.cozy-atmosphere-strip__meta {
  color: #94a3b8;
  font-size: 0.78rem;
}

.cozy-atmosphere-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.cozy-scrap-card {
  border-radius: 0.9rem;
  padding: 0.85rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.cozy-scrap-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.45);
}

.cozy-scrap-card--room_snapshot,
.cozy-scrap-card--room_era {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(255,255,255,0.03));
}

.cozy-scrap-card--memory_moment,
.cozy-scrap-card--atmosphere_shift {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(255,255,255,0.03));
}

.cozy-scrap-card--collectible_showcase,
.cozy-scrap-card--friend_interaction {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.13), rgba(255,255,255,0.03));
}

.cozy-scrap-card__top,
.cozy-scrap-card__chips {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.cozy-scrap-card__top strong {
  color: #f0e8ff;
  font-size: 0.85rem;
}

.cozy-scrap-card__title {
  margin: 0.6rem 0 0.3rem;
  color: #f5f3ff;
  font-size: 0.84rem;
  font-weight: 600;
}

.cozy-scrap-card__body {
  margin: 0.25rem 0;
  color: #d4c4f0;
  font-size: 0.84rem;
  line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
  .cozy-scrap-card,
  .cozy-scrap-card:hover {
    transform: none;
    transition: none;
  }
}

/* Sprint 25 — calmer feed rhythm */
.cozy-post-card,
.cozy-feed-tab,
.cozy-react-btn,
.cozy-gentle-react-btn,
.cozy-emoji-pick {
  transition-duration: 0.3s !important;
}

.cozy-scrap-card,
.cozy-atmosphere-strip,
.cozy-feed-divider {
  animation-duration: 0.8s !important;
}

.cozy-gentle-reactions .cozy-gentle-react-btn--sent {
  animation-duration: 0.55s !important;
}

/* Sprint 18 — Scrapbook pacing and memory transitions */

.cozy-atmosphere-strip__grid {
  gap: 0.9rem;
  animation: scrapbookFadeIn 0.6s ease-out;
}

@keyframes scrapbookFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cozy-scrap-card {
  animation: memoryCardIn 0.5s ease-out backwards;
}

.cozy-scrap-card:nth-child(1) { animation-delay: 0.05s; }
.cozy-scrap-card:nth-child(2) { animation-delay: 0.1s; }
.cozy-scrap-card:nth-child(3) { animation-delay: 0.15s; }
.cozy-scrap-card:nth-child(4) { animation-delay: 0.2s; }
.cozy-scrap-card:nth-child(5) { animation-delay: 0.25s; }
.cozy-scrap-card:nth-child(6) { animation-delay: 0.3s; }
.cozy-scrap-card:nth-child(n+7) { animation-delay: 0.35s; }

@keyframes memoryCardIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cozy-scrap-card__title {
  animation: titleReveal 0.6s ease-out 0.2s backwards;
}

@keyframes titleReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Enhanced card variants with atmospheric breathing */
.cozy-scrap-card--room_snapshot,
.cozy-scrap-card--room_era {
  animation: roomMemoryPulse 6s ease-in-out infinite;
}

@keyframes roomMemoryPulse {
  0%, 100% {
    opacity: 1;
    border-color: rgba(34, 211, 238, 0.35);
  }
  50% {
    border-color: rgba(34, 211, 238, 0.55);
  }
}

.cozy-scrap-card--memory_moment {
  animation: memoryMomentPulse 7s ease-in-out infinite;
}

@keyframes memoryMomentPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.95;
  }
}

/* Staggered reveal for visual rhythm */
.cozy-atmosphere-strip__header {
  animation: headerFade 0.5s ease-out;
}

@keyframes headerFade {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Memory separators for pacing */
.cozy-feed-divider {
  margin: 1.5rem 0;
  animation: dividerFade 0.6s ease-out 0.3s backwards;
}

@keyframes dividerFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cozy-atmosphere-strip__grid,
  .cozy-scrap-card,
  .cozy-scrap-card--room_snapshot,
  .cozy-scrap-card--room_era,
  .cozy-scrap-card--memory_moment,
  .cozy-atmosphere-strip__header,
  .cozy-feed-divider {
    animation: none;
  }
}


.cozy-scrap-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #cbd5e1;
  font-size: 0.7rem;
}

@media (max-width: 430px) {
  .cozy-atmosphere-strip__grid {
    grid-template-columns: 1fr;
  }
}

/* Feed list */
.cozy-feed-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* Post card */
.cozy-post-card { padding: 1rem; }

.cozy-post-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.65rem;
}

.cozy-post-author-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cozy-post-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.cozy-post-author {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e9d5ff;
  text-decoration: none;
  transition: color 0.15s ease;
}

.cozy-post-author:hover { color: #a78bfa; }

.cozy-post-time {
  display: block;
  font-size: 0.72rem;
  color: #6b7280;
}

.cozy-post-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d4c4f0;
  margin-bottom: 0.75rem;
}

.cozy-post-media {
  width: 100%;
  border-radius: 0.75rem;
  margin: 0.75rem 0;
  max-height: 400px;
  object-fit: cover;
}

.cozy-post-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.cozy-react-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cozy-post-comment-link {
  font-size: 0.82rem;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.15s ease;
}

.cozy-post-comment-link:hover { color: #a78bfa; }

.cozy-post-detail-link {
  font-size: 0.75rem;
  color: #4b5563;
  text-decoration: none;
  margin-left: auto;
}

/* Feed empty state */
.cozy-feed-empty {
  padding: 3rem 1.5rem;
  text-align: center;
}

.cozy-feed-empty__icon { font-size: 3rem; margin-bottom: 0.75rem; }

.cozy-feed-empty__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e9d5ff;
  margin: 0 0 0.5rem;
}

.cozy-feed-empty__sub {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0 0 1.5rem;
}

.cozy-feed-empty__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Load more */
.cozy-feed-more {
  text-align: center;
  padding: 1rem 0;
}

.cozy-feed-more .cozy-btn {
  min-width: 150px;
}

/* ════════════════════════════════════════════════════════════
   FEED LIFE SYSTEM — Post Type Variations (Sprint 13)
   ════════════════════════════════════════════════════════════ */

/* Post type badges */
.cozy-post-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background: rgba(139, 92, 246, 0.12);
  border-radius: 0.4rem;
  margin-bottom: 0.5rem;
  color: #a78bfa;
  font-weight: 600;
}

/* Vibe post type */
.cozy-post-card--vibe {
  border-left: 3px solid rgba(139, 92, 246, 0.4);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(168, 85, 247, 0.04) 100%);
}

.cozy-post-card--vibe .cozy-post-body { color: #e9d5ff; }

/* Gaming post type */
.cozy-post-card--gaming {
  border-left: 3px solid rgba(34, 197, 94, 0.4);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(22, 163, 74, 0.04) 100%);
}

.cozy-post-card--gaming .cozy-post-type-badge {
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
}

/* Music post type */
.cozy-post-card--music {
  border-left: 3px solid rgba(236, 72, 153, 0.4);
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(219, 39, 119, 0.04) 100%);
}

.cozy-post-card--music .cozy-post-type-badge {
  background: rgba(236, 72, 153, 0.12);
  color: #fbcfe8;
}

/* Late night post type */
.cozy-post-card--latenight {
  border-left: 3px solid rgba(100, 116, 139, 0.4);
  background: linear-gradient(135deg, rgba(100, 116, 139, 0.08) 0%, rgba(71, 85, 105, 0.04) 100%);
}

.cozy-post-card--latenight .cozy-post-type-badge {
  background: rgba(100, 116, 139, 0.12);
  color: #cbd5e1;
}

/* Achievement post type */
.cozy-post-card--achievement {
  border-left: 3px solid rgba(250, 204, 21, 0.4);
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.08) 0%, rgba(234, 179, 8, 0.04) 100%);
}

.cozy-post-card--achievement .cozy-post-type-badge {
  background: rgba(250, 204, 21, 0.12);
  color: #fef08a;
}

/* Cozy thought post type */
.cozy-post-card--thought {
  border-left: 3px solid rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(37, 99, 235, 0.04) 100%);
}

.cozy-post-card--thought .cozy-post-type-badge {
  background: rgba(59, 130, 246, 0.12);
  color: #93c5fd;
}

/* Question post type */
.cozy-post-card--question {
  border-left: 3px solid rgba(139, 92, 246, 0.6);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(168, 85, 247, 0.06) 100%);
}

.cozy-post-card--question .cozy-post-type-badge {
  background: rgba(139, 92, 246, 0.2);
  color: #d8b4fe;
}

/* Room moment post type */
.cozy-post-card--room {
  border-left: 3px solid rgba(0, 229, 255, 0.4);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0%, rgba(0, 168, 202, 0.04) 100%);
}

.cozy-post-card--room .cozy-post-type-badge {
  background: rgba(0, 229, 255, 0.12);
  color: #a5f3fc;
}

/* ════════════════════════════════════════════════════════════
   FEED DIVIDERS — Visual rhythm separation
   ════════════════════════════════════════════════════════════ */

.cozy-feed-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0 0.75rem;
  margin: 0.5rem 0;
  color: #6b7280;
}

.cozy-feed-divider::before,
.cozy-feed-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(139, 92, 246, 0.2), transparent);
}

.cozy-feed-divider-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════════
   SOCIAL EVENTS — Lightweight activity indicators
   ════════════════════════════════════════════════════════════ */

.cozy-feed-event {
  padding: 0.75rem 1rem;
  background: rgba(139, 92, 246, 0.06);
  border-left: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 0.5rem;
  font-size: 0.85rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cozy-feed-event-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
}

.cozy-feed-event-text {
  flex: 1;
}

.cozy-feed-event-text strong {
  color: #d8b4fe;
  font-weight: 600;
}

.cozy-feed-event-text a {
  color: #a78bfa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.cozy-feed-event-text a:hover {
  color: #d8b4fe;
  text-decoration: underline;
}

/* Event type variations */
.cozy-feed-event--presence {
  background: rgba(74, 222, 128, 0.06);
  border-left-color: rgba(74, 222, 128, 0.3);
}

.cozy-feed-event--presence .cozy-feed-event-icon { color: #86efac; }

.cozy-feed-event--room {
  background: rgba(0, 229, 255, 0.06);
  border-left-color: rgba(0, 229, 255, 0.3);
}

.cozy-feed-event--room .cozy-feed-event-icon { color: #a5f3fc; }

.cozy-feed-event--mood {
  background: rgba(236, 72, 153, 0.06);
  border-left-color: rgba(236, 72, 153, 0.3);
}

.cozy-feed-event--mood .cozy-feed-event-icon { color: #fbcfe8; }

.cozy-feed-event--achievement {
  background: rgba(250, 204, 21, 0.06);
  border-left-color: rgba(250, 204, 21, 0.3);
}

.cozy-feed-event--achievement .cozy-feed-event-icon { color: #fef08a; }

.cozy-feed-event--game {
  background: rgba(34, 197, 94, 0.06);
  border-left-color: rgba(34, 197, 94, 0.3);
}

.cozy-feed-event--game .cozy-feed-event-icon { color: #86efac; }

/* Responsive */
@media (max-width: 430px) {
  .cozy-compose-header {
    gap: 0.5rem;
  }

  .cozy-post-body {
    font-size: 0.9rem;
  }

  .cozy-feed-empty {
    padding: 2rem 1rem;
  }
}

/* Sprint 18 — Micro social moments and emotional interactions */

.cozy-react-btn,
.cozy-post-comment-link,
.cozy-post-detail-link {
  transition: all 0.2s ease;
}

.cozy-react-btn:hover,
.cozy-post-comment-link:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  color: #c4b5fd;
  transform: scale(1.02);
}

.cozy-react-btn--active {
  background: rgba(139, 92, 246, 0.25);
  border-color: rgba(139, 92, 246, 0.5);
  color: #e9d5ff;
  animation: reactionPulse 0.4s ease-out;
}

@keyframes reactionPulse {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.cozy-post-detail-link:hover {
  color: #c4b5fd;
  transform: translateX(2px);
}

/* Gentle post card animations */
.cozy-post-card {
  animation: postFadeIn 0.5s ease-out;
  transition: all 0.3s ease;
}

@keyframes postFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cozy-post-card:hover {
  border-color: rgba(139, 92, 246, 0.35);
}

/* Ambient post footer breathing */
.cozy-post-actions {
  animation: actionsFade 0.6s ease-out 0.2s backwards;
}

@keyframes actionsFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cozy-react-btn,
  .cozy-react-btn--active,
  .cozy-post-card,
  .cozy-post-actions {
    animation: none;
    transition: none;
  }
}

/* Sprint 19 — Gentle Social Reactions */

.cozy-gentle-reactions {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  margin: 0 0.5rem;
}

.cozy-gentle-react-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  opacity: 0.7;
  touch-action: manipulation;
}

.cozy-gentle-react-btn:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  opacity: 1;
  transform: scale(1.1);
}

.cozy-gentle-react-btn:active {
  transform: scale(0.95);
}

.cozy-gentle-react-btn--sent {
  background: rgba(139, 92, 246, 0.25);
  border-color: rgba(139, 92, 246, 0.5);
  opacity: 1;
  animation: gentleReactionSent 0.4s ease-out;
}

@keyframes gentleReactionSent {
  0% {
    transform: scale(0.6) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* Nostalgia cards */
.cozy-nostalgia-card {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 0.9rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  animation: nostalgia-reveal 0.6s ease-out;
}

@keyframes nostalgia-reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cozy-nostalgia-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: #a78bfa;
}

.cozy-nostalgia-card__content {
  font-size: 0.9rem;
  color: #d4c4f0;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .cozy-gentle-react-btn,
  .cozy-gentle-react-btn--sent,
  .cozy-nostalgia-card {
    animation: none;
  }
}
