/** 
 * acheradios v1.0.0 - 2025-07-24 11:55:24
 * Copyright (c) 2025 RRZ ATIVIDADES DE INTERNET LTDA
 */
#AcheRadiosPlayer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to right, #2c3e50, #4c4e5a, #2c2d33);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#AcheRadiosPlayer .player-container {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
  max-width: 1100px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  position: relative;
  background-color: rgba(45, 52, 54, 0.85);
}

#AcheRadiosPlayer .player-container.loaded {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 728px) {
  #AcheRadiosPlayer { padding: 10px 0; }
  #AcheRadiosPlayer .player-container { border-radius: 8px; }
}

#AcheRadiosPlayer .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}

#AcheRadiosPlayer .placeholder .spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border-left-color: white;
  animation: spin 1s ease infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#AcheRadiosPlayer .player {
  display: flex;
  align-items: center;
  width: 100%;
  color: white;
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.4;
}

#AcheRadiosPlayer .player-status {
  flex-grow: 1;
  color: #ececec;
  display: block;
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 10px 0 15px;
  min-width: 0;
}

#AcheRadiosPlayer #playerCurrent {
  margin-bottom: 2px;
  /* transition: color 0.3s ease, opacity 0.3s ease; */
}

#AcheRadiosPlayer #playerStatus {
  font-size: 14px;
  color: #fff;
  font-weight: normal;
  transition: color 0.3s ease, opacity 0.3s ease;
}

#AcheRadiosPlayer #playerStatus.player-status-text.live {
  display: inline-block;
  padding: 2px 4px;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background-color: #e74c3c;
  border-radius: 2px;
  text-transform: uppercase;
  animation: blink 0.5s infinite alternate;
  box-shadow: 0 0 2px rgba(231, 76, 60, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes blink {
  0% { opacity: 1; }
  100% { opacity: 0.6; }
}

#AcheRadiosPlayer .play-stop-button,
#AcheRadiosPlayer .favorite-button,
#AcheRadiosPlayer .volume-button,
#AcheRadiosPlayer .share-button {
  background: linear-gradient(to bottom, #4c4e5a, #2c2d33);
  border-radius: 50%;
  border: 2px solid #ffffff55;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.2s;
  min-width: 40px;
  min-height: 40px;
}

#AcheRadiosPlayer .favorite-button {
  display: none;
}

#AcheRadiosPlayer .favorite-button,
#AcheRadiosPlayer .volume-button,
#AcheRadiosPlayer .share-button {
  width: 30px;
  height: 30px;
  border-width: 1px;
  min-width: 30px;
  min-height: 30px;
}

#loadingIcon, #radioLoadingIcon {
  animation: rotate 1s linear infinite;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

#AcheRadiosPlayer .play-stop-button:hover,
#AcheRadiosPlayer .favorite-button:hover,
#AcheRadiosPlayer .volume-button:hover,
#AcheRadiosPlayer .share-button:hover {
  background: linear-gradient(to bottom, #5a5c6a, #3d3e45);
  transform: scale(1.2);
}

#AcheRadiosPlayer .play-stop-button:active,
#AcheRadiosPlayer .favorite-button:active,
#AcheRadiosPlayer .volume-button:active,
#AcheRadiosPlayer .share-button:active {
  transform: scale(0.85);
}

#AcheRadiosPlayer .play-stop-button svg,
#AcheRadiosPlayer .favorite-button svg,
#AcheRadiosPlayer .volume-button svg,
#AcheRadiosPlayer .share-button svg {
  fill: white;
}

#AcheRadiosPlayer .favorite-button.favorited {
  background: linear-gradient(to bottom, #ffd700, #ffa500);
  border: 2px solid #ffa500;
  transform: scale(1.1);
  transition: background 0.3s, transform 0.2s;
}

#AcheRadiosPlayer .favorite-button.favorited svg {
  fill: #ffffff;
}

#AcheRadiosPlayer .player-actions {
  display: flex;
  align-items: center;
  position: relative;
  gap: 10px;
}

#AcheRadiosPlayer .volume-button svg {
  display: none;
}

#AcheRadiosPlayer .volume-button svg#volumeIcon {
  display: block;
}

#AcheRadiosPlayer .volume-button.muted svg#volumeIcon {
  display: none;
}

#AcheRadiosPlayer .volume-button.muted svg#muteIcon {
  display: block;
}

#AcheRadiosPlayer .volume-control {
  display: none;
  position: absolute;
  top: -40px;
  left: calc(50% - 5px);
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
  box-sizing: border-box;
}

#AcheRadiosPlayer .volume-control.hidden {
  display: flex;
  opacity: 0;
  visibility: hidden;
}

#AcheRadiosPlayer .volume-control:not(.hidden) {
  display: flex;
  opacity: 1;
  visibility: visible;
}

#AcheRadiosPlayer .volume-control input[type='range'] {
  width: 100px;
  height: 8px;
  background: linear-gradient(to right, #4c4e5a, #2c2d33);
  border-radius: 5px;
  appearance: none;
}

#AcheRadiosPlayer .volume-control input[type='range']::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  background: linear-gradient(to bottom, #4c4e5a, #2c2d33);
  border: 1px solid #ffffff55;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

#AcheRadiosPlayer .volume-control input[type='range']::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: linear-gradient(to bottom, #4c4e5a, #2c2d33);
  border: 1px solid #ffffff55;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

#AcheRadiosPlayer .volume-tooltip {
  position: absolute;
  visibility: hidden;
  color: #fff;
  text-align: center;
  font: 9pt Tahoma, Arial, sans-serif;
  border: 1px solid #333;
  border-radius: 3px;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.3);
  background-color: #333;
  display: inline-block;
  top: -30px;
  left: calc(50% - 20px);
  padding: 5px;
}

#AcheRadiosPlayer .tooltip {
  visibility: hidden;
  width: 120px;
  color: #fff;
  text-align: center;
  font: 8pt Tahoma, Arial, sans-serif;
  border: 1px solid #333;
  border-radius: 3px;
  background-color: #333;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 130%;
  left: 26%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

#AcheRadiosPlayer .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

#AcheRadiosPlayer button:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

