.sap-player {
  max-width: 640px;
  width: 100%;
  box-sizing: border-box;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-family: Arial, sans-serif;
}

.sap-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.sap-main-btn {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  background: #111827;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sap-main-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

.sap-meta {
  min-width: 0;
}

.sap-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  word-break: break-word;
}

.sap-artist {
  margin-top: 4px;
  font-size: 14px;
  color: #6b7280;
  word-break: break-word;
}

.sap-progress-wrap {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.sap-time {
  font-size: 12px;
  color: #4b5563;
  text-align: center;
}

.sap-progress,
.sap-volume {
  width: 100%;
  cursor: pointer;
}

.sap-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.sap-mute-btn {
  border: 1px solid #d1d5db;
  background: #ffffff;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
}

.sap-volume-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.sap-volume-label {
  font-size: 13px;
  color: #374151;
  white-space: nowrap;
}

.sap-status {
  font-size: 12px;
  color: #6b7280;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .sap-progress-wrap {
    grid-template-columns: 42px 1fr 42px;
  }

  .sap-bottom {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .sap-status {
    text-align: left;
  }
}