* { box-sizing: border-box; }

:root {
  --bg: #f4f4f0;
  --fg: #111;
  --muted: #777;
  --line: #d8d8d1;
  --card: #ecece6;
  --accent: #111;
}

html.dark {
  --bg: #111;
  --fg: #eee;
  --muted: #999;
  --line: #30302d;
  --card: #1b1b19;
  --accent: #eee;
}

html { transition: background .2s ease, color .2s ease; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: -.02em;
}

.page {
  width: min(600px, calc(100% - 32px));
  margin: 30px auto;
  padding: 16px 24px;
  background: rgba(244, 244, 240, 0.95);
  border-radius: 8px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 64px;
}

.identity {
  display: flex;
  gap: 14px;
  align-items: center;
}

.avatar {
  width: 54px;
  height: 54px;
  border: 1px solid var(--fg);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--card);
  font-size: 11px;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 2px;
}

p { margin: 0; }

.identity p, .track-artist, .section-label, footer {
  color: var(--muted);
}

.theme-toggle {
  border: 0;
  background: none;
  color: var(--fg);
  font: inherit;
  font-size: 18px;
  padding: 0;
  cursor: pointer;
}

.section-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 9px;
}

.now { margin-bottom: 42px; }

.music-card {
  display: grid;
  grid-template-columns: 74px 1fr 42px;
  gap: 15px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.art {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  font-size: 12px;
}

.art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.track-title { margin-bottom: 1px; }
.track-artist { font-size: 11px; }

.progress-wrap { margin-top: 10px; }

input[type="range"] {
  appearance: none;
  width: 100%;
  height: 1px;
  background: var(--line);
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fg);
}

input[type="range"]::-moz-range-thumb {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: var(--fg);
}

.times {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  margin-top: 4px;
}

.play {
  width: 34px;
  height: 34px;
  border: 1px solid var(--fg);
  border-radius: 50%;
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  font: inherit;
  font-size: 10px;
}

.play:hover, .theme-toggle:hover { opacity: .6; }

.links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  margin-bottom: 48px;
}

.links a {
  color: var(--fg);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}

.links a:hover { opacity: .55; }

.links span { color: var(--muted); }

.note {
  max-width: 440px;
  margin-bottom: auto;
}

.note p { color: var(--muted); }

footer {
  border-top: 1px solid var(--line);
  margin-top: 25px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}

@media (max-width: 560px) {
  .page { padding-top: 28px; }
  .top { margin-bottom: 48px; }
  .links { grid-template-columns: 1fr; }
  .music-card { grid-template-columns: 58px 1fr 38px; gap: 12px; }
  .art { width: 58px; height: 58px; }
}
body {
  margin: 0;
  background: #000;
}

body::before {
  content: "";
  position: fixed;
  inset: -30px;
  background-image: url("images/background.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(3px);
  transform: scale(1.05);
  z-index: -1;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 30px;
  font-size: 14px;
}

.top-nav a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.top-nav a:hover {
  opacity: 0.5;
}
.release-intro {
  text-align: center;
  margin-bottom: 30px;
  opacity: 0.7;
}

.release-box {
  background: rgba(224, 224, 224, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 20px;
}

.release {
  display: grid;
  grid-template-columns: 90px 1fr 130px;
  gap: 20px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 254, 254, 0.15);
}

.release:last-child {
  border-bottom: none;
}

.release-cover img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.release-info h2 {
  margin: 0 0 8px;
  font-size: 17px;
}

.release-info p {
  margin: 3px 0;
  font-size: 12px;
  opacity: 0.6;
}

.release-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.release-links a {
  color: inherit;
  text-decoration: none;
  font-size: 13px;
}

.release-links a:hover {
  text-decoration: underline;
}
.about-content {
  width: 100%;
}

.about-info {
  margin-bottom: 30px;
}

.about-text {
  max-width: 500px;
  color: var(--muted);
}
#enter-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.enter-text {
  color: white;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

#enter-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}