body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #8774c0, #7b2ff7);
  color: white;
  text-align: center;
  padding: 40px;
}

h1 {
  font-size: 3rem;
  text-shadow: 0 0 10px #fff, 0 0 20px #b197fc, 0 0 40px #7b2ff7;
}

.progress-container {
  width: 80%;
  margin: 30px auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.progress-bar {
  height: 40px;
  width: 40%; /* Valeur modifiée par script.js */
  background: linear-gradient(90deg, #7b2ff7, #c28ffd);
  transition: width 0.5s ease;
}

.sub-count {
  margin: 20px;
  font-size: 1.5rem;
}

.goals {
  margin-top: 40px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.goal {
  background: rgba(255,255,255,0.1);
  padding: 10px 20px;
  margin: 10px 0;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.goal.unlocked {
  border: 2px solid #fff;
  box-shadow: 0 0 15px #fff, 0 0 30px #7b2ff7;
}

.bg-character {
  position: fixed;
  bottom: 0;
  right: 50px;
  height: 80vh;
  z-index: -1; /* reste derrière le texte */
  opacity: 0.9;
}
