html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: black;
}

#videoWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

#videoPlayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none; /* invisible au départ */
}

#videoCover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;   /* taille fixe mais responsive si tu veux */
  height: 3rem;
  cursor: pointer;
  z-index: 1000;
  border: none;
  background: none;
  padding: 0;

  /* Triangle CSS */
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  background-color: white;
}

.main-button {
  position: fixed; 
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding:0.7rem 0.7rem;
  background-color: #5e6067;
  text-decoration: none;
  color: white;
  display: inline-block;
  font-size: 1rem;
  font-family: 'Courier New', Courier, monospace;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  z-index: 10; 
  }
/* Au survol */
.main-button:hover {
  background-color: #9fa1a9;
}

/* Texte overlay sur la hero */
.lyrics {
 position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* texte s’empile du haut */
  padding-top: 15vh; /* commence à 35% de la hauteur de l’écran */
  padding-left: 30px;
  padding-right: 20px;
  pointer-events: none;
  box-sizing: border-box;
  color: #F5F2E9;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  text-shadow:
    -1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
  z-index: 10;
}

/* Ligne visible */
.lyrics-line.visible {
  opacity: 1;
  transform: translateY(0);
}
.cursor {
  display: inline-block;
  margin-left: 2px;
  animation: blink 2.5s infinite;
}
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}
