/* --- Styles généraux --- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: white;
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: white;
}

/* --- En-tête --- */
header {
  padding: 20px 0;
}

header img {
  width: 100%;
  max-width: 600px;
}

/* --- Section du compte à rebours --- */
#countdown {
  font-size: 20px;
  margin: 20px 0;
}

/* --- Bouton Play --- */
.play-button {
  width: 100%;
  max-width: 200px;
  cursor: pointer;
}

/* --- Boutons de plateformes --- */
.platform-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.platform-links a {
  padding: 8px 15px;
  background-color: #f44336;
  border-radius: 3px;
}

/* --- Réseaux sociaux --- */
.social {
  margin-top: 20px;
}

.social img {
  width: 42px;
  height: 34px;
}

/* --- Pied de page --- */
footer {
  margin-top: 40px;
  color: #999;
  font-size: 14px;
}

footer a {
  background-color: #007BFF;
  padding: 8px 15px;
  border-radius: 3px;
  margin: 5px;
  display: inline-block;
}

/* --- Neige au sol --- */
.neige-sol {
  width: 100%;
  height: 120px;
  background: white;
  border-top-left-radius: 100% 40px;
  border-top-right-radius: 100% 40px;
  margin-top: 50px;
}

/* --- Neige animée --- */
#snow-canvas {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}
