.user-info-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.user-info-panel {
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.user-info-panel h1,
.user-info-panel h2,
.user-info-panel p {
  margin: 0;
}

.user-name-link {
  color: inherit;
  text-decoration: none;
}

.user-name-link:hover,
.user-name-link:focus-visible {
  color: var(--accent, #edb049);
  outline: none;
}

.user-info-panel h1 {
  max-width: 100%;
  color: var(--accent, #edb049);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.user-info-panel h2 {
  color: var(--muted, #a9a9a9);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.user-intro {
  max-width: 460px;
  color: var(--text, #d8d8d8);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.profile-pic {
  width: 112px;
  height: 112px;
  border: 1px solid var(--line, rgba(255, 255, 255, 0.12));
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface-raised, #202020);
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 2px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--muted, #a9a9a9) !important;
  font-size: 20px;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}


.social-icons a.resume-button {
  width: auto;
  min-width: 0;
  padding: 0 10px;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}

.social-icons a.resume-button i {
  font-size: 16px;
}
.social-icons a:hover,
.social-icons a:focus-visible {
  background: rgba(237, 176, 73, 0.1);
  color: var(--accent, #edb049) !important;
  outline: none;
}

.user-location-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted, #a9a9a9);
}

.material-symbols-outlined {
  color: var(--muted, #a9a9a9) !important;
  font-size: 18px;
}

.user-location-container h2 {
  margin: 0;
}

@media (max-width: 700px) {
  .user-info-panel {
    gap: 5px;
  }

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

  .user-info-panel h1 {
    font-size: 30px;
  }

  .user-info-panel h2,
  .user-intro {
    font-size: 13px;
  }

  .social-icons {
    gap: 10px;
  }
}

.navigation-buttons {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 6px;
}

.navigation-buttons .nav-button {
  position: static;
  transform: none;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid transparent;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: transparent;
  color: var(--muted, #a9a9a9) !important;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  opacity: 1;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.navigation-buttons .nav-button.active,
.navigation-buttons .nav-button:hover,
.navigation-buttons .nav-button:focus-visible {
  background: var(--surface, #171717);
  border-color: var(--line, rgba(255, 255, 255, 0.08));
  color: var(--accent, #edb049) !important;
  outline: none;
}
.info-container .top-container {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (max-width: 700px) {
  .navigation-buttons {
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    gap: clamp(2px, 1vw, 6px);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .navigation-buttons::-webkit-scrollbar {
    display: none;
  }

  .navigation-buttons .nav-button {
    flex: 0 1 auto;
    min-width: 0;
    min-height: 34px;
    padding: 8px clamp(5px, 2vw, 10px);
    font-size: clamp(10px, 2.8vw, 12px);
    line-height: 1.1;
    white-space: nowrap;
  }
}