/* Reset léger */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f8f8f8;
}

/* Lien retour */
.retour {
  color: green;
  text-decoration: none;
  font-size: 1.2em;
  display: inline-block;
  margin: 15px;
}

/* Compteur */
.compteur {
  text-align: center;
  font-size: 18px;
  color: green;
}

/* Section vidéo principale */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-video {
  width: 100%;
  border-radius: 8px;
}

.cta {
  display: inline-block;
  margin-top: 15px;
  font-size: 1.2em;
  color: #2ecc71;
  text-decoration: none;
  font-weight: bold;
}

/* Titre */
.intro h1 {
  text-align: center;
  margin: 40px 20px;
  font-size: 2em;
  color: #2c3e50;
}

/* Vidéos miniatures */
.video-grid {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.video-grid video {
  width: 200px;
  border-radius: 6px;
}

/* Menu */
.menu-section {
  text-align: center;
  margin: 40px 0;
}

.menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.menu a {
  font-size: 24px;
  text-decoration: none;
  color: #27ae60;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .menu a {
    font-size: 20px;
  }

  .video-grid video {
    width: 150px;
  }
}=========







