
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(145deg, #1e1e2f, #12121c);
  color: #fff;
  min-height: 100vh;
}
.container {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  text-align: center;
}
.highlight {
  color: #61dafb;
}
audio {
  margin: 2rem 0;
  width: 100%;
}
.players ul {
  list-style: none;
  padding: 0;
}
.players li {
  margin: 0.5rem 0;
}
.miniplayer {
  background: #1e88e5;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  color: white;
  text-decoration: none;
}
.navbar {
  background-color: #1e1e2f;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.nav-left {
  font-size: 1.2em;
  font-weight: bold;
  color: #61dafb;
}
.nav-left a {
  color: #61dafb;
  text-decoration: none;
}
.nav {
  list-style-type: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav > li {
  position: relative;
  margin: 0 10px;
}
.nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #2a2a3e;
  padding: 0.5rem;
  top: 100%;
  left: 0;
  z-index: 1;
}
.dropdown-content li {
  margin: 5px 0;
}
.dropdown:hover .dropdown-content {
  display: block;
}
