:root {
  --background: #081b33;
  --background-secondary: #102b4f;

  --card: rgba(255, 255, 255, 0.08);
  --card-hover: rgba(255, 255, 255, 0.15);

  --text: #ffffff;
  --text-muted: #b9c6d8;

  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;

  font-family: "Inter", Arial, sans-serif;

  color: var(--text);

  background:
    radial-gradient(
      circle at top,
      var(--background-secondary),
      var(--background) 65%
    );
}

.bio-container {
  width: 100%;
  max-width: 520px;

  min-height: 100vh;

  margin: 0 auto;
  padding: 48px 20px 32px;
}


/* Profile */

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

.profile-image {
  width: 108px;
  height: 108px;

  object-fit: cover;

  border-radius: 50%;

  border: 3px solid rgba(255, 255, 255, 0.9);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3);
}

.profile h1 {
  margin: 18px 0 4px;

  font-size: 28px;
  font-weight: 700;

  letter-spacing: 1px;
}

.profile h2 {
  margin: 0;

  font-size: 15px;
  font-weight: 500;

  color: var(--text-muted);
}

.tagline {
  margin: 14px 0 0;

  font-size: 14px;
  line-height: 1.6;

  color: var(--text-muted);
}


/* Links */

.links {
  display: flex;
  flex-direction: column;

  gap: 12px;
}

.bio-link {
  display: grid;

  grid-template-columns:
    28px
    1fr
    20px;

  align-items: center;

  width: 100%;

  padding: 16px 18px;

  border: 1px solid var(--border);
  border-radius: 14px;

  color: var(--text);

  background: var(--card);

  text-decoration: none;

  backdrop-filter: blur(10px);

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.bio-link:hover {
  color: var(--text);

  background: var(--card-hover);

  border-color:
    rgba(255, 255, 255, 0.3);

  transform: translateY(-2px);
}

.bio-link > i:first-child {
  font-size: 20px;
}

.bio-link span {
  padding: 0 10px;

  font-size: 14px;
  font-weight: 600;
}

.bio-link .arrow {
  font-size: 13px;

  color: var(--text-muted);
}


/* Footer */

footer {
  margin-top: 35px;

  text-align: center;

  color: var(--text-muted);
}

footer p {
  margin: 4px 0;

  font-size: 12px;
}

.copyright {
  opacity: 0.65;
}


/* Mobile */

@media (max-width: 480px) {

  .bio-container {
    padding:
      34px
      16px
      25px;
  }

  .profile-image {
    width: 96px;
    height: 96px;
  }

  .profile h1 {
    font-size: 25px;
  }

  .bio-link {
    padding:
      15px
      16px;
  }
}