* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

/* Body achtergrond */
body {
  background: radial-gradient(circle at top, #1c1c1c, #000);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.page {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding: 20px;
}

/* Jukebox afbeelding */
.jukebox {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Player container */
.content {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -10px;
}

/* Player */
.player {
  background: rgba(255,0,0,0.25);
  border-radius: 20px;
  width: 90%;
  max-width: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.1);
  padding: 8px 10px;
  flex-shrink: 0;
  height: 50px;
}

/* Top buttons */
.top-buttons {
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 10;
}

/* WhatsApp knop */
.top-buttons .whatsapp-btn {
  background: #25D366;
  color: #fff;
  font-size: 0.9rem;
  padding: 4px 8px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}

.top-buttons .whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Mail knop */
.top-buttons .mail-btn {
  background: rgba(255,0,0,0.7);
  color: #fff;
  font-size: 0.9rem;
  padding: 4px 6px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}

.top-buttons .mail-btn:hover {
  transform: scale(1.1);
}

/* LIVE indicator */
.live-indicator {
  position: absolute;
  top: -18px;
  left: 20px;
  background: #ff0000;
  color: #fff;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
  z-index: 5;
}

.live-indicator span {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  display: block;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

/* Play/pause knop */
.play-btn {
  background: rgba(255,255,255,0.1);
  border: 2px solid #fff;
  color: #fff;
  font-size: 0.9rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

/* Audio player verborgen */
audio {
  display: none;
}

/* Mobiel */
@media (max-width: 600px) {
  .content {
    margin-top: -5px;
  }
  .player {
    height: 40px;
    padding: 6px 8px;
  }
  .play-btn {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }
  .top-buttons a {
    font-size: 0.8rem;
    padding: 3px 5px;
  }
}