body {
  margin: 0;
 height: 100vh;
 display: flex;
 justify-content: center;
 align-items: center;
 background-color: #000;
 overflow: hidden;
 font-family: Impact, Arial Black, sans-serif;
}

.shake {
  font-size: 100px;
  font-weight: bold;
  color: #ffdd00;
  text-shadow: 6px 6px 0px #b30000;
  animation: shake 0.3s ease-in-out infinite;
  user-select: none;
  position: absolute;
  z-index: 1;
}

@keyframes shake {
  0%   { transform: translate(0px, 0px) rotate(0deg); }
  10%  { transform: translate(-10px, 5px) rotate(-2deg); }
  20%  { transform: translate(10px, -8px) rotate(3deg); }
  30%  { transform: translate(-8px, 10px) rotate(-3deg); }
  40%  { transform: translate(8px, -5px) rotate(2deg); }
  50%  { transform: translate(-10px, -10px) rotate(-2deg); }
  60%  { transform: translate(10px, 8px) rotate(3deg); }
  70%  { transform: translate(-5px, -8px) rotate(-3deg); }
  80%  { transform: translate(5px, 10px) rotate(2deg); }
  90%  { transform: translate(-10px, 5px) rotate(-2deg); }
  100% { transform: translate(0px, 0px) rotate(0deg); }
}

/* ==== PLAYER ==== */
.player {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(20,20,20,0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  box-sizing: border-box;
  gap: 15px;
  border-top: 3px solid #ffdd00;
  z-index: 10;
}

#thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  background: #333;
}

.info {
  flex: 1;
  min-width: 0;
}

#title {
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.controls button {
  background: none;
  border: none;
  color: #ffdd00;
  font-size: 32px;
  cursor: pointer;
  padding: 0 15px;
  transition: transform 0.1s;
}

.controls button:hover {
  transform: scale(1.2);
}

.controls button:active {
  transform: scale(0.9);
}

/* Volume control */
.volume-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

#mute {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #ffdd00;
  padding: 0 8px;
}

#volume {
  width: 100px;
  accent-color: #ffdd00;
  cursor: pointer;
}

/* Make it look nice on mobile too */
@media (max-width: 600px) {
  #volume { width: 80px; }
  .player { padding: 10px; gap: 10px; }
}