/* ==========================================================================
   AllOdiaSongs - Modern Global Music Player Stylesheet
   Inspired by Dribbble "Now Playing" UI with site theme colors
   ========================================================================== */

:root {
  --aos-player-bg: #1c3360;
  --aos-player-card: linear-gradient(165deg, #395b9b 0%, #244177 55%, #182e56 100%);
  --aos-player-surface: rgba(255, 255, 255, 0.12);
  --aos-player-surface-hover: rgba(255, 255, 255, 0.22);
  --aos-player-border: rgba(255, 255, 255, 0.18);
  --aos-player-primary: #395b9b;
  --aos-player-primary-gradient: linear-gradient(135deg, #395b9b 0%, #5b84d4 100%);
  --aos-player-accent: #ff4757;
  --aos-player-accent-gradient: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
  --aos-player-text: #ffffff;
  --aos-player-text-muted: #d5e3f7;
  --aos-player-text-subtle: #9ab4db;
  --aos-player-radius-lg: 20px;
  --aos-player-radius-md: 12px;
  --aos-player-radius-sm: 8px;
  --aos-player-shadow: 0 20px 45px -12px rgba(10, 26, 60, 0.85), 0 0 35px rgba(57, 91, 155, 0.5);
  --aos-player-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

#aos-player-root,
#aos-player-root *,
.aos-hero-player-card,
.aos-hero-player-card * {
  font-family: var(--aos-player-font) !important;
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Hidden YouTube Host (Invisible Engine)
   -------------------------------------------------------------------------- */
#aos-yt-engine-wrapper {
  position: fixed;
  top: -9999px;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0.01;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Sticky Floating Bottom Mini-Player Bar
   -------------------------------------------------------------------------- */
.aos-mini-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 66px;
  background: rgba(30, 58, 110, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--aos-player-border);
  box-shadow: 0 -4px 25px rgba(10, 26, 60, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 99990;
  font-family: var(--aos-player-font);
  color: var(--aos-player-text);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.35s;
  box-sizing: border-box;
}

.aos-mini-player.aos-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Mini Progress Bar Line on Top of Mini-Player */
.aos-mini-progress-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.aos-mini-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--aos-player-accent-gradient);
  transition: width 0.1s linear;
}

.aos-mini-info-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
  cursor: pointer;
}

.aos-mini-thumb-wrap {
  position: relative;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.aos-mini-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aos-mini-playing-eq {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  opacity: 0;
  transition: opacity 0.2s;
}

.aos-mini-player.is-playing .aos-mini-playing-eq {
  opacity: 1;
}

.aos-mini-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.aos-mini-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.aos-mini-artist {
  font-size: 12px;
  color: var(--aos-player-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aos-mini-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.aos-mini-btn {
  background: transparent;
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.aos-mini-btn:hover {
  background: var(--aos-player-surface-hover);
  transform: scale(1.08);
}

.aos-mini-btn.aos-mini-play {
  background: var(--aos-player-accent-gradient);
  box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
}

.aos-mini-btn.aos-mini-play:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(255, 71, 87, 0.6);
}

.aos-mini-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.aos-mini-btn.aos-mini-close {
  color: var(--aos-player-text-subtle);
  width: 32px;
  height: 32px;
}

.aos-mini-btn.aos-mini-close:hover {
  color: #fff;
}

/* Equalizer animated bars */
.aos-eq-bar {
  width: 3px;
  height: 12px;
  background: #fff;
  border-radius: 2px;
  animation: aos-eq-pulse 0.8s ease-in-out infinite alternate;
}
.aos-eq-bar:nth-child(1) { animation-delay: 0.1s; height: 14px; }
.aos-eq-bar:nth-child(2) { animation-delay: 0.3s; height: 8px; }
.aos-eq-bar:nth-child(3) { animation-delay: 0.2s; height: 16px; }

@keyframes aos-eq-pulse {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

/* --------------------------------------------------------------------------
   Full "Now Playing" Modal Overlay (Dribbble Inspired)
   -------------------------------------------------------------------------- */
.aos-now-playing-modal {
  position: fixed;
  inset: 0;
  background: rgba(12, 25, 52, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: var(--aos-player-font);
  color: var(--aos-player-text);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  box-sizing: border-box;
}

.aos-now-playing-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.aos-now-playing-sheet {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: 94vh;
  background: var(--aos-player-card);
  border: 1px solid var(--aos-player-border);
  border-radius: var(--aos-player-radius-lg);
  box-shadow: var(--aos-player-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(40px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.aos-now-playing-modal.is-open .aos-now-playing-sheet {
  transform: translateY(0) scale(1);
}

/* Sheet Scroll Container */
.aos-np-scroll-body {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-sizing: border-box;
}

.aos-np-scroll-body::-webkit-scrollbar {
  width: 4px;
}
.aos-np-scroll-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

/* Header */
.aos-np-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 4px 0 12px;
  gap: 8px;
}

.aos-np-header-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.aos-np-header-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.aos-np-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.aos-np-header-btn.aos-np-close-btn {
  color: #cbd5e1;
}

.aos-np-header-btn.aos-np-close-btn:hover {
  background: rgba(255, 71, 87, 0.35);
  border-color: #ff4757;
  color: #fff;
}

.aos-np-header-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.aos-np-header-title-wrap {
  text-align: center;
  min-width: 0;
  flex: 1;
}

.aos-np-subtitle {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--aos-player-text-subtle);
  font-weight: 700;
  margin-bottom: 2px;
}

.aos-np-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(57, 91, 155, 0.25);
  border: 1px solid rgba(57, 91, 155, 0.45);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: all 0.2s;
}

.aos-np-category-badge:hover {
  background: rgba(57, 91, 155, 0.45);
  color: #fff;
}

.aos-music-note-icon {
  width: 13px;
  height: 13px;
  fill: #ffffff;
  display: inline-block;
  vertical-align: -2px;
  flex-shrink: 0;
  margin-right: 3px;
}

/* Artwork / Video Container */
.aos-np-art-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  max-height: 240px;
  border-radius: var(--aos-player-radius-md);
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--aos-player-border);
  margin: 0 auto;
}

.aos-np-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.aos-np-art-wrap:hover .aos-np-cover-img {
  transform: scale(1.03);
}

.aos-np-video-frame-container {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.aos-np-video-frame-container iframe,
.aos-np-video-frame-container #aos-yt-engine {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  display: block;
}

.aos-np-video-frame-container.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 5;
}

/* Video/Audio Mode Switcher overlay badge */
.aos-np-mode-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 10;
  transition: all 0.2s;
}

.aos-np-mode-toggle:hover {
  background: rgba(0, 0, 0, 0.85);
  border-color: #ff4757;
  color: #ff6b81;
}

/* Track Information */
.aos-np-info-section {
  text-align: center;
  width: 100%;
  overflow: hidden;
}

.aos-np-title-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 6px;
  display: flex;
  justify-content: center;
}

.aos-np-title-container.has-marquee {
  justify-content: flex-start;
}

.aos-np-song-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  white-space: nowrap;
  display: inline-block;
  background: transparent !important;
  border: none !important;
  will-change: transform;
}

.aos-np-song-title.is-marquee {
  animation: aos-title-marquee var(--marquee-duration, 8s) ease-in-out infinite alternate;
}

@keyframes aos-title-marquee {
  0%, 20% {
    transform: translateX(0);
  }
  80%, 100% {
    transform: translateX(calc(-1 * var(--marquee-distance, 50px)));
  }
}

.aos-np-artist-name {
  font-size: 13px;
  color: var(--aos-player-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.aos-np-verified-icon {
  width: 14px;
  height: 14px;
  fill: #3b82f6;
}

/* Scrubber / Progress Bar */
.aos-np-timeline-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.aos-np-slider-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.aos-np-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  cursor: pointer;
  transition: background 0.15s;
}

.aos-np-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff4757;
  box-shadow: 0 0 8px rgba(255, 71, 87, 0.8);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.aos-np-range::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}

.aos-np-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff4757;
  border: none;
  box-shadow: 0 0 8px rgba(255, 71, 87, 0.8);
  cursor: pointer;
}

.aos-np-timestamps {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--aos-player-text-subtle);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* Main Controls */
.aos-np-controls-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}

.aos-np-ctrl-btn {
  background: transparent;
  border: none;
  color: var(--aos-player-text-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  position: relative;
}

.aos-np-ctrl-btn:hover {
  color: #fff;
  background: var(--aos-player-surface-hover);
  transform: scale(1.1);
}

.aos-np-ctrl-btn.is-active {
  color: #ff4757;
}

.aos-np-ctrl-btn.is-active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  background: #ff4757;
  border-radius: 50%;
}

.aos-np-ctrl-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Secondary Seek Buttons (±10s) */
.aos-np-seek-btn {
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.aos-np-seek-btn svg {
  width: 17px;
  height: 17px;
}

/* Hero Play/Pause Button */
.aos-np-play-hero {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--aos-player-accent-gradient);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 71, 87, 0.45);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.aos-np-play-hero:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(255, 71, 87, 0.65);
}

.aos-np-play-hero:active {
  transform: scale(0.96);
}

.aos-np-play-hero svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* Bottom Actions & Volume Bar */
.aos-np-bottom-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.aos-np-volume-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 160px;
}

.aos-np-vol-btn {
  background: transparent;
  border: none;
  color: var(--aos-player-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
}

.aos-np-vol-btn:hover {
  color: #fff;
}

.aos-np-vol-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.aos-np-vol-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  cursor: pointer;
}

.aos-np-vol-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.aos-np-quick-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.aos-np-action-pill {
  background: var(--aos-player-surface);
  border: 1px solid var(--aos-player-border);
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: var(--aos-player-radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.aos-np-action-pill:hover {
  background: var(--aos-player-surface-hover);
  color: #fff;
}

.aos-np-action-pill svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   Slide-Over Queue & Category Drawer
   -------------------------------------------------------------------------- */
.aos-np-drawer {
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, #2b4984 0%, #172d54 100%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.aos-np-drawer.is-open {
  transform: translateX(0);
}

.aos-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--aos-player-border);
}

.aos-drawer-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.aos-drawer-close {
  background: var(--aos-player-surface);
  border: 1px solid var(--aos-player-border);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Category Selector Section in Drawer */
.aos-drawer-cat-section {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.aos-drawer-cat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--aos-player-text-subtle);
  font-weight: 700;
  margin-bottom: 8px;
}

.aos-cat-select-dropdown {
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--aos-player-border);
  color: #fff;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: var(--aos-player-radius-sm);
  outline: none;
  cursor: pointer;
}

.aos-cat-select-dropdown option {
  background: #172d54;
  color: #fff;
}

/* Queue List */
.aos-drawer-queue-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.aos-queue-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--aos-player-radius-sm);
  background: transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}

.aos-queue-item:hover {
  background: var(--aos-player-surface-hover);
}

.aos-queue-item.is-active {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.aos-queue-item-thumb {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.aos-queue-item-info {
  min-width: 0;
  flex: 1;
}

.aos-queue-item-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aos-queue-item.is-active .aos-queue-item-title {
  color: #93c5fd;
}

.aos-queue-item-artist {
  font-size: 11px;
  color: var(--aos-player-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aos-queue-item-now-playing-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  display: none;
}

.aos-queue-item.is-active .aos-queue-item-now-playing-icon {
  display: flex;
  gap: 2px;
  align-items: center;
}

/* --------------------------------------------------------------------------
   In-Page Single-Row Song Play Card (on songs.php)
   -------------------------------------------------------------------------- */
.aos-song-play-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #395b9b 0%, #1e396d 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 10px 14px;
  margin: 12px auto;
  max-width: 520px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(20, 45, 95, 0.35);
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
  text-align: left;
}

.aos-song-play-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 45, 95, 0.5);
  border-color: rgba(255, 255, 255, 0.35);
}

.aos-spr-thumb {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.aos-spr-info {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aos-spr-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  margin-bottom: 3px;
}

.aos-spr-category {
  font-size: 12px;
  color: #d5e3f7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.aos-spr-actions-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.aos-spr-play-btn {
  background: var(--aos-player-accent-gradient);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
  transition: all 0.2s ease;
}

.aos-spr-play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 71, 87, 0.6);
}

.aos-spr-play-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.aos-spr-stop-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #e2e8f0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  flex-shrink: 0;
}

.aos-spr-stop-btn:hover {
  background: rgba(255, 71, 87, 0.4);
  border-color: #ff4757;
  color: #fff;
  transform: scale(1.08);
}

.aos-spr-stop-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   Quick-Play Button on Media Listings (.aos-file)
   -------------------------------------------------------------------------- */
.aos-file {
  position: relative;
}

.aos-file-quick-play {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: rgba(57, 91, 155, 0.15);
  border: 1px solid rgba(57, 91, 155, 0.35);
  color: #395b9b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}

.aos-file-quick-play:hover {
  background: #ff4757;
  border-color: #ff4757;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.aos-file-quick-play svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   Responsive Mobile Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .aos-now-playing-sheet {
    max-height: 98vh;
    border-radius: 24px 24px 0 0;
  }
  .aos-np-scroll-body {
    padding: 16px 16px 20px;
    gap: 14px;
  }
  .aos-np-art-wrap {
    max-height: 200px;
  }
  .aos-np-song-title {
    font-size: 16px;
  }
  .aos-np-play-hero {
    width: 52px;
    height: 52px;
  }
  .aos-mini-player {
    height: 62px;
    padding: 0 12px;
  }
}
