#now-playing-section {
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  background: rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.5);
}

#vinyl-wrapper {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #0f2b4a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 2px 4px rgba(255,255,255,0.4);
  border: 2px solid #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

#vinyl-disc-svg {
  width: 240px;
  height: 240px;
  transition: filter 0.4s ease;
}

#vinyl-disc-svg.spinning {
  animation: wmp-visualizer 2s ease-in-out infinite;
}

#vinyl-disc-svg.loading {
  opacity: 0.5;
  animation: wmp-pulse 1.5s infinite;
}

@keyframes wmp-visualizer {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.02); filter: brightness(1.2); }
}

@keyframes wmp-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

#tonearm-container {
  display: none !important;
}

#vinyl-touch-hint {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.85);
  color: #000;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#vinyl-touch-hint.visible {
  opacity: 1;
}

#bitrate-display {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1fa2ff;
  background: rgba(0,0,0,0.7);
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.2);
}

#bitrate-display.visible {
  opacity: 1;
}

#track-info {
  text-align: center;
  width: 100%;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.8), 0 2px 6px rgba(0,0,0,0.1);
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  margin-bottom: 12px;
}

#track-name-text {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #000;
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
  animation: none;
}

#track-name-text.marquee {
  animation: marquee 12s linear infinite;
}

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

#track-mode-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

#mode-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent);
  background: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

#mode-label.search-mode {
  color: #c95c11;
}

#progress-container {
  width: 100%;
}

#progress-bar {
  width: 100%;
  height: 24px;
  background: rgba(0,0,0,0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2), 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
  margin-bottom: 8px;
}

#progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #1fa2ff, #0a5bc4);
  border-right: 1px solid rgba(255,255,255,0.5);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.5);
  border-radius: 12px;
  width: 0%;
  transition: width 1s linear;
}

#progress-times {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-muted);
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
}