
.profile-container {
  background: #1e1e2e; /* Couleur sombre type éditeur */
  color: white;
  padding: 20px;
  border-radius: 12px;
  max-width: 400px;
  border: 1px solid #00babc; /* Le fameux bleu 42 */
  font-family: 'Inter', sans-serif;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #00babc;
  object-fit: cover;
}

.login-tag {
  background: #00babc;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  font-weight: bold;
}

.level-container { margin-top: 15px; width: 100%; }
.progress-bar-bg {
  background: #3e3e4e;
  border-radius: 10px;
  height: 12px;
  width: 100%;
  overflow: hidden;
}
.progress-bar-fill {
  background: #00babc; /* Bleu 42 */
  height: 100%;
  width: 0%; /* Sera mis à jour par le JS */
  transition: width 1s ease-in-out;
}