/* Audio Player - Antiliberál */
.audio-player {
  background: #1a1a2e;
  border-radius: 8px;
  padding: 15px 20px;
  margin: 20px 0 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Source Sans Pro', sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.audio-player .ap-play-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #e94560;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding: 0;
}

.audio-player .ap-play-btn:hover {
  background: #ff6b81;
}

.audio-player .ap-play-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.audio-player .ap-info {
  flex: 1;
  min-width: 0;
}

.audio-player .ap-time {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 6px;
}

.audio-player .ap-seek {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: #333;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  margin: 0;
}

.audio-player .ap-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: #e94560;
  border-radius: 50%;
  cursor: pointer;
}

.audio-player .ap-seek::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #e94560;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.audio-player .ap-volume-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.audio-player .ap-vol-icon {
  width: 18px;
  height: 18px;
  fill: #aaa;
  cursor: pointer;
  flex-shrink: 0;
}

.audio-player .ap-volume {
  width: 70px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: #333;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.audio-player .ap-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: #e94560;
  border-radius: 50%;
  cursor: pointer;
}

.audio-player .ap-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #e94560;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

/* Label */
.audio-player .ap-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  color: #ccc;
  font-size: 13px;
}

.audio-player .ap-label svg {
  width: 14px;
  height: 14px;
  fill: #e94560;
}

/* Responsive */
@media (max-width: 600px) {
  .audio-player {
    flex-wrap: wrap;
    padding: 12px 15px;
  }
  .audio-player .ap-volume-wrap {
    display: none;
  }
  .audio-player .ap-info {
    flex-basis: calc(100% - 54px);
  }
}
