/* ============================================================
   Bot Activity Feed — HypeCity Tycoon · Day 15 P0 (DEMO_GATE)
   Styles for the dashboard "Friends Activity" card driven by
   bots/seed.js → bot-activity-feed.js. Matches the existing
   dash-section aesthetic (dark surface, green accents, mono
   timestamps).
   ============================================================ */

.bot-feed {
  background: var(--color-surface, #111);
  border: 1px solid var(--color-border-subtle, #222);
  border-radius: var(--radius-md, 8px);
  padding: var(--space-4, 16px);
}

.bot-feed__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3, 12px);
  margin-bottom: var(--space-3, 12px);
  padding-bottom: var(--space-2, 8px);
  border-bottom: 1px solid var(--color-border-subtle, #222);
}

.bot-feed__title {
  margin: 0;
  font-size: var(--text-sm, 14px);
  font-weight: 600;
  color: var(--color-text-primary, #f0f0f0);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bot-feed__sub {
  font-size: var(--text-xs, 12px);
  color: var(--color-text-tertiary, #888);
}

.bot-feed__posts {
  display: flex;
  flex-direction: column;
  gap: var(--space-3, 12px);
}

.bot-feed__post {
  padding: var(--space-2, 8px) 0;
  border-bottom: 1px dashed var(--color-border-subtle, #222);
}
.bot-feed__post:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.bot-feed__post-header {
  display: flex;
  align-items: center;
  gap: var(--space-2, 8px);
  font-size: var(--text-xs, 12px);
  color: var(--color-text-secondary, #b0b0b0);
  margin-bottom: 4px;
}

.bot-feed__avatar { font-size: 1rem; }

.bot-feed__name {
  font-weight: 600;
  color: var(--color-text-primary, #f0f0f0);
}

.bot-feed__handle {
  color: var(--color-text-tertiary, #888);
  font-family: var(--font-mono, monospace);
}

.bot-feed__bot-tag {
  font-size: 10px;
  padding: 0 5px;
  border-radius: 3px;
  background: rgba(140, 100, 255, 0.18);
  color: #b69bff;
}

.bot-feed__time {
  margin-left: auto;
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  color: var(--color-text-tertiary, #888);
}

.bot-feed__post-text {
  color: var(--color-text-primary, #f0f0f0);
  font-size: var(--text-sm, 14px);
  line-height: 1.45;
}

/* Anonymous-friends sign-up CTA card on /tycoon/inbox.html */
.friends-anon-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3, 12px);
  padding: var(--space-3, 12px) 0;
}

.friends-anon-cta__icon {
  font-size: 2rem;
}

.friends-anon-cta__text {
  margin: 0;
  color: var(--color-text-secondary, #b0b0b0);
  max-width: 480px;
}
