.aura-audio-player {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  padding: 16px 20px;
  margin: 0 0 32px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.aura-audio-cover {
  width: 80px;
  height: 80px !important;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.aura-audio-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.aura-audio-label {
  font-size: 12px;
  color: #54595F;
  letter-spacing: .3px;
}
.aura-audio-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.aura-audio-progress-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.aura-audio-progress-bar {
  flex: 1;
  position: relative;
  cursor: pointer;
  padding: 10px 0;
}
.aura-audio-progress-bar::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  background: #F0F0F0;
  border-radius: 3px;
}
.aura-audio-progress {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  width: 0%;
  background: #E99D20;
  border-radius: 3px;
  transition: width .1s linear;
  pointer-events: none;
}
.aura-audio-time {
  font-size: 11px;
  color: #54595F;
  white-space: nowrap;
  min-width: 80px;
  text-align: right;
}
.aura-audio-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E99D20;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .15s ease, background .15s ease;
}
.aura-audio-play-btn:hover {
  background: #d88d15;
  transform: scale(1.07);
}
.aura-audio-speed-btn {
  padding: 4px 10px;
  border-radius: 20px;
  background: #F0F0F0;
  color: #54595F;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s ease;
  font-family: inherit;
}
.aura-audio-speed-btn:hover {
  background: #E0E0E0;
}
@media (max-width: 600px) {
  .aura-audio-player {
    flex-wrap: wrap;
    padding: 14px;
    gap: 12px;
  }
  .aura-audio-cover {
    width: 56px;
    height: 56px !important;
    border-radius: 10px;
  }
  .aura-audio-title {
    font-size: 14px;
  }
  .aura-audio-play-btn {
    width: 42px;
    height: 42px;
  }
}
