.creators-page {
  max-width: 720px;
  margin: 0 auto;
}
.creators-header h1 {
  font-weight: 300;
  font-size: 1.7rem;
  margin: 0.5rem 0 0.3rem;
}
.creators-header p { margin-bottom: 1.2rem; }

.creator-add {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.4rem;
  padding: 0.7rem 0.8rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.creator-add input {
  flex: 1;
  min-width: 200px;
  padding: 0.5rem 0.7rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
}
.creator-add button {
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  background: #378ADD;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.creators-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.6rem;
}
.creator-card {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.12s, transform 0.06s;
}
.creator-card:hover  { border-color: #378ADD; }
.creator-card:active { transform: scale(0.995); }
.creator-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #378ADD 0%, #2ea866 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
}
.creator-body { flex: 1; min-width: 0; }
.creator-name { font-weight: 600; font-size: 1rem; margin-bottom: 0.15rem; }
.creator-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.creator-meta .unread {
  display: inline-block;
  padding: 0.05rem 0.5rem;
  border-radius: 999px;
  background: #378ADD;
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
}
.creator-notes {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  font-style: italic;
}
.creator-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-muted);
}
.creator-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 0.4rem;
}
.creator-actions button {
  padding: 0.3rem 0.5rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}
.creator-actions button:hover { background: var(--bg); color: var(--text); }

/* Detail page */
.detail-page { max-width: 720px; margin: 0 auto; }
.detail-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 0.5rem 0 1rem;
}
.detail-header h1 {
  font-weight: 300;
  font-size: 1.7rem;
  margin: 0;
}
.detail-header .creator-avatar {
  width: 56px;
  height: 56px;
  font-size: 1.3rem;
}
.detail-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.detail-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.8rem 0;
}
.detail-actions button, .detail-actions a.button {
  padding: 0.55rem 1rem;
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
}
.detail-actions .primary { background: #378ADD; color: white; border-color: #378ADD; font-weight: 600; }
.detail-actions button:disabled { opacity: 0.5; cursor: not-allowed; }
.detail-status { font-size: 0.85rem; color: var(--text-muted); margin: 0.4rem 0 0.8rem; min-height: 1.2em; }

.detail-sources {
  padding: 0.7rem 0.9rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}
.detail-sources h2 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 0.4rem; }
.detail-sources ul { list-style: none; margin: 0; padding: 0; }
.detail-sources li {
  padding: 0.3rem 0;
  border-bottom: 1px dashed var(--border);
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.detail-sources li:last-child { border-bottom: none; }
.detail-sources .src-count { color: var(--text-muted); font-size: 0.8rem; }
.detail-sources .no-sources { color: var(--text-muted); font-style: italic; padding: 0.3rem 0; }

.detail-stream {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.stream-card {
  padding: 0.8rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.stream-card.is-read { opacity: 0.55; }
.stream-title { font-weight: 600; font-size: 1rem; margin-bottom: 0.2rem; }
.stream-title a { color: var(--text); text-decoration: none; }
.stream-title a:hover { text-decoration: underline; }
.stream-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.stream-excerpt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.4; }

.pager { display: flex; justify-content: center; gap: 0.5rem; margin: 1rem 0; }
.pager button {
  padding: 0.4rem 0.9rem;
  font-family: inherit;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  cursor: pointer;
}
.pager button:disabled { opacity: 0.4; cursor: not-allowed; }
