body {
  margin: 0;
  padding: 0;
  font-family: 'Rampart One', cursive;
  background: linear-gradient(270deg, #ffb6c1, #ffd700, #87cefa, #dda0dd, #ff69b4);
  background-size: 1000% 1000%;
  animation: rainbow 20s linear infinite;
  color: #fff;
  text-align: center;
}

@keyframes rainbow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.container {
  padding: 4rem 2rem;
  margin: 0 auto;
}

.maxipodcast {
  font-size: 6rem;
  margin: 40px 0 0 0;
}

.deloulou {
  font-size: 3rem;
  margin: 0;
}

.container_title {
  display: flex;
  flex-direction: column;
}

p {
  font-family: 'Rampart One', cursive;
  font-size: 6rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px #ff69b4;
}

.heart {
  color: #ff1493;
  font-weight: bold;
}

img {
  width: 100%;
  margin-bottom: 2rem;
}

audio {
  width: 100%;
  max-width: 300px;
  filter: drop-shadow(0 0 10px #fff);
}

.audio-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.play-btn {
  background: linear-gradient(45deg, #ff69b4, #ffd700, #87cefa, #dda0dd, #98fb98);
  background-size: 300%;
  animation: btnshine 4s linear infinite;
  border: none;
  padding: 0.8rem 1.6rem;
  font-size: 1.2rem;
  border-radius: 50px;
  color: white;
  font-family: 'Rampart One';
  box-shadow: 0 0 10px #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.play-btn:hover {
  transform: scale(1.05);
}

@keyframes btnshine {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.rainbow-bar {
  width: 100%;
  max-width: 300px;
  height: 10px;
  background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 10px white;
}

.progress {
  height: 100%;
  width: 0%;
  background: white;
  opacity: 0.8;
  transition: width 0.1s linear;
}

/* ----------- Responsive adjustments ----------- */

@media (max-width: 768px) {
  .maxipodcast {
    font-size: 3.5rem;
  }

  .deloulou {
    font-size: 2rem;
  }

  p {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
  .maxipodcast {
    font-size: 2.5rem;
  }

  .deloulou {
    font-size: 1.5rem;
  }

  p {
    font-size: 2.5rem;
  }

  .container {
    padding: 2rem 1rem;
  }

  .play-btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}
