body {
  background:
    radial-gradient(circle at top left, rgba(216, 184, 108, 0.28), transparent 30%),
    radial-gradient(circle at bottom right, rgba(32, 65, 59, 0.16), transparent 36%),
    linear-gradient(180deg, #f6f1e5 0%, #efe7d4 100%);
}

.page-shell {
  position: relative;
}

.page-shell::before {
  content: '';
  position: absolute;
  inset: 24px 0 auto auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(203, 90, 45, 0.13), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.player-frame {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.control-button {
  border: 1px solid rgba(32, 65, 59, 0.16);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.75);
  color: #20413b;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.control-button:hover {
  background: rgba(216, 184, 108, 0.2);
  border-color: rgba(203, 90, 45, 0.4);
}

.control-button-primary {
  background: #20413b;
  color: #fdf8ee;
}

.control-button-primary:hover {
  background: rgba(32, 65, 59, 0.92);
}

.queue-scroll {
  scrollbar-width: thin;
  scrollbar-color: rgba(32, 65, 59, 0.28) transparent;
}

.queue-scroll::-webkit-scrollbar {
  width: 10px;
}

.queue-scroll::-webkit-scrollbar-thumb {
  background: rgba(32, 65, 59, 0.24);
  border-radius: 999px;
}

.queue-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 0.9rem;
  width: 100%;
  padding: 0.7rem;
  border: 1px solid rgba(32, 65, 59, 0.08);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.62);
  transition: transform 120ms ease, border-color 120ms ease, background-color 120ms ease;
  text-align: left;
}

.queue-item:hover {
  transform: translateY(-1px);
  border-color: rgba(203, 90, 45, 0.28);
  background: rgba(255, 255, 255, 0.86);
}

.queue-item.is-active {
  border-color: rgba(203, 90, 45, 0.65);
  background: rgba(216, 184, 108, 0.16);
}

.queue-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0.9rem;
  background: rgba(32, 65, 59, 0.12);
}