* {
  box-sizing: border-box;
}

:root {
  --bg: #0b0b0f;
  --surface: #14151a;
  --border: #1e2026;
  --text: #ffffff;
  --muted: #a5a9b4;
  --radius: 12px;
  --maxw: 880px;
  --purple: #7a7fff;
  --orange: #ff9500;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 16px 8px;
  text-align: center;
}

.logo {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
}

.logo-rants {
  color: var(--text);
}

.logo-hub {
  color: var(--orange);
}

.container {
  width: min(var(--maxw), 92%);
  margin: 0 auto;
  padding: 16px 0 48px;
}

.profiles {
  display: grid;
  gap: 16px;
}

.profile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  transition: background 0.2s ease;
}

.profile-card:hover {
  background: rgba(255, 255, 255, 0.03);
}

.profile-main {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.avatar {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--border);
  object-fit: cover;
  transition: transform 0.2s ease;
}

.profile-main:hover .avatar {
  transform: scale(1.04);
}

.meta {
  flex: 1;
  min-width: 0;
}

.meta .handle {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 600;
}

.meta .desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  overflow-wrap: break-word;
}

.profile-links {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.profile-links a {
  color: #7a7fff;
  text-decoration: underline;
}

.profile-links a:hover {
  text-decoration: none;
}

.credits {
  text-align: center;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.95rem;
}

.credits a {
  color: var(--orange);
  text-decoration: none;
}

.credits a:hover {
  text-decoration: underline;
}

.coming {
  display: grid;
  place-items: center;
  min-height: 40vh;
  text-align: center;
}

.coming h3 {
  margin: 24px 0 0;
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple);
}
