/* links/style.css — Links page styles */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
}

.container {
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #4ae68a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.tagline {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.category {
  margin-bottom: 1.5rem;
  text-align: left;
}

.category h2 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4ae68a;
  margin-bottom: 0.6rem;
  padding-left: 0.25rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.links a {
  display: block;
  padding: 0.875rem 1.25rem;
  border: 1px solid #222;
  border-radius: 8px;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}

.links a:hover,
.links a:focus {
  border-color: #4ae68a;
  background: rgba(74, 230, 138, 0.06);
}

.links a .label {
  display: block;
}

.links a .desc {
  display: block;
  font-size: 0.8rem;
  color: #666;
  font-weight: 400;
  margin-top: 0.15rem;
}

footer {
  margin-top: 2.5rem;
  color: #444;
  font-size: 0.8rem;
}
