.links-page {
  max-width: 440px;
  margin: 0 auto;
  padding: 28px 20px 48px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.links-brand {
  text-align: center;
  margin-bottom: 28px;
}

.links-brand .brand {
  font-size: 18px;
  text-decoration: none;
  color: var(--gold);
}

.links-profile {
  text-align: center;
  margin-bottom: 28px;
}

.links-profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto 16px;
  display: block;
  background: var(--navy);
}

.links-profile-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.links-profile-handle {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.links-profile-bio {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  max-width: 340px;
  margin: 0 auto;
}

.links-profile .accent-bar {
  margin: 20px auto 0;
}

.links-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.links-nav .link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 3px;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.links-nav .link:hover {
  text-decoration: none;
  opacity: 0.92;
  transform: translateY(-1px);
}

.links-nav .link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.links-nav .link-hero {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1.5px;
  padding: 18px 22px;
  border: 2px solid var(--gold);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.28);
}

.links-nav .link-hero:hover {
  background: #e0c04a;
  border-color: #e0c04a;
}

.links-nav .link-hero .link-hint {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: rgba(26, 42, 68, 0.65);
}

.links-nav .link-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.55);
}

.links-nav .link-secondary:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
}

.links-footer {
  margin-top: auto;
  padding-top: 32px;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.links-footer a {
  color: var(--gold);
  text-decoration: none;
}

.links-footer a:hover {
  color: var(--gold);
  text-decoration: underline;
}
