
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  color: #fff;
  background: #000;
  font-family: 'Georgia', serif;
  font-size: 1.2rem;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1611262588024-2d933d26e6d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center fixed;
  background-size: cover;
  filter: brightness(0.3) contrast(1.1);
  z-index: -1;
}
.container {
  max-width: 800px;
  margin: 80px auto;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.6);
  border-left: 4px solid white;
}
h1 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
p {
  margin-bottom: 1rem;
}
em {
  font-style: italic;
  color: #ccc;
}
a {
  color: #ccc;
  text-decoration: underline;
}
audio {
  margin-top: 2rem;
  width: 100%;
}

/* Menu déroulant Épisodes */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #111;
  color: #ccc;
  padding: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-family: 'Georgia', serif;
  font-size: 1.2rem;
  line-height: 1.6;
  text-decoration: underline;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #444;
  min-width: 160px;
  z-index: 1;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-decoration: underline;
}

.dropdown-content a:hover {
  color: #ccc;
}

.dropdown:hover .dropdown-content {
  display: block;
}

