* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #1b1b1b; /* Fond sombre */
  color: #e0e0e0; /* Texte clair */
  line-height: 1.6;
}

.container {
  width: 80%;
  margin: 0 auto;
}

header {
  background: linear-gradient(135deg, #ff3366, #ff6600); /* Dégradé vibrant */
  padding: 120px 0; /* Augmentation de la taille de la section */
  text-align: center;
  color: #fff;
  border-bottom: 4px solid #ffcc00; /* Accent doré */
  position: relative;
  z-index: 1;
}

.title {
  font-size: 4rem; /* Taille agrandie du titre */
  font-weight: bold;
  margin-bottom: 20px;
  animation: fadeIn 2s ease-in-out;
}

.sub-title {
  font-size: 1.4rem; /* Taille augmentée pour la sous-titre */
  margin-bottom: 30px;
  font-weight: 300;
}

.description {
  font-size: 1.1rem; /* Taille de texte plus grande pour la description */
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-weight: 300;
}

.btn-join {
  padding: 15px 30px;
  background-color: #ffcc00;
  color: #333;
  text-decoration: none;
  border-radius: 25px;
  font-size: 1.4rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-join:hover {
  background-color: #ff9900;
  transform: scale(1.05);
}

#presentation {
  padding: 60px 0;
  text-align: center;
  background: #121212;
  margin-bottom: 30px;
  border-radius: 10px;
  color: #e0e0e0;
}

#presentation h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  font-weight: 600;
  color: #ffcc00;
}

#presentation p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.features {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
}

.feature-item {
  background: #1e1e1e;
  padding: 30px;
  border-radius: 10px;
  width: 30%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-item:hover {
  background-color: #333;
  transform: translateY(-5px);
}

.feature-item h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #ff3366;
}

.feature-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 300;
}

.cta {
  margin-top: 40px;
}

.cta p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.cta .btn-join {
  padding: 12px 30px;
  background-color: #ff3366;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 1.4rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta .btn-join:hover {
  background-color: #ff6600;
  transform: scale(1.05);
}

#streamers {
  padding: 60px 0;
  text-align: center;
  background: #1b1b1b;
}

#streamers h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#streamers p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

#panel {
  padding: 60px 0;
  text-align: center;
  background: #121212;
}

#panel h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#panel p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  border-top: 4px solid #ffcc00;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;

/* Animation de fondu */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
