.memories-header { text-align: center; margin-bottom: 35px; }
.memories-header h3 { font-family: var(--font-mono); color: var(--accent-cyan); }
.memories-header p { color: var(--text-muted); font-size: 0.85rem; margin-top: 5px; }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 550px;
}

.timeline-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  padding: 16px 20px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  border-color: var(--accent-purple);
  transform: translateX(5px);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.time-stamp { font-family: var(--font-mono); color: var(--accent-cyan); font-size: 0.85rem; }
.event-card { font-family: var(--font-mono); color: var(--text-muted); font-size: 0.75rem; }

.memory-viewer {
  margin-top: 30px;
  width: 100%;
  max-width: 550px;
  background: rgba(13, 16, 27, 0.9);
  border: 1px solid var(--accent-purple);
  padding: 25px;
  border-radius: 8px;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.memory-viewer.active { opacity: 1; }
.m-date { font-family: var(--font-mono); color: var(--accent-purple); font-size: 0.9rem; margin-bottom: 10px; }
.m-text { font-size: 0.95rem; line-height: 1.6; color: var(--text-main); }
.m-author { display: block; margin-top: 15px; font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-dim); text-align: right; }