body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #f0c060;
  text-align: center;
  overflow-x: hidden;
  position: relative;
  background: radial-gradient(circle at center, #200000 0%, #000000 90%);
}

.background {
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(255,0,0,0.1), transparent 70%),
    url('https://images.unsplash.com/photo-1508057198894-247b23fe5ade?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  filter: brightness(0.35) saturate(1.5) contrast(1.2);
  z-index: 0;
}

header, .cover, .tracklist, footer {
  position: relative;
  z-index: 1;
}

header {
  padding: 60px 20px 10px;
}

header h1 {
  font-size: 3rem;
  color: #f0c060;
  margin: 0;
}

header h2 {
  font-size: 1.5rem;
  letter-spacing: 4px;
  margin: 0;
  color: #f0c060;
}

.cover {
  margin: 40px auto;
  max-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 35px rgba(240,192,96,0.5);
}

.cover img {
  width: 100%;
  display: block;
}

.tracklist {
  background: rgba(0,0,0,0.7);
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  margin: 40px auto 60px;
  padding: 20px;
  text-align: left;
  color: #f0c060;
  box-shadow: 0 0 25px rgba(255,0,0,0.3);
}

.track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 0;
  border-bottom: 1px solid rgba(240,192,96,0.2);
}

.track:last-child {
  border-bottom: none;
}

.track-info {
  flex: 1 1 40%;
}

.title {
  color: #fff;
  font-weight: 600;
}

.artist {
  font-size: 0.9rem;
  color: #f0c060;
}

.controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.player {
  width: 150px;
  height: 30px;
  accent-color: #f0c060;
  filter: brightness(1.3) drop-shadow(0 0 3px #f0c060);
}

.download-btn {
  background: #f0c060;
  color: #200000;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.download-btn:hover {
  background: #fff3b0;
}

footer {
  font-size: 0.9rem;
  color: #f0c060;
  margin-bottom: 20px;
}