body {
    background: linear-gradient(346deg, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #0c0b0b, #ffc107) !important;
}
.bg-dark {
    background-color: #0c0b0b !important;
}
.icon-shine {
  color: #ffc107 !important; /* jaune doré */
  position: relative;
  display: inline-block;
  animation: shine 2s infinite linear;
}

/* Effet glow autour */
.icon-shine::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,193,7,0.6) 0%, transparent 70%);
  animation: glow 2s infinite ease-in-out;
}

/* Animation scintillante */
@keyframes shine {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.8); }
  100% { filter: brightness(1); }
}

/* Animation glow */
@keyframes glow {
  0% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.2); }
  100% { opacity: 0.4; transform: scale(1); }
}


/* Hero section */
.hero {
  position: relative;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInDown 1.5s ease;
}

.hero p.lead {
  font-size: 1.5rem;
  animation: fadeInUp 2s ease;
}

/* Icônes bounce */
.icon-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Footer */
.footer {
  background: #111;
  color: #fff;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer a {
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffd700;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
