.controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

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

.controlButton:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.playButton {
  width: 48px;
  height: 48px;
  background-color: var(--tk-orange, #f39c12);
}

.playButton:hover {
  background-color: var(--tk-orange-dark, #d68910);
}

.icon {
  font-size: 18px;
  line-height: 1;
}

.playButton .icon {
  font-size: 20px;
}
