body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #f0f0f0;
  
}

.hero {
  background-image: url('bg.jpg'); /* ajoute une image de fond stylée */
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px 20px;
  width: 100%;
}

.logo {
  width: 100px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5em;
  color: #ffd700;
  text-shadow: 2px 2px #000;
}

.slogan {
  font-size: 1.1em;
  margin: 15px 0;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  margin-top: 15px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #ffd700;
}

.btn.gold {
  background-color: #ffd700;
  color: #000;
}

.btn.blue {
  background-color: #1877f2;
  color: #fff;
}

section.block {
  padding: 40px 20px;
  text-align: center;
}

section.dark {
  background-color: #111;
}

h2 {
  color: #ffd700;
  font-size: 1.5em;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  color: #888;
  font-size: 0.9em;
}


.support-list {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 400px;
  text-align: left;
}

.support-list li {
  margin-bottom: 8px;
  padding-left: 10px;
  font-size: 1em;
  color: #ccc;
}