/* Réinitialisation des styles de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #1e1e2f, #2d2d44);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  overflow: hidden;
}

/* Conteneur principal */
.container {
  max-width: 600px;
  padding: 40px 20px;
}

/* Icône ou élément visuel */
.icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

/* Titre avec effet de pulsation */
h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(45deg, #ff7b00, #ffae00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Texte de description */
p {
  font-size: 1.1rem;
  color: #b3b3cc;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Barre de progression stylisée */
.progress-bar-container {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  height: 12px;
  width: 80%;
  margin: 0 auto 30px auto;
  position: relative;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, #ff7b00, #ffae00);
  height: 100%;
  width: 65%;
  /* Modifie ce pourcentage selon l'avancement */
  border-radius: 20px;
  animation: load 2s ease-out forwards;
}

/* Bouton de contact ou lien */
.btn-contact {
  display: inline-block;
  text-decoration: none;
  background-color: transparent;
  border: 2px solid #ff7b00;
  color: #ff7b00;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: #ff7b00;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(255, 123, 0, 0.4);
  transform: translateY(-2px);
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes load {
  from {
    width: 0%;
  }
}

/* Adaptation Mobile */
@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .icon {
    font-size: 3rem;
  }
}
