/* RESET GLOBAL */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* BLOQUE LE SCROLL + ÉVITE LES BANDES BLANCHES */
html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* BODY – CENTRAGE + FOND */
body {
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  background: radial-gradient(circle at top, #0f0f0f, #1a0000);
  color: #ffffff;
  overscroll-behavior: none;
}

/* CARTE PRINCIPALE */
.card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* PROFIL */
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}

/* AVATAR */
.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b91c1c, #4b0000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  user-select: none;
  overflow: hidden;
}

/* NOM */
.profile h1 {
  font-size: 1.4rem;
  font-weight: 700;
}

/* DESCRIPTION */
.profile p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 5px;
  text-align: center;
}

/* LISTE DES LIENS */
.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* BOUTON LIEN */
.link {
  text-decoration: none;
  padding: 15px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  color: #ffffff;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

/* HOVER */
.link:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #b91c1c, #4b0000);
}

/* FLECHE */
.arrow {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* FOOTER */
footer {
  margin-top: 25px;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.6;
}

/* BOUTONS VERROUILLES */
.link.locked {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
  pointer-events: none;
}

/* RESPONSIVE MOBILE */
@media (max-width: 480px) {
  .card {
    padding: 25px 20px;
  }

  .avatar {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}