.floating-player {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 9998;
  background: #914900;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.floating-player.fp-collapsed .fp-stations-list {
  display: none;
}

.floating-player .fp-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
}

.floating-player .fp-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.floating-player .fp-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.floating-player .fp-info {
  min-width: 0;
  flex: 1 1 auto;
}

.floating-player .fp-title {
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.floating-player .fp-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.floating-player .fp-actions {
  display: flex;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.floating-player #fp-toggle-btn i {
  transition: transform 160ms ease;
}

.floating-player.fp-collapsed #fp-toggle-btn i {
  transform: rotate(0deg);
}

.floating-player:not(.fp-collapsed) #fp-toggle-btn i {
  transform: rotate(180deg);
}

.floating-player .fp-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgb(255 255 255 / 54%);
  background: rgb(255 255 255 / 15%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.floating-player .fp-btn:active {
  transform: translateY(1px);
}

.floating-player .fp-btn.fp-btn-primary {
  background: rgb(0 0 0 / 26%);
  border-color: rgb(0 0 0 / 45%);
}

.floating-player .fp-stations-list {
  border-top: 1px solid rgb(255 255 255 / 27%);
  max-height: min(52vh, 360px);
  overflow: auto;
}

.floating-player .fp-list-title {
  padding: 0.75rem 0.75rem 0.25rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.floating-player .fp-station-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.floating-player .fp-station-item:hover {
  background: rgb(255 255 255 / 14%);
}

.floating-player .fp-station-item.fp-active {
  background: rgb(0 0 0 / 21%);
}

.floating-player .fp-item-name {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.85rem;
  line-height: 1.15;
}

.floating-player .fp-item-meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.floating-player .fp-item-right {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.65);
}

.floating-player .fp-status {
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.75);
}

.floating-player .fp-status.fp-live {
  border-color: rgb(233 233 233 / 60%);
  background: rgba(220, 53, 69, 0.15);
  color: #fff;
}

@media (min-width: 992px) {
  .floating-player {
    left: auto;
    right: 1.25rem;
    width: 420px;
  }
}

body {
  padding-bottom: 92px;
}

.btn-wrap .icon-pause {
  display: none;
}

.btn-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.is-playing-channel .btn-wrap .icon-play {
  display: none;
}

.is-playing-channel .btn-wrap .icon-pause {
  display: inline-block;
}