:root {
  --bg: #020617;
  --card: #020617;
  --accent: #3b82f6;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: #1f2937;
  --radius: 999px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.65);
  --shadow-hover: 0 22px 60px rgba(15, 23, 42, 0.9);
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0f172a 0, #020617 55%, #000 100%);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.bio-container {
  width: 100%;
  max-width: 420px;
  background: radial-gradient(circle at top left, #111827 0, #020617 55%);
  border-radius: 32px;
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.18);
  position: relative;
  overflow: hidden;
}

/* petit effet glow */
.bio-container::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.18), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.profile-pic {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid rgba(148, 163, 184, 0.7);
  object-fit: cover;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 1.35rem;
  margin: 0;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}

.bio {
  margin: 6px 0 22px;
  font-size: 0.9rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(51, 65, 85, 0.9);
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out,
    border-color 0.16s ease-out, background 0.16s ease-out;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.7);
}

.link-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), #020617);
}

.link-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.link-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.link-label {
  text-align: left;
}

.link-title {
  display: block;
}

.link-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.link-cta {
  font-size: 0.75rem;
  color: var(--accent);
}

/* Responsive */
@media (max-width: 480px) {
  .bio-container {
    padding: 26px 18px 22px;
    border-radius: 24px;
  }

  .profile-pic {
    width: 84px;
    height: 84px;
  }

  .link-item {
    padding: 12px 14px;
  }
}
