html[data-theme='light'] {
  background-color: #f3f4f6;
  color: #111827;
}
html[data-theme='light'] body {
  background-color: #f3f4f6;
  color: #111827;
}
.glass {
  background: rgba(31, 41, 55, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.control-btn {
  background-color: #1db954;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s;
  color: white;
}
.control-btn:hover {
  background-color: #1a1a1a;
  box-shadow: 0 0 8px rgba(0,255,135,0.2);
}
/* Fade-in body animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fadeIn {
  animation: fadeIn 1.2s ease-out both;
}

/* Slide down title */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-slideDown {
  animation: slideDown 1s ease-out both;
}

/* Neon border glow */
.neon-border {
  box-shadow: 0 0 12px rgba(0, 255, 135, 0.4);
}

/* Control button styles */
.control-btn {
  background-color: rgba(31, 41, 55, 0.8);
  padding: 0.6rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease-in-out;
  border: 1px solid #333;
}
.control-btn:hover {
  background-color: rgba(55, 65, 81, 0.9);
  transform: scale(1.05);
}
.btn-true{
    color: #117cd5;
    background-color: black;
}
.btn-false{
	background-color: rgba(31, 41, 55, 0.8);
	color:white;
}
/* Hover glow effect */
.hover-glow:hover {
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.5);
}

/* Pulse glow for currently playing song */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0px rgba(0, 255, 135, 0.4);
  }
  50% {
    box-shadow: 0 0 12px rgba(0, 255, 135, 0.7);
  }
  100% {
    box-shadow: 0 0 0px rgba(0, 255, 135, 0.4);
  }
}
.pulse-glow {
  animation: pulseGlow 1.8s infinite;
}
/* Vinyl disc spinner */
.vinyl {
  width: 88px;
  height: 88px;
  border: 6px solid #1db954;
  border-top: 6px solid #191414;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0,255,135,0.4);
 justify-content: center;
    align-items: center;
    display: flex;
}
.spin {
  animation: spinVinyl 2s linear infinite;
}
@keyframes spinVinyl {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes marquee {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.animate-marquee {
  display: inline-block;
  min-width: 100%;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

/* Custom scrollbar for lyrics */
.lyrics-scroll::-webkit-scrollbar {
  width: 8px;
}

.lyrics-scroll::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.5); /* dark track */
  border-radius: 4px;
}

.lyrics-scroll::-webkit-scrollbar-thumb {
  background: rgba(34, 197, 94, 0.7); /* green thumb */
  border-radius: 4px;
  transition: background 0.2s;
}

.lyrics-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(34, 197, 94, 1); /* brighter green on hover */
}

.lyrics-scroll {
  scroll-behavior: smooth;
}

.lyrics-scroll:hover::-webkit-scrollbar-thumb {
  box-shadow: 0 0 6px #22c55e;
}

[x-cloak] { display: none !important; }
