/* Genel sayfa stili */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000; /* Koyu arka plan */
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #ffffff;
}

/* Ana kart */
.link-page {
  width: 100%;
  max-width: 480px;
  text-align: center;
}

/* Profil / başlık */
.profile h1 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.subtitle {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #9ca3af; /* gri yazı */
}

.avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 2px solid #ffffff20;
}

/* Link listesi */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* Eski button stilinin linke uyarlanmış hali */
.link-btn {
  display: block;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 600;
  text-transform: none; /* İstersen 'uppercase' yapabilirsin */
  color: #ffffff80;
  text-align: center;
  text-decoration: none;
  background: transparent;
  border: 1px solid #ffffff80;
  box-shadow: none;
  text-shadow: none;
  user-select: none;
  transition: 0.35s ease;
}

/* Hover & focus efekti (fix: sadece .link-btn) */
.link-btn:hover,
.link-btn:focus-visible {
  color: #ffffff;
  background: #008cff;
  border-color: #008cff;
  text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff;
  box-shadow: 0 0 5px #008cff, 0 0 20px #008cff, 0 0 50px #008cff,
    0 0 100px #008cff;
  outline: none;
}

/* Footer */
.footer {
  margin-top: 24px;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Küçük ekranlarda kenarlardan çok yapışmasın */
@media (max-width: 480px) {
  body {
    padding: 16px;
  }
}
