:root {
  --bg-color: #ffffff;
  --main-black: #000000;
  --accent-red: #ff0000;
  --border-width: 2px;
}

body {
  background-color: #ffffff;
  font-family: monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.player-retro {
  background: var(--bg-color);
  color: var(--main-black);
  padding: 20px;
  width: 600px;
}

.header {
  font-size: 0.8rem;
  border-bottom: var(--border-width) solid var(--main-black);
  margin-bottom: 15px;
  padding-bottom: 5px;
  letter-spacing: 2px;
}

.display {
  padding: 10px;
  margin-bottom: 20px;
  background: var(--bg-color);
  text-align: center;
}

#album {
  font-size: 2rem;
  margin: 0;
  color: black
}

#title {
  font-size: 1.333rem;
  margin: 0;
  color: var(--accent-red);
}

#artist {
  font-size: 1rem;
  margin: 5px 0 0;
  opacity: 0.8;
}

.controls {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.retro-btn {
  background: var(--main-black);
  color: var(--bg-color);
  border: none;
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.retro-btn:hover {
  background: var(--accent-red);
  color: var(--main-white);
}

.progress-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
}

input[type="range"] {
  flex-grow: 1;
  appearance: none;
  background: transparent;
}

input[type="range"]::-webkit-slider-runnable-track {
  background: var(--main-black);
  height: 1px;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  height: 12px;
  width: 6px;
  background: var(--accent-red);
  cursor: pointer;
  margin-top: -4px;
  border-radius: 0;
}

.playlist-menu {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  font-size: 1rem;
  border-top: 1px dashed #444;
}

.playlist-menu li {
  padding: 8px 0;
  cursor: pointer;
  border-bottom: 1px dashed #444;
}

.playlist-menu li.active {
  color: var(--accent-red);
}

.playlist-menu li:hover {
  text-decoration: underline;
}

.press-start-2p-regular {
  font-family: "Press Start 2P";
  font-weight: 400;
  font-style: normal;
}

.metal-mania-regular {
  font-family: "Metal Mania", system-ui;
  font-weight: 400;
  font-style: normal;
}