/* --- BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #050505;
  color: #d0d0d0;
  font-family: 'Space Mono', monospace, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 600px;
  padding: 40px 20px;
}

/* --- HEADER --- */
.header {
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.artist-name {
  color: #ffffff;
  font-size: 2.2rem;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.sub-heading {
  color: #666666;
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* --- TITLES --- */
.section-title {
  color: #444444;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* --- PLAYER & MIX INFO --- */
.player-section {
  margin-bottom: 40px;
}

.mix-info-box {
  margin-bottom: 12px;
}

.mix-title-text {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.player-wrapper {
  background-color: #000000;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.player-wrapper iframe {
  display: block;
}

/* --- ACCORDION / TOGGLES --- */
.toggle-container {
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  background-color: #0a0a0a;
  margin-bottom: 16px;
}

.toggle-button {
  padding: 12px 16px;
  font-size: 0.75rem;
  color: #888888;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}

.toggle-button:hover {
  color: #ffffff;
}

.toggle-content {
  padding: 12px 16px 16px 16px;
  border-top: 1px solid #141414;
}

/* Style for Description Toggle Container */
.description-toggle {
  border-color: #121212;
  background-color: #070707;
  margin-bottom: 20px;
}

.description-toggle .toggle-button {
  font-size: 0.7rem;
  color: #666666;
}

.description-toggle .toggle-button:hover {
  color: #aaaaaa;
}

/* Matcher præcis tracklistens tekststørrelse og farve */
.mix-description-text {
  color: #aaaaaa;     /* Samme lysegrå farve som tracklisten */
  font-size: 0.8rem;   /* Samme tekststørrelse som tracklisten */
  line-height: 1.6;
  white-space: pre-line;
  margin: 0;
}

/* --- TRACKLIST SPECIFIC --- */
.tracklist {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  color: #aaaaaa;
}

.tracklist li {
  padding: 6px 0;
  border-bottom: 1px solid #111111;
}

.tracklist li:last-child {
  border-bottom: none;
}

.tracklist span {
  color: #ffffff;
}

.loading-state {
  color: #666666;
  font-style: italic;
}

/* --- LINKS / FOOTER --- */
.footer {
  border-top: 1px solid #1a1a1a;
  padding-top: 24px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 12px 16px;
  background-color: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  transition: background-color 0.2s, border-color 0.2s;
}

.link-btn:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}