* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background-color: #1a1a1a;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 40%;
  background-attachment: fixed;
  min-height: 100dvh;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
}

.sidebar {
  width: 200px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sidebar a {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Spectral', serif;
  font-weight: 300;
  font-size: 0.9rem;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

.sidebar a:hover {
  color: #ffffff;
}

.content {
  flex: 1;
}

p {
  font-family: 'Spectral', serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: #ffffff;
  letter-spacing: 0.1em;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

iframe {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 60%;
  max-width: 500px;
  height: 120px;
}

.archive {
  width: 82%;
  max-width: 980px;
  max-height: 80dvh;
  overflow-y: auto;
  margin-left: -100px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.archive::-webkit-scrollbar {
  width: 6px;
}

.archive::-webkit-scrollbar-track {
  background: transparent;
}

.archive::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.archive::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.track-row {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

.track-label {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.track-date {
  font-family: 'Spectral', serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: #ffffff;
  letter-spacing: 0.15em;
}

.track-artist {
  font-family: 'Spectral', serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: #ffffff;
  letter-spacing: 0.1em;
}

.track-title {
  font-family: 'Spectral', serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: #ffffff;
  letter-spacing: 0.1em;
}

.track-player {
  width: 100%;
}

.track-player iframe {
  position: static;
  transform: none;
  width: 100%;
  height: 130px;
  opacity: 0.4;
  filter: brightness(0.65) contrast(1.05);
}

@media (max-width: 768px) {
  body {
    background-size: 80%;
    background-position: center center;
    background-attachment: fixed;
    display: block;
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .sidebar {
    position: fixed;
    top: 20px;
    left: 20px;
    width: auto;
    padding: 0;
    z-index: 10;
  }
  .content {
    width: 100%;
    padding-top: 60px;
  }
  iframe { width: 90%; }
  .archive { width: 92%; max-height: none; overflow-y: visible; margin-left: 0; }
  .track-row { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
}
