 /* Style the button that is used to open and close the collapsible content */
.collapsible {
  background: #212121;
  color: #7ae0ff;
  cursor: pointer;
  padding: 15px 20px;
  width: 100%;
  border: 2px solid #00FFCC;
  text-align: left;
  outline: none;
  font-size: 15px;
  font-family: 'Glancyr';
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  text-shadow: rgba(87,255,93,1) 0px 0px 5px;
  position: relative;
  overflow: hidden;
  margin: 10px 0;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background: #00110c;
  color: #00ffcc;
  box-shadow: 0px 0px 15px rgba(0, 255, 204, 0.5);
  text-shadow: rgba(0,255,38,0.9) 0px 0px 9px;
}

/* Add scanline effect to collapsible button */
.collapsible::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
      to bottom,
      rgba(0, 255, 204, 0.1) 0%,
      rgba(0, 255, 204, 0) 5%,
      rgba(0, 255, 204, 0.1) 10%
  );
  opacity: 0.3;
  animation: scanline 2s linear infinite;
  pointer-events: none;
}

/* Add a plus sign to indicate that the collapsible can be opened */
.collapsible:after {
  content: '\002B'; /* Unicode character for "plus" sign (+) */
  color: #00FFCC;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  font-size: 18px;
  text-shadow: rgba(0,255,38,0.9) 0px 0px 9px;
}

/* Change the plus sign to minus when the collapsible is active/open */
.active:after {
  content: "\2212"; /* Unicode character for "minus" sign (−) */
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 20px;
  display: none;
  overflow: hidden;
  background: #212121;
  border-left: 3px solid #00FFCC;
  border-right: 3px solid #00FFCC;
  border-bottom: 3px solid #00FFCC;
  border-radius: 0 0 5px 5px;
  color: #fafafa;
  font-family: 'Text';
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.content p {
  padding: 15px 0;
  margin: 0;
}

/* Style pour les listes de tracklist */
.content ol {
  list-style: none;
  padding: 15px 0;
  margin: 0;
  counter-reset: track-counter;
}

.content ol li {
  padding: 8px 0;
  margin: 0;
  padding-left: 0;
  text-indent: 0;
  counter-increment: track-counter;
  font-family: 'Text';
  color: #fafafa;
  border-bottom: 1px solid rgba(0, 255, 204, 0.2);
  transition: color 0.3s ease;
}

.content ol li:hover {
  color: #7ae0ff;
}

.content ol li:before {
  content: counter(track-counter, decimal-leading-zero) ". ";
  color: #00FFCC;
  font-weight: bold;
  text-shadow: rgba(0,255,38,0.9) 0px 0px 5px;
  margin-right: 10px;
}

.content ol li:last-child {
  border-bottom: none;
} 