@font-face {
  font-family: 'Gabarito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/gabarito/v1/QGYtz_0dZAGKJJ4t3HtoW4U.woff2) format('woff2');
}
@font-face {
  font-family: 'Gabarito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/gabarito/v1/QGYtz_0dZAGKJJ4t3HtoW4U.woff2) format('woff2');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  min-height: 100vh;
  font-family: 'Gabarito', sans-serif;
  color: #ffffff;
  background: transparent !important;
  -webkit-font-smoothing: antialiased;
}

/* Lienzo de fondo de estrellas */
#site-stars {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(1200px 800px at 28% 8%, #0b1c3d 0%, #071021 55%, #04070f 100%);
}

.app {
  max-width: 680px;
  margin: 0 auto;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.profile_avatar img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.profile_name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.profile_name h1 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.profile_name svg {
  width: 20px;
  height: 20px;
  fill: #3b82f6; /* Color azul verificado */
}

/* Lista de Enlaces */
.link_list {
  width: 100%;
}

.link_list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link_item {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 100px;
  padding: 6px 12px 6px 6px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.2s ease;
}

.link_item:hover {
  transform: scale(1.025);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.link_icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.link_text {
  flex-grow: 1;
  text-align: center;
  color: #1e293b;
  font-size: 16px;
  font-weight: 600;
  padding-right: 48px; /* Centra el texto compensando el icono */
}

@media (max-width: 480px) {
  .app {
    padding: 35px 16px;
  }
  .link_text {
    font-size: 15px;
  }
}