body, html {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: url('microphone-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100%;
  color: white;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.75);
  min-height: 100vh;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.tagline {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 40px;
}

/* 🎧 Custom Player */
.custom-player {
  display: flex;
  align-items: center;
  background-color: #1e1e1e;
  border-radius: 12px;
  padding: 15px 20px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  margin-bottom: 40px;
}

.player-cover {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 20px;
}

.player-content {
  flex: 1;
}

.player-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.player-info strong {
  font-size: 1.1rem;
}

.player-info span {
  font-size: 0.9rem;
  color: #aaa;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.player-controls button {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
}

.player-controls input[type="range"] {
  appearance: none;
  background: #444;
  height: 5px;
  border-radius: 5px;
}

#seekbar {
  flex-grow: 1;
}

#volume {
  width: 80px;
}

#time {
  font-size: 0.85rem;
  width: 40px;
  text-align: right;
}

/* 🎵 Plattform-Icons */
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.platform-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.platform-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
  box-shadow: 0 0 10px #ffffff44;
}

footer {
  font-size: 0.95rem;
  color: #aaa;
  margin-top: auto;
}

@media (max-width: 600px) {
  .custom-player {
    flex-direction: column;
    align-items: stretch;
  }

  .player-cover {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .player-controls {
    flex-wrap: wrap;
  }
}
