/* SocialTrace — fake social media platform */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
  background: #0e1217; color: #e7eaef; line-height: 1.5;
}
header {
  background: #1a1f29; border-bottom: 1px solid #2a3140;
  padding: 0.8rem 0; position: sticky; top: 0; z-index: 10;
}
header .container { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em;
  color: #ff6b35;
}
.logo::before { content: "❖ "; }
.search {
  background: #0e1217; border: 1px solid #2a3140; border-radius: 24px;
  padding: 0.5rem 1.2rem; color: #e7eaef; font-size: 0.9rem; width: 320px;
}
nav a { color: #b8bfc9; text-decoration: none; margin-left: 1.5rem; font-size: 0.9rem; }
nav a:hover { color: #ff6b35; }
.container { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.profile-header {
  background: #1a1f29; border: 1px solid #2a3140; border-radius: 8px;
  padding: 2rem; margin-top: 2rem;
}
.profile-top { display: flex; gap: 2rem; align-items: flex-start; }
.avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35, #c8401a);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.profile-info h1 { font-size: 1.6rem; margin-bottom: 0.2rem; }
.profile-info .handle { color: #ff6b35; font-size: 0.95rem; margin-bottom: 0.8rem; }
.profile-info .bio { color: #c5cad3; margin-bottom: 1rem; }
.profile-info .meta { color: #8a91a0; font-size: 0.85rem; }
.profile-info .meta span { margin-right: 1.2rem; }
.posts { margin-top: 2rem; }
.post {
  background: #1a1f29; border: 1px solid #2a3140; border-radius: 8px;
  padding: 1.4rem; margin-bottom: 1rem;
}
.post-meta { color: #8a91a0; font-size: 0.82rem; margin-bottom: 0.8rem; }
.post-text { font-size: 0.98rem; }
.post-text a { color: #ff6b35; text-decoration: none; }
.post-text a:hover { text-decoration: underline; }
.post-actions { margin-top: 1rem; display: flex; gap: 1.5rem; color: #8a91a0; font-size: 0.82rem; }
.tag { background: #2a3140; color: #ff6b35; padding: 0.15rem 0.55rem; border-radius: 3px; font-size: 0.78rem; }
footer { color: #6b7280; text-align: center; padding: 2rem 0; font-size: 0.8rem; }
.search-results { margin-top: 2rem; }
.search-result {
  background: #1a1f29; border: 1px solid #2a3140; border-radius: 8px;
  padding: 1rem 1.4rem; margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 1rem;
  transition: border-color 0.2s;
}
.search-result:hover { border-color: #ff6b35; }
.search-result .avatar { width: 48px; height: 48px; font-size: 1.2rem; }
.search-result a { color: #e7eaef; text-decoration: none; }
.search-result .small { color: #8a91a0; font-size: 0.82rem; }
