body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background-color: #2b1a12;
  color: #f2e2c4;
  min-height: 100vh;
}

header {
  text-align: center;
  padding: 24px 16px;
  background-color: #1a0f0a;
  border-bottom: 4px solid #b8860b;
}

header h1 {
  font-family: 'Rye', serif;
  margin: 0;
  color: #d4af37;
  font-size: 2rem;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px black;
}

main {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
}

section {
  background-color: #3b2418;
  border: 2px solid #b8860b;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

section h2 {
  margin-top: 0;
  color: #d4af37;
  border-bottom: 1px solid #b8860b;
  padding-bottom: 8px;
}

#artwork {
  display: block;
  width: 160px;
  height: 160px;
  object-fit: cover;
  margin: 16px auto;
  border-radius: 8px;
  border: 3px solid #b8860b;
}

#current-title {
  text-align: center;
  font-size: 1.3rem;
  margin: 4px 0;
}

#current-artist {
  text-align: center;
  color: #c9a876;
  margin: 0 0 16px 0;
}

#controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

button {
  background-color: #b8860b;
  color: #1a0f0a;
  border: none;
  border-bottom: 3px solid #8a6508;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

button:hover {
  background: linear-gradient(180deg, #e8c06a, #d4af37);
}
button:active {
  transform: translateY(2px);
  border-bottom-width: 1px;
}

input[type="range"] {
  width: 100%;
  margin: 10px 0;
}

#queue-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

#queue-list li {
  background-color: #2b1a12;
  border-left: 4px solid #b8860b;
  padding: 10px 12px;
  margin-bottom: 8px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#song-picker-list {
  list-style: none;
  margin-top: 10px;
}

#song-picker-list li {
  background-color: #2b1a10;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 8px;
  cursor: pointer;
  border-left: 4px solid #6b4a2a;
}

#song-picker-list li:hover {
  border-left: 4px solid #d4a94c;
}

#requester-name {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #6b4a2a;
  background-color: #2b1a10;
  color: #f2e2c4;
  font-family: inherit;
}

#now-playing {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
  }
  50% {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.5rem;
  }

  main {
    padding: 12px;
  }

  section {
    padding: 14px;
  }

  #artwork {
    width: 120px;
    height: 120px;
  }

  #controls {
    flex-wrap: wrap;
  }

  button {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  #queue-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  #queue-list li button {
    align-self: flex-end;
  }
}