body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #111;
  color: #f4f4f4;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to bottom, #151515 0%, #1e1e1e 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
  opacity: 0.50;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 2rem;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.tagline {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 2rem;
}
button {
  background: linear-gradient(to right, #ff5f6d, #ffc371);
  border: none;
  color: white;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px #ff5f6d50;
}
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px #ffc37180;
}

/* ÉPISODES */
.episodes {
  background: #181818;
  padding: 4rem 2rem;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.episode-list {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.episode-row {
  display: flex;
  align-items: center;
  background: #222;
  padding: 1.2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  gap: 1.2rem;
  flex-wrap: wrap;
  position: relative;
}
.cover-wrapper {
  position: relative;
}
.cover-wrapper img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
}
.tag-new {
  display: inline-block;
  background: #ff5f6d;
  color: white;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 0.4rem;
}
.episode-info {
  flex-grow: 1;
  min-width: 200px;
}
.episode-info h3 {
  margin: 0 0 0.3rem;
  font-size: 1.3rem;
  color: #fff;
}
.episode-info p {
  margin: 0;
  color: #aaa;
  font-size: 0.95rem;
}
.play-btn {
  background: #ff5f6d;
  border: none;
  color: white;
  font-size: 0.9rem;         /* ↓ moins grand que 1.2rem pour le texte */
  font-weight: bold;
  width: 50px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}

.play-btn:hover {
  background: #ffc371;
}

/* BARRE DE PROGRESSION */
.progress-container {
  height: 6px;
  background: #333;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 10px;
  width: 100%;
}
.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #ff5f6d, #ffc371);
  transition: width 0.2s ease;
}

/* SUPPRESSION DU POPUP : ces éléments sont devenus inutiles */
.modal,
.modal.open,
.modal-content,
.modal-content img,
.modal-content h2,
.modal-content p,
.modal-content .close {
  display: none !important;
}
