body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #fff;
  align-items: center;
}

body::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  display: flex;
  justify-content: space-around;
  padding: 1rem 0;
  background: #111;
  border-bottom: 1px solid #222;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8rem;
  color: #ccc;
  font-weight: normal;
  transition: color 0.2s;
}

.nav-item.active {
  color: var(--primary) !important;
  font-weight: bold;
}

.nav-item.active:visited,
.nav-item.active:focus,
.nav-item.active:active,
.nav-item.active:hover {
  color: var(--primary) !important;
}

.nav-item:hover {
  color: var(--primary);
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  margin-top: 15px;
}

.image-container img {
  max-width: 33%;
  height: auto;
  border-radius: 16px; /* Optionnel : coins arrondis */
}


.container {
  padding: 1rem;
}

.hero {
  text-align: center;
  margin: 2rem 0;
  margin-top: -20px;
}

.hero h1 {
  font-size: 1.8rem;
  font-weight: 900;
}

.hero p {
  color: #aaa;
  margin-bottom: 1rem;
}

.tracks {
  display: flex;
  flex-direction: column;
  gap: 1rem;

}

.track-card {
  background: var(--card-bg);
  color: var(--text);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, border 0.2s;
}
.track-card:hover {
  box-shadow: 0 4px 20px #000a;
  border-color: var(--accent);
}

.track-card h3 {
  margin: 0;
  font-size: 1.2rem;
   align-items: center;
}

.track-card p {
  color: #777;
  font-size: 0.9rem;
  margin: 0.3rem 0 1rem;
   align-items: center;
}

.btn {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
}

.btn.primary {
  background: white;
  color: black;
}

.btn.outline {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.footer {
  padding: 2rem 1rem;
  text-align: center;
  color: #aaa;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.socials a {
  font-size: 1.5rem;
}



.socialContainer {
  width: 52px;
  height: 52px;
  background-color: rgb(44, 44, 44);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: .3s;
}
.containerOne:hover { background-color: #c405a4; }
.containerTwo:hover { background-color: #00acee; }
.containerThree:hover { background-color: #0072b1; }
.containerFour:hover { background-color: #128C7E; }

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: .3s;
}

.socialSvg {
  width: 17px;
}
.socialSvg path {
  fill: rgb(244, 244, 243);
}
.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}
@keyframes slide-in-top {
  0% { transform: translateY(-50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}


.logo-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-bottom: 4px;
   filter: brightness(0) invert(1); /* noir → blanc */
     align-items: center;
}


.track-img {
   position: absolute;
  top: px;
  right: 30px;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  border-right: 0 solid #fff;
}

.track-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.audio-controls {
  display: flex;
  gap: 10px;
  margin-top: 50px;
  align-items: center;
  justify-content: center;
}

.audio-controls button {
  padding: 4px 4px;
  background-color: black;
  color: white;
  border: 1px solid white;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
}


.wave {
  display: flex;
  justify-content: center;
  gap: 3px;
  height: 40px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}


.wave {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 60px; /* hauteur globale du conteneur */
  margin-top: 10px;
}

.wave span {
  display: block;
  width: 4px;
  background: white;
  animation: waveAnim 1s infinite ease-in-out;
  animation-play-state: paused;
  border-radius: 2px;
}

/* Différencier la hauteur pour chaque barre */
.wave span:nth-child(1) { height: 20%; animation-delay: 0s; }
.wave span:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.wave span:nth-child(3) { height: 90%; animation-delay: 0.2s; }
.wave span:nth-child(4) { height: 60%; animation-delay: 0.3s; }
.wave span:nth-child(5) { height: 20%; animation-delay: 0.4s; }
.wave span:nth-child(6) { height: 50%; animation-delay: 0.5s; }
.wave span:nth-child(7) { height: 80%; animation-delay: 0.6s; }
.wave span:nth-child(8) { height: 30%; animation-delay: 0.7s; }
.wave span:nth-child(9) { height: 70%; animation-delay: 0.8s; }
.wave span:nth-child(10) { height: 40%; animation-delay: 0.9s; }

@keyframes waveAnim {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.8); /* plus grand pour de longues ondes */
  }
}
.audio-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50px;
  width: fit-content;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.audio-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, #2b2b2b, #1a1a1a);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.audio-btn:hover {
  background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.audio-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.audio-btn i {
  font-size: 18px;
  color: #fff;
}

/* Animation pour le bouton play */
.audio-btn:nth-child(3) {
  background: linear-gradient(145deg, #4a4a4a, #3a3a3a);
}

.audio-btn:nth-child(3):hover {
  background: linear-gradient(145deg, #5a5a5a, #4a4a4a);
}



#popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#popup {
  background: #111;
  color: white;
  padding: 2rem;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
  animation: popupFadeIn 0.5s ease;
}

#popup-close {
  position: absolute;
  top: 10px; right: 15px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

#carousel {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
}

#carousel-content img,
#carousel-content video {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 32px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.arrow.left { left: 10px; }
.arrow.right { right: 10px; }

.popup-link {
  display: inline-block;
  margin-top: 1rem;
  background: #c405a4;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.popup-link:hover {
  background: #a4048a;
}

@keyframes popupFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

:root {
  --primary: #bfff00;
  /* ...autres variables... */
}
