:root {
    --bg: #ffffff;
    --text: #111111;
    --subtext: #666666;
    --link-bg: #f0f0f0;
    --link-hover: #dddddd;
}

@media (prefers-color-scheme: dark) {
    :root {
    --bg: #121212;
    --text: #ffffff;
    --subtext: #aaaaaa;
    --link-bg: #222222;
    --link-hover: #333333;
    }
}

body {
    margin: 0;
    font-family: sans-serif;
    background-color: var(--bg);
    color: var(--text);
    text-align: center;
}

header {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blurred-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image-url);
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.8);
    transform: scale(1.1);
    z-index: 1;
}

.album-art {
    position: relative;
    z-index: 2;
    margin-top: -150px;
}

.album-art img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    background-color: var(--bg);
}

.info {
    margin-top: 20px;
}

.info h1 {
    font-size: 2em;
    margin: 0.2em 0;
}

.info h2 {
    font-weight: normal;
    color: var(--subtext);
    margin: 0.2em 0 1em 0;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    margin-bottom: 1.5em;
}

.links.links--row {
    flex-direction: row;
    justify-content: center;
}

.links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    background: var(--link-bg);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.9em;
    transition: background 0.2s;
}

.links a:hover {
    background: var(--link-hover);
}

.links i {
    font-size: 1.1em;
}

.release-date {
    font-size: 0.9em;
    color: var(--subtext);
    margin-bottom: 2em;
}

@media (max-width: 500px) {
    .album-art img {
    width: 140px;
    height: 140px;
    }

    .info h1 {
    font-size: 1.5em;
    }

    .links a {
    font-size: 0.8em;
    padding: 6px 10px;
    }
}

.chronology-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;

  width: fit-content;
  margin: 20px auto;
}

.chron-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  /* border: 1px solid #ddd; */
  padding: 10px;
  text-decoration: none;
  color: inherit;
}

.chron-item.current {
  text-align: center;
  /* font-weight: bold; */
}

.chron-item.prev {
  text-align: left;
  color: var(--subtext);
}

.chron-item.next {
  text-align: right;
  color: var(--subtext);
}

.arrow {
  font-size: 1.1em;
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 4px;
}


.label {
  font-size: 0.75em;
  opacity: 0.6;
  margin-bottom: 4px;
}

.title {
  font-size: 1em;
  margin-bottom: 4px;
}

.year {
  font-size: 0.85em;
  opacity: 0.7;
}

.song-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
}

.song-row {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.song-row:hover {
  background: rgba(0,0,0,0.03);
}

.song-row a {
  text-decoration: none;
  color: inherit;
  font-size: 1.05rem;
}

.song-row a:hover {
  text-decoration: underline;
}

.year {
  opacity: 0.6;
  font-size: 0.9rem;
  white-space: nowrap;
}