* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #1a1a1a;
    color: #fff;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

main {
    padding-top: 120px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}
#mini-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #4A3F35;
  color: #e2d2b8;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  z-index: 99999;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.4);
}

#mini-cover {
  width: 48px;
  height: 48px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-right: 12px;
}

#mini-info {
  flex: 1;
}

#mini-controls button {
  background: none;
  border: none;
  color: #e2d2b8;
  font-size: 20px;
  margin-left: 10px;
  cursor: pointer;
}
#mini-player {
  opacity: 1;
  transition: opacity 0.25s ease;
}

#mini-player.hidden {
  opacity: 0;
  pointer-events: none;
}
