/* Base */
body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    Arial,
    sans-serif;
  background: #0f172a;
  color: #e5e7eb;

  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Layout */
.container {
  max-width: 700px;
  padding: 2rem 1rem;
  text-align: center;
}

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.first-name,
.last-name {
  display: inline-block;
}

.username {
  color: #9ca3af;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.description {
  color: #9ca3af;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* Nostr */
.nostr {
  margin-bottom: 1rem;
}

.nostr a {
  color: #9ca3af;
  text-decoration: none;
  font-family: monospace;
  font-size: 0.85rem;
  border-bottom: 1px dotted #4b5563;
  transition: 0.2s;
}

.nostr a:hover {
  color: #e5e7eb;
  border-color: #9ca3af;
}

/* Links */
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.links a {
  padding: 0.6rem 1rem;
  border: 1px solid #374151;
  border-radius: 999px;
  text-decoration: none;
  color: #e5e7eb;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.links a:hover {
  background: #1f2937;
  border-color: #4b5563;
  transform: translateY(-2px);
}

/* Highlight Blog subtly */
.links a:last-child {
  border-color: #6b7280;
  font-weight: 500;
}

/* Mobile */
@media (max-width: 500px) {
  .container {
    padding: 4rem 1rem;
  }

  h1 {
    font-size: 2rem;
  }
}
