html {
  height: 100%;
  width: 100%;
}

..countdown {
  text-align: center;
  padding: 60px 20px 30px;
  color: #ccc; /* gris général */
  font-family: 'Courier New', monospace;
  background-color: #000;
}

.countdown-label {
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #888; /* sous-titre plus subtil */
}

#timer {
  font-size: 3rem;
  font-weight: bold;
  display: inline-block;
  background-color: #111;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); /* lueur blanche douce */
}

.digit {
  color: #ddd; /* chiffres gris clair */
  font-variant-numeric: tabular-nums;
  animation: pulse 1.8s infinite ease-in-out;
}

.unit {
  color: #aaa; /* lettres j h m s gris moyen */
  font-size: 1.2rem;
  margin: 0 6px;
  font-weight: normal;
}


@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.critics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centre les deux blocs sur la largeur */
  gap: 2rem;
  margin-top: 1.5rem; /* rapproche les citations de la vidéo */
  padding: 0 1rem;
  text-align: center; /* centre le texte à l'intérieur */
}

.critic {
  flex: 1 1 300px;
  max-width: 400px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}


@media (min-width: 768px) {
  .testimonials {
    flex-direction: row;
    justify-content: space-between;
  }
}




.poster img {
  width: 60%;
  max-width: 500px;
  display: block;
  margin: 40px auto;
  border: 2px solid #fff;
}


.reveal-button-section {
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

#reveal-button {
  background-color: rgba(200, 200, 200, 0.2);
  border: 1px solid #aaa;
  padding: 15px 30px;
  font-size: 16px;
  backdrop-filter: blur(8px);
  color: #000;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

#reveal-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.download-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.download-links.hidden {
  opacity: 0;
  pointer-events: none;
}

.download-links a {
  background: rgba(200, 240, 220, 0.25); /* effet glacial vert pâle */
  border: 1px solid rgba(150, 200, 180, 0.4);
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  color: #0c0c0c;
  font-weight: 500;
  backdrop-filter: blur(6px);
  transition: background-color 0.2s ease;
}

.download-links a:hover {
  background-color: rgba(180, 240, 210, 0.4);
}






.film-footer {
  background-color: #000;
  padding: 40px 20px;
  text-align: center;
  color: #888;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid #222;
}



.footer-text p {
  margin: 8px 0;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  margin-top: 10px;
}

.footer-social i {
  font-size: 1.1rem;
  color: #aaa;
}

.footer-social span {
  margin-left: 10px;
  font-weight: 600;
  color: #ccc;
}
