/* BODY & FONT */
body {
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #111;
  color: #eee;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
#player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #222;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
  z-index: 10;
}
.player-controls {
  display: flex;
  gap: 0.5rem;
}
.ctrl-btn {
  background: #444;
  border: none;
  color: #eee;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 1rem;
  transition: background 0.2s;
}
.ctrl-btn:hover {
  background: #555;
}
#track-title {
  flex: 1;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.hamburger {
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 12;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #eee;
  border-radius: 2px;
}

/* MAIN mit Schiefer-Gradient + Kreide-Textur */
#player-main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2b2b2b;
  background-image:
    url('../bilder/notes-chalk-texture.png'),
    linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding: 1rem;
}

/* COVER */
#cover-image {
  width: 100%;
  max-width: 1000px;
  border: 4px solid #222;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.7);
  z-index: 1;
}

/* SLIDE-MENU */
#menu-drawer {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background: #333;
  padding: 1rem;
  transition: right 0.3s ease;
  z-index: 11;
  overflow-y: auto;
}
#menu-drawer.open {
  right: 0;
}
#menu-close {
  background: none;
  border: none;
  color: #eee;
  font-size: 1.5rem;
  cursor: pointer;
  float: right;
}
#track-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}
#track-list li {
  padding: 0.5rem;
  border-bottom: 1px solid #444;
  cursor: pointer;
  transition: background 0.2s;
}
#track-list li:hover {
  background: #444;
}
