body {
  margin: 0;
  font-family: sans-serif;
  background-color: #fff;
  background-image: 
    linear-gradient(to bottom right, rgba(255,102,0,0.6), rgba(255,255,255,0.6), rgba(0,204,102,0.6)),
    url('../assets/img/croix.png'); /* ✅ chemin corrigé */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  min-height: 100vh;
  padding: 20px;
  padding-top: 60px; /* Pour éviter que le bandeau masque le haut de la page */
}

/* 👑 Bandeau Semic Acoustik */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 20px;
  background: rgba(255,255,255,0.9);
  color: #333;
  font-weight: bold;
  font-size: 14px;
  text-align: left;
  z-index: 10000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  color: darkgreen;
}
form {
  margin: 20px 0;
  text-align: center;
}
input[type="text"] {
  padding: 10px;
  width: 400px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
button {
  padding: 10px 20px;
  background-color: darkorange;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
ul {
  list-style: none;
  padding-left: 0;
  text-align: center;
}
footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.6);
  font-weight: bold;
  color: #222;
  text-align: left;
}

/* 🎵 Notes musicales animées */
.notes-musicales, .noms-sacres {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 999;
}

.note, .mot-sacre {
  position: absolute;
  bottom: 0;
  color: #fff;
  font-weight: bold;
  opacity: 0;
}

.note {
  animation: montee 6s linear forwards, scintille 3s ease-in-out infinite;
}

.mot-sacre {
  animation: monteeSacree 7s ease-in forwards, scintilleSacree 3s ease-in-out infinite;
}

@keyframes montee {
  0% { transform: translateY(0); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translateY(-300px); opacity: 0; }
}
@keyframes scintille {
  0%, 100% { text-shadow: 0 0 3px #fff; }
  50% { text-shadow: 0 0 8px #ffd700; }
}
@keyframes monteeSacree {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(-400px); opacity: 0; }
}
@keyframes scintilleSacree {
  0%, 100% { text-shadow: 0 0 3px #fff, 0 0 6px #faf0dc;