:root {
  --player-primary: #6c6fc6;
  --player-bg-body: #262626;
  --player-bg-app: #0a0a0a;
  --player-bg-inset: #404040;
  --player-bg-transparent: rgb(255 255 255 / 10%);
  --player-bg-modal: rgb(255 255 255 / 20%);
  --player-bg-dark: rgb(0 0 0 / 75%);
  --player-bg-gradient: linear-gradient(140deg, #a92bcd, #439bc1);
  --color-title: #ffffff;
  --color-text: rgb(255 255 255 / 50%);
  --duration: 0.3s;
  --long-duration: 1s;
  --transition-config: 0.5s cubic-bezier(0.54, 0, 0.1, 1);
  --container: 1480px;
  --spacer: 1rem;
  --shadow-m: 0px 2px 4px rgba(0, 0, 0, 0.2);
  --shadow-l: 0px 8px 17px 2px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12), 0px 5px 5px -3px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0px 16px 24px 2px rgba(0, 0, 0, 0.14),
    0px 6px 30px 5px rgba(0, 0, 0, 0.12), 0px 8px 10px -7px rgba(0, 0, 0, 0.2);
  --scrollbar-color: rgb(255 255 255 / 50%);
  --main-padding: 1rem;
}

#app-super:not(.on) {
  display: none !important;
}

.elty-container--flex{
   margin-left: auto;
   margin-right: auto;
   flex-wrap: wrap;
   gap: 2.5rem;
   padding-left: 1rem;
   padding-right: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.relative{
   position: relative;
}
.flex{
   display: flex;
}
.flex-none{
   flex: none;
}
.items-center{
   align-items: center;
}
.justify-center{
   justify-content: center;
}
.truncate{
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}
.uppercase{
   text-transform: uppercase;
}
.app-super * {
  margin: 0;
}
.app-super iframe {
  border-width: 0;
}
.app-super :where(a) {
  color: inherit;
  text-decoration: none;
}
.app-super h6 {
  font-size: inherit;
  font-weight: inherit;
  overflow-wrap: break-word;
}
.app-super :where(button) {
  padding: 0;
  margin: 0;
  border-width: 0;
  font-size: 100%;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  text-transform: none;
  -webkit-appearance: button;
  background-color: transparent;
  display: inline-block;
  vertical-align: middle;
  height: auto;
  min-width: initial;
}
.app-super :where(button):not(:disabled) {
  cursor: pointer;
}
.app-super :where(button):focus {
  outline: 0;
}
.app-super [hidden] {
  display: none;
}
.app-super ul {
  list-style: none;
  padding: 0;
}
.app-super video {
  height: auto;
}
.app-super source {
  display: none;
}
.app-super video {
  display: block;
  max-width: 100%;
}
.app-super video {
  width: 100%;
}
:where(.app-super) {
  font-family: Montserrat, sans-serif;
}
:where(.app-super) a {
  color: var(--accent, var(--player-primary));
  transition: color var(--duration);
}
.app-player .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: var(--btn-gap, 0.5rem);
       column-gap: var(--btn-gap, 0.5rem);
  background-color: var(--btn-bg, var(--player-bg-transparent));
  padding: var(--btn-padding, 0.75rem);
  color: var(--btn-color, var(--color-title));
  font-size: var(--btn-fs, 0.875rem);
  font-weight: 700;
  border-radius: 999px;
  line-height: 1.5;
  transition-property: box-shadow, background-color, color;
  transition-duration: var(--duration);
  text-transform: uppercase;
}
.app-player .btn:hover {
  color: var(--btn-color-hover, var(--color-title));
}
.app-player .btn-full {
  width: 100%;
  justify-content: center;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.truncate-line {
  display: -webkit-box;
  -webkit-line-clamp: var(--line-clamp, 2);
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.app-player {
  background-color: var(--player-bg-app);
  position: relative;
  overflow: hidden;
}
.app-player::after {
  content: "";
  inset: 0;
  position: absolute;
  background-image: linear-gradient(transparent 80%, #000);
  z-index: 5;
  pointer-events: none;
}
.dropdown {
  position: absolute;
  height: 140px;
  background-color: var(--player-bg-dark);
  padding: 1.5rem;
  border-radius: 1rem;
  left: 50%;
  box-shadow: var(--shadow-l);
  transform: translateX(-50%);
  bottom: calc(100% + 0.5rem);
  transition: opacity var(--duration), transform var(--duration);
}
.dropdown:not(.is-active) {
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(-1rem);
}
.player-modal {
  position: fixed;
  z-index: 9999;
  padding: 1rem;
  box-shadow: var(--shadow-l);
  color: #262626;
  background-color: #fff;
  text-align: center;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 400px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: opacity var(--duration);
}
.player-modal:not(.is-active) {
  pointer-events: none;
  opacity: 0;
}
.player-modal-image {
  max-width: 200px;
  border-radius: 0.5rem;
  margin: 1rem auto;
}
.player-modal button[data-close] {
  position: absolute;
  right: 0;
  top: -2rem;
}
#app-super .player {
  position: fixed;
  z-index: 9999;
  inset: auto 0 0;
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
  line-height: 1.25 !important;
  background-color: #000;
  transition: transform var(--duration), opacity var(--duration);
}
#app-super .player-picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#app-super .player-wrapper {
  max-width: var(--player-wrapper, 1200px);
  position: relative;
  margin: auto;
  width: 100%;
  padding-right: 0.75rem;
  z-index: 10;
}
#app-super .player-bg {
  position: absolute;
  inset: 0;
  max-width: initial;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  transition: opacity var(--long-duration);
  filter: blur(1rem);
  top: 0.75rem;
}
#app-super .player-left {
  margin-right: auto;
  gap: 1rem;
}
#app-super .player-left::after {
  background-image: var(--artwork);
  width: 150px;
  height: 150px;
  content: "";
  display: block;
  position: absolute;
  background-size: cover;
  left: 0;
  top: 0;
  transform: translateY(75%);
  transition: transform var(--transition-config);
  pointer-events: none;
}
#app-super .player-left:has(.player-artwork:hover)::after {
  transform: translateY(-100%);
}
#app-super .player-right {
  --i-size: 20px;
  margin-left: auto;
  gap: 1rem;
}
#app-super .player-cover-image {
  --cover-blurred: 0px;
  position: absolute;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: opacity calc(var(--duration) * 3);
  filter: blur(var(--cover-blurred));
  max-width: initial;
  inset: calc(var(--cover-blurred) * -5);
  width: calc(100% + var(--cover-blurred) * 10);
  height: calc(100% + var(--cover-blurred) * 10);
}
#app-super .player-artwork-style {
  width: 80px;
  height: 80px;
  display: flex;
  overflow: hidden;
  background-color: var(--accent, #000);
}
#app-super .player-artwork-style img {
  transition: margin calc(var(--duration) * 3);
}
#app-super .player-controller {
  display: flex;
  align-items: center;
  position: absolute;
  gap: 0.5rem;
  right: 1rem;
}
#app-super .player-volume {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 90px !important;
  max-width: initial !important;
}
#app-super .player-range-fill {
  position: absolute;
  width: 100%;
  top: auto;
  bottom: 0;
  transition: background-color var(--duration);
  background-color: var(--accent, var(--player-primary));
}
#app-super .player-range-wrapper {
  position: relative;
  height: 100%;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.25);
}
#app-super .player-range-thumb {
  width: 15px;
  height: 15px;
  transition: background-color var(--duration);
  background-color: var(--accent, var(--player-primary));
  border-radius: 5rem;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  cursor: pointer;
}
#app-super .player-button {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--duration), background-color var(--duration);
  position: relative;
  font-size: 10px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  background-color: transparent !important;
}
#app-super .player-button:hover {
  background-color: transparent !important;
}
#app-super .player-button-alt {
  background-color: rgba(0, 0, 0, 0.3) !important;
  transition: background-color var(--duration);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5vw;
  padding: 0.5vw 0.75vw;
  border-radius: 0.25vw;
  --i-size: 1vw;
  font-size: 0.625vw;
  text-transform: uppercase;
  font-weight: 700;
}
#app-super .player-button-alt:hover {
  background-color: rgba(0, 0, 0, 0.5) !important;
}
#app-super .player-button-expand.is-open svg {
  transform: rotate(180deg);
}
#app-super .player-button-volume {
  display: flex;
  align-items: center;
}
#app-super .player-button:hover {
  color: #fff;
}
#app-super .player-button-play {
  padding: 1rem;
  border-radius: 999px;
  transition: background-color var(--duration);
  background-color: var(--accent, var(--player-bg-transparent)) !important;
}
#app-super .player-button-play:hover {
  background-color: var(--accent, var(--player-bg-transparent)) !important;
}
#app-super .player-button-play::before {
  pointer-events: none;
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 50%;
  z-index: -1;
  inset: 0;
  opacity: 0;
  animation: 2s ease-out infinite pulsePlay;
  display: var(--pulse-state, none);
}
#app-super .player-button-play:after {
  animation-delay: 1s;
}
#app-super .player-button-play:focus {
  outline: 0;
}
#app-super .player-button-play.is-active {
  --pulse-state: block;
}
#app-super .player-button-tv:not(.is-loaded) {
  display: none !important;
}
#app-super .player-section-audio {
  flex: none;
}
#app-super .player-section-meta {
  width: 100%;
}
#app-super .player-social {
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1))
    drop-shadow(0 3px 1px rgba(0, 0, 0, 0.075));
  gap: 0.5rem;
}
#app-super .player-social-item {
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 0.5rem;
  --i-size: 1rem;
}
#app-super .player-social-item:not(:hover) {
  color: #fff;
}
#app-super .player-apps-item {
  transition: filter var(--duration);
}
#app-super .player-apps-item:hover {
  filter: drop-shadow(0 0px 10px white);
}
#app-super .player-song-name {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}
#app-super .player-program {
  position: absolute;
  bottom: 100%;
  background-color: #000;
  right: 0;
  transition: transform var(--duration), opacity var(--duration);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-l);
  max-width: var(--player-program-wrapper, 340px);
  font-size: 16px;
  margin: 0;
}
#app-super .player-program:not(.is-active) {
  pointer-events: none;
  opacity: 0;
  transform: translateY(1rem);
}
#app-super .player-program-text {
  color: #fa1100;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 10px;
}
#app-super .player-program-badge {
  font-weight: 800;
  background-color: #fa1100;
  font-size: 10px;
  padding: 4px 6px;
  border-radius: 5rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  color: #fff;
  margin-right: 0.5rem;
  line-height: 1;
  text-transform: uppercase;
}
#app-super .player-program-badge i {
  border-radius: 999px;
  position: relative;
  width: 8px;
  height: 8px;
  display: block;
  background-color: #fff;
}
#app-super .player-program-badge i:before {
  pointer-events: none;
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 50%;
  z-index: 50;
  inset: 0;
  opacity: 0;
  animation: 2s ease-out infinite pulseLive;
}
#app-super .player-program-badge i:after {
  animation-delay: 1s;
}
#app-super .player-program-time-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#app-super .player-program-description {
  font-size: 0.875rem;
}
#app-super .player-artwork-container {
  width: 80px;
  height: 80px;
}
#app-super.is-expanded .player-artwork-container {
  width: 100%;
  height: auto;
}
#app-super .program-name {
  margin-top: 0.25rem;
}
#app-super .station {
  transition: opacity var(--duration);
  flex: none;
}
#app-super .station:first-child {
  margin-left: auto;
}
#app-super .station-image {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
#app-super .station-button {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.5em !important;
  border-radius: 0.5em !important;
  transition: background-color var(--duration);
  font-weight: 500;
  font-size: 1em;
  justify-content: flex-start !important;
}
#app-super .station-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
#app-super .station-button.is-current {
  background-color: var(--accent, rgba(255, 255, 255, 0.2)) !important;
}
#app-super .station-name {
  white-space: nowrap;
  font-size: 16px !important;
  display: inline-flex;
  position: relative;
}
#app-super .station-name.is-scrolling {
  animation: textIndent var(--text-scroll-duration, 5s) linear infinite
    alternate;
}
#app-super .station-description {
  font-size: 14px !important;
}
#app-super .station-img {
  width: 90px;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-l);
  border-radius: 0.5rem;
}
#app-super .station:not(.is-active) {
  opacity: 0.5;
}
#app-super .station:hover {
  opacity: 1;
}
#app-super #stations {
  padding: 0.5em;
  max-height: 232px;
}
#app-super .historyp {
  --cols-min: 20rem;
}
#app-super .historyp-item {
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-l);
  position: relative;
  padding-right: calc(0.75rem + 35px);
  overflow: hidden;
  z-index: 1;
  flex: none;
  max-width: 264px;
}
#app-super .historyp-item::before {
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
  background: var(--accent, #000);
  opacity: 0.9;
}
#app-super .historyp-body {
  line-height: 1.5 !important;
}
#app-super .historyp-body span {
  display: block;
}
#app-super .historyp-spotify {
  bottom: 0.75rem;
  right: 0.75rem;
  position: absolute;
  color: #fff;
  transition: opacity var(--duration);
}
#app-super .historyp-spotify:not(:hover) {
  opacity: 0.5;
}
#app-super .historyp-spotify[href="#not-found"] {
  opacity: 0.1;
  pointer-events: none;
}
#app-super .historyp-image {
  width: 50px;
  aspect-ratio: 1/1;
}
#app-super .historyp-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}
#app-super .historyp-title {
  width: 100%;
  text-align: center;
  padding: 1.25em;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
}
#app-super .historyp-time[data-time-ago="time-none"]::after {
  display: none;
}
#app-super .player-modal.is-active ~ * {
  --modal-overlay-opacity: 1;
  pointer-events: all;
}
#app-super .player-modal h2 {
  color: #262626;
}
#app-super .app-player .player-down-up {
  position: absolute;
  color: #fff !important;
  background-color: rgba(0, 0, 0, 0.2) !important;
  top: -3px;
  left: 50%;
  transform: translate(-50%, -100%);
  padding: 0.25rem 1.5rem;
  border-radius: 8px 8px 0 0 !important;
  transition: background-color var(--duration);
}
#app-super .app-player .player.is-hidden {
  transform: translateY(100%);
}
#app-super .app-player.is-hidden .player-down-up:after {
  transform: rotate(180deg);
}
#app-super .app-player .player-down-up:after {
  content: "";
  width: 8px;
  position: relative;
  height: 8px;
  display: block;
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(45deg);
  transform-origin: center;
  top: -1px;
  background-color: transparent !important;
  border-radius: 0 !important;
}
#app-super .app-player .player-down-up:hover {
  background-color: rgba(0, 0, 0, 0.25);
}
#app-super .app-player .player.is-hidden .player-down-up:after {
  transform: rotate(-136deg);
  top: 3px;
}
#app-super.is-expanded .player {
  --player-max-width: 320px;
  inset: 0;
}
#app-super.is-expanded .player .player-down-up,
#app-super.is-expanded .player .player-left::after,
#app-super.is-expanded .player .player-right .player-button:not(.player-button-expand) {
  display: none !important;
}
#app-super.is-expanded .player .player-controller {
  position: relative;
  right: initial;
  gap: 1rem;
  width: 100%;
  justify-content: space-between;
}
#app-super.is-expanded .player .player-left {
  flex-direction: column;
  margin: initial;
  position: relative;
}
#app-super.is-expanded .player .player-artwork-style {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  max-width: 100%;
}
#app-super.is-expanded .player .player-cover {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: var(--player-max-width, 100%);
  margin: auto;
}
#app-super.is-expanded .player .player-right {
  position: fixed;
  top: 2rem;
  right: 2rem;
}
#app-super.is-expanded .player .player-program-badge {
  display: none;
}
#app-super.is-expanded .offcanvas-player {
  bottom: 0;
  top: 0;
  left: 0;
  right: auto;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(2rem);
          backdrop-filter: blur(2rem);
  --off-translate: -100%;
  max-width: 400px;
  width: 100%;
  z-index: 99999;
}
#app-super.is-expanded .historyp {
  flex-direction: column;
  gap: 0;
}
#app-super.is-expanded .historyp-header {
  color: #fff;
  box-shadow: 0 -2px 0 0 rgba(255, 255, 255, 0.25) inset;
  display: flex;
  align-items: center;
}
#app-super.is-expanded .historyp-header label:hover {
  box-shadow: 0 -2px 0 0 inset;
}
#app-super.is-expanded #programTab:not(:checked) ~ .program-list {
  display: none;
}
#app-super.is-expanded .historyp-close {
  transform: rotate(-90deg);
  transition: color var(--duration);
  position: absolute;
  left: 1rem;
}
#app-super.is-expanded .historyp-close:not(:hover) {
  color: rgba(255, 255, 255, 0.5);
}
#app-super.is-expanded .historyp-item {
  border-radius: 0;
  background-color: transparent;
  box-shadow: 0 0 transparent;
  padding: 0.75rem 3rem 0.75rem 0.75rem;
  width: 100%;
  max-width: 100%;
}
#app-super.is-expanded .historyp-item::before {
  display: none;
}
#app-super.is-expanded .historyp-item:first-child::after {
  content: "";
  height: 100%;
  pointer-events: none;
  background-image: linear-gradient(
    45deg,
    var(--progress-primary, #3d54ee),
    var(--progress-secondary, #0c1d8d)
  );
  width: var(--song-progress, 0%);
  display: block;
  position: absolute;
  transition: width var(--long-duration);
  z-index: -1;
  left: 0;
}
#app-super.is-expanded .historyp-item + * {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#app-super.is-expanded .historyp-time::after {
  content: " - " attr(data-time-ago);
}
#app-super.is-expanded .historyp-time[data-time-ago=""]::after {
  content: "";
  display: none;
}
#app-super.is-expanded .player-wrapper {
  padding: 2rem;
}
#app-super.is-expanded .player-song-name {
  width: 100%;
}
#app-super.is-expanded .schedule-item:not(:first-child) {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#app-super.is-expanded .schedule-item-title {
  margin: 0;
}
#app-super.is-expanded .schedule-item-content {
  color: #fff;
}
#app-super.is-expanded .schedule-item {
  padding: 0.5rem 0.75rem;
}
#app-super.is-expanded .player-cover-title {
  width: var(--player-max-width);
}
#app-super.is-expanded .station-name {
  display: block;
}
#app-super.is-expanded .player-full-progress {
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: #fff;
  position: relative;
  padding-top: 1rem;
}
#app-super.is-expanded .player-full-progress::before {
  content: "";
  width: 100%;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.2);
  height: 4px;
  inset: 0 0 auto;
}
#app-super.is-expanded .player-full-progress::after {
  background-image: linear-gradient(
    45deg,
    var(--progress-primary, #3d54ee),
    var(--progress-secondary, #0c1d8d)
  );
  right: auto;
  width: var(--song-progress, 0%);
  display: block;
  position: absolute;
  transition: width var(--long-duration);
}
#app-super.is-expanded .player-button-like svg {
  transform: rotateY(180deg);
}
#app-super.is-expanded .player-button-dislike svg {
  transform: rotateX(180deg);
}
#app-super.is-expanded .player-modules {
  display: none;
}
#app-super.is-expanded .modal-video {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
#app-super:not(.is-expanded) .playe-cover-title {
  width: 90px;
}
#app-super:not(.is-expanded) .player-stream {
  display: none;
}
#app-super:not(.is-expanded) .offcanvas-content {
  padding: 1rem;
}
#app-super:not(.is-expanded) .program-list {
  display: none;
}
#app-super:not(.is-expanded) .player {
  border-top: 4px solid rgba(255, 255, 255, 0.75);
}
#app-super:not(.is-expanded) .player::before {
  content: "";
  height: 4px;
  pointer-events: none;
  background-image: linear-gradient(
    45deg,
    var(--progress-primary, #3d54ee),
    var(--progress-secondary, #0c1d8d)
  );
  width: var(--song-progress, 0%);
  display: block;
  position: absolute;
  transition: width var(--long-duration);
  top: -4px;
  left: 0;
  z-index: 1;
}
#app-super:not(.is-expanded) .player-stations:not(.is-loaded) {
  display: none;
}
#app-super:not(.is-expanded) .player-modules {
  max-width: var(--player-wrapper, 1200px);
  inset: 0 0 auto;
  position: absolute;
  width: 100%;
  margin: auto;
}
#app-super:not(.is-expanded) .historyp-item:nth-child(n + 6) {
  display: none;
}
#app-super:not(.is-expanded) .offcanvas-player {
  inset: auto 0;
  bottom: 5.25rem;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}
#app-super .player-full-screen-bar span {
  padding: 2px 15px;
  font-size: 8px;
  text-transform: uppercase;
  color: #fff;
  background-color: #fa1100;
  border-radius: 9999px;
  position: relative;
  z-index: 1;
}
#app-super .player-full-screen-bar::before {
  content: "";
  height: 1px;
  display: block;
  width: 100%;
  background-color: #fa1100;
  position: absolute;
  left: 0;
  top: 50%;
}
#app-super .player-full-screen-bar {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#app-super .player-stream {
  display: flex;
  flex-direction: column;
  color: #fff;
  text-align: center;
}
#app-super .stream-name {
  font-weight: 700;
  font-size: 1.25rem;
}
#app-super .player-title-fix {
  width: 100%;
  overflow: hidden;
  max-width: calc(100vw - 14rem);
}
#app-super .player-button svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
#app-super .player-button-prev,
#app-super .player-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: var(--accent, var(--player-primary));
  border-radius: 999px;
  color: #fff;
  padding: 3px;
  box-shadow: var(--shadow-l);
  transition: opacity var(--duration);
}
#app-super .player-button-prev svg,
#app-super .player-button-next svg {
  width: 28px;
  height: 28px;
  display: block;
}
#app-super .player-button-prev svg {
  transform: rotate(180deg);
}
#app-super .player-button-next {
  right: -17px;
}
#app-super .player-button-prev {
  left: -17px;
}
#app-super .player-overlay {
  background: var(--accent, var(--player-primary));
  position: absolute;
  inset: 0;
  opacity: 0.75;
  pointer-events: none;
}
#app-super .player-button-expand:not(.is-open) svg:first-child {
  display: none;
}
#app-super .player-modules {
  padding: 0;
  height: 0;
}
#app-super .station-picture img {
  border-radius: 999px;
  background-color: #000;
}
#app-super.is-expanded .station-picture {
  display: none;
}
#app-super.is-expanded .player-button-expand {
  font-size: 0;
}
.visualizer {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 100%;
  opacity: 0.1;
}
.visualizer-filter {
  display: none;
}
.offcanvas-player {
  position: fixed;
  z-index: 120;
  transition: transform var(--duration), opacity var(--duration);
  max-width: 100%;
  inset: auto 0 5.25rem auto;
}
.offcanvas-player:not(.is-active) {
  transform: translateX(var(--off-translate, 100%));
  pointer-events: none;
  opacity: 0;
}
.app-super .schedule-item {
  padding: 1rem;
}
.app-super .schedule-item:not(:first-child) {
  border-top: 1px solid #fff;
}
.app-super .schedule-item-title {
  font-weight: 800 !important;
  font-size: 1rem !important;
  margin-top: 0.25rem;
  letter-spacing: 0;
  color: #fff;
}
.app-super .schedule-item-description {
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 400;
  color: #fff;
}
.app-super .schedule-item-picture {
  aspect-ratio: 110/70;
  width: 110px;
  position: relative;
  overflow: hidden;
  border-radius: 0.25rem;
}
.app-super .schedule-item-picture img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-js.video-js-stream .video-js.vjs-no-flex .vjs-time-control {
  display: table-cell;
  width: 4em;
}
.video-is-ready .player-wrapper {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
#player-video-tops {
  display: flex;
  aspect-ratio: 21/9;
  background: #000;
  overflow: hidden;
}
.relative {
  position: relative;
}
.g-1 {
  gap: 1rem;
}
.g-1\.25 {
  gap: 1.25rem;
}
.g-1\.5 {
  gap: 1.5rem;
}
.g-1\.75 {
  gap: 1.75rem;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.column {
  flex-direction: column;
}
.flex-1 {
  flex: 1 1 0;
}
.flex-auto {
  flex: auto;
}
.flex-initial {
  flex: initial;
}
.flex-none {
  flex: none;
}
.color-title {
  color: var(--color-title);
}
.fs-8 {
  font-size: 0.75rem;
}
.fw-400 {
  font-weight: 400;
}
.fw-700 {
  font-weight: 700;
}
.uppercase {
  text-transform: uppercase;
}

.mtradio-items:not(.swiper):not(.is-auto-columns){
   grid-template-columns: repeat(1, minmax(0, 1fr));
   gap: 1.5rem;
  display: grid;
  align-items: flex-start;
  justify-content: center;
}
.mtradio-items.is-auto-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  justify-content: center;
  }


#app-super .player-left::after {
  display: none !important;
}

#app-super .player-picture {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s !important;
  transform-origin: bottom left !important;
  position: relative !important;
}

#app-super .player-left:hover .player-picture {
  transform: scale(2) translateY(-5px) !important;
  z-index: 99999 !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
  border-radius: 6px !important;
}


/* --- Additional Premium User Experience Tweaks --- */

/* Make station name and slogan highly legible on any dynamic background */
#app-super .station-name {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 1px rgba(0, 0, 0, 0.5) !important;
  font-weight: 700 !important;
}

#app-super .station-description {
  color: rgba(255, 255, 255, 0.85) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 1px rgba(0, 0, 0, 0.5) !important;
  font-weight: 500 !important;
}

#app-super .stream-description,
#app-super .stream-name {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
}

/* Play/Pause button floating border and drop shadow to stand out */
#app-super .player-button-play {
  padding: 1rem !important;
  border-radius: 999px !important;
  border: 2px solid rgba(255, 255, 255, 0.85) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.2s, box-shadow 0.2s !important;
}

#app-super .player-button-play:hover {
  transform: scale(1.08) !important;
  border-color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
}

#app-super .player-button-play:active {
  transform: scale(0.95) !important;
}

/* Share modal styling optimizations */
#app-super .player-modal {
  background-color: rgba(20, 20, 20, 0.95) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
  padding: 2rem !important;
  color: #fff !important;
  z-index: 100000 !important;
}

#app-super .player-modal h2 {
  color: #fff !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  margin-bottom: 1.5rem !important;
  text-align: center !important;
}

#app-super .player-modal-image {
  border-radius: 8px !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4) !important;
  display: block !important;
  margin: 0 auto 1rem auto !important;
  object-fit: cover !important;
}

#app-super .player-modal button[data-close] {
  color: rgba(255, 255, 255, 0.6) !important;
  transition: color 0.2s !important;
}

#app-super .player-modal button[data-close]:hover {
  color: #ffffff !important;
}

/* Social icons layout in modal */
#app-super .player-social-item {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  color: #fff !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
}

#app-super .player-social-item:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}

#app-super .social-facebook:hover {
  background-color: #1877f2 !important;
}

#app-super .social-twitter:hover {
  background-color: #000000 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

#app-super .social-whatsapp:hover {
  background-color: #25d366 !important;
}


/* Center player controller on desktop and prevent overlaps */
@media (min-width: 992px) {
  #app-super:not(.is-expanded) .player-controller {
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    gap: 1.5rem;
    position: absolute;
    display: flex;
    align-items: center;
  }
}

/* Ensure volume button container is relative for correct dropdown alignment */
#app-super .player-button-volume {
  position: relative !important;
}

/* Custom dark translucent volume dropdown styling */
#app-super .dropdown {
  position: absolute;
  height: 140px;
  background-color: rgba(18, 18, 18, 0.95) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  backdrop-filter: blur(10px) !important;
  padding: 1.25rem 0.75rem !important;
  border-radius: 12px !important;
  left: 50% !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
  transform: translateX(-50%) !important;
  bottom: calc(100% + 0.5rem) !important;
  transition: opacity 0.3s, transform 0.3s !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 40px !important;
}

#app-super .player-range-wrapper {
  position: relative !important;
  height: 100% !important;
  width: 3px !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
  border-radius: 99px !important;
}

#app-super .player-range-fill {
  position: absolute !important;
  width: 100% !important;
  top: auto !important;
  bottom: 0 !important;
  background-color: var(--accent, var(--player-primary)) !important;
  border-radius: 99px !important;
}

#app-super .player-range-thumb {
  width: 12px !important;
  height: 12px !important;
  background-color: #fff !important;
  border-radius: 50% !important;
  top: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  position: absolute !important;
  cursor: pointer !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4) !important;
}

/* --- Mobile Responsive Redesign (Spotify/Apple Music Style) --- */
@media (max-width: 991px) {
  /* Collapsed state (bar at the bottom) */
  #app-super:not(.is-expanded) .player {
    height: 75px !important;
    background-color: rgba(10, 10, 10, 0.88) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6) !important;
  }
  
  #app-super:not(.is-expanded) .player-bg,
  #app-super:not(.is-expanded) .player-overlay {
    opacity: 0.15 !important; /* Make sure background picture doesn't wash out readability */
  }

  #app-super:not(.is-expanded) .player-wrapper {
    height: 75px !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  
  #app-super:not(.is-expanded) .player-cover {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    gap: 12px !important;
    padding: 0 !important;
  }
  
  #app-super:not(.is-expanded) .player-left {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex: 1 !important;
    min-width: 0 !important;
    margin: 0 !important;
  }
  
  #app-super:not(.is-expanded) .player-artwork-container {
    width: 48px !important;
    height: 48px !important;
    flex-shrink: 0 !important;
  }
  
  #app-super:not(.is-expanded) .player-artwork-style {
    width: 48px !important;
    height: 48px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4) !important;
  }
  
  #app-super:not(.is-expanded) .player-cover-title {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
    flex: 1 !important;
  }
  
  #app-super:not(.is-expanded) #player-station-name {
    color: #ffffff !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 180px !important;
    text-shadow: none !important;
  }
  
  #app-super:not(.is-expanded) .player-program-badge {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 4px !important;
    padding: 1px 6px !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    color: #25d366 !important; /* Elegant green */
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin-top: 3px !important;
    width: fit-content !important;
  }

  #app-super:not(.is-expanded) .player-program-badge span {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 110px !important;
  }
  
  #app-super:not(.is-expanded) .player-program-badge i {
    display: inline-block !important;
    width: 5px !important;
    height: 5px !important;
    background-color: #25d366 !important;
    border-radius: 50% !important;
    box-shadow: 0 0 6px #25d366 !important;
    animation: pulse-live 1.5s infinite ease-in-out !important;
    margin: 0 !important;
  }

  /* Hide stream text indicator and visualizer on collapsed mobile bar */
  #app-super:not(.is-expanded) .player-stream,
  #app-super:not(.is-expanded) .visualizer {
    display: none !important;
  }

  /* Keep ONLY play/pause button and expand button in collapsed bar */
  #app-super:not(.is-expanded) .player-controller {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 8px !important;
  }

  #app-super:not(.is-expanded) .player-controller .player-button:not(.player-button-play) {
    display: none !important;
  }

  #app-super:not(.is-expanded) .player-right {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #app-super:not(.is-expanded) .player-right .player-button:not(.player-button-expand) {
    display: none !important;
  }
  
  /* Hide expand button on mobile to prevent play overlap; tap anywhere to expand */
  #app-super:not(.is-expanded) .player-button-expand {
    display: none !important;
  }
  
  /* Make play button in collapsed mobile bar smaller, solid white, black icon (Spotify style) */
  #app-super:not(.is-expanded) .player-button-play {
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #ffffff !important; /* Premium white */
    border: none !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4) !important;
    border-radius: 50% !important;
    color: #000000 !important;
  }

  #app-super:not(.is-expanded) .player-button-play svg {
    width: 16px !important;
    height: 16px !important;
    fill: currentColor !important;
    color: #000000 !important;
  }

  /* --- Mobile Expanded State Redesign (Spotify Fullscreen) --- */
  #app-super.is-expanded {
    height: 100vh !important;
    max-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    background-color: #0d0d0d !important;
  }

  #app-super.is-expanded .player-wrapper {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
  }

  #app-super.is-expanded .player-cover {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100% !important;
    width: 100% !important;
    gap: 1.5rem !important;
    padding: 0 !important;
  }

  /* Hide the stream name block completely on mobile so it doesn't push the artwork */
  #app-super .player-stream {
    display: none !important;
  }

  #app-super.is-expanded .player .player-left {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 1.25rem !important;
    width: 100% !important;
    flex: 1 !important;
    margin: 0 auto !important;
    position: relative !important;
  }

  #app-super.is-expanded .player .player-artwork-container {
    width: 240px !important;
    height: 240px !important;
    max-width: 60vw !important;
    max-height: 60vw !important;
    margin: 0 auto !important;
    display: block !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  #app-super.is-expanded .player .player-artwork-style {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    border-radius: 16px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
    display: block !important;
    margin: 0 auto !important;
  }

  #app-super.is-expanded .player .player-cover-title {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  #app-super.is-expanded #player-station-name {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    text-align: center !important;
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    max-height: 4.2rem !important;
    line-height: 1.2 !important;
  }

  #app-super.is-expanded .player-program-badge {
    justify-content: center !important;
    font-size: 0.85rem !important;
    margin-top: 6px !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #25d366 !important;
  }

  /* Expanded controller row on mobile */
  #app-super.is-expanded .player-controller {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    gap: 24px !important;
    margin: 1.5rem 0 !important;
  }

  /* Show rating buttons in the expanded controller on mobile */
  #app-super.is-expanded .player-controller .player-button {
    display: inline-flex !important;
  }

  #app-super.is-expanded .player-button-play {
    padding: 1.1rem !important;
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
  }

  #app-super.is-expanded .player-button-play svg {
    width: 24px !important;
    height: 24px !important;
    color: #000000 !important;
  }

  /* Expanded bottom options row on mobile */
  #app-super.is-expanded .player-right {
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
    width: 100% !important;
    padding: 10px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  #app-super.is-expanded .player-right .player-button {
    display: inline-flex !important;
  }

  /* Reposition volume dropdown upward when expanded on mobile */
  #app-super.is-expanded .player-button-volume .dropdown {
    bottom: 70px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    height: 110px !important;
  }
}


/* --- High-Contrast Player Bar for White/Light Backgrounds --- */
#app-super .player-wrapper {
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7) !important;
}

#app-super .stream-name, 
#app-super .station-name, 
#app-super .stream-description {
  color: #ffffff !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85) !important;
}

/* Central Play/Pause button with vibrant primary accent & crisp border */
#app-super .player-button-play {
  background: var(--primary-color) !important;
  color: #ffffff !important;
  border: 3px solid #ffffff !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(0, 0, 0, 0.2) !important;
}

#app-super .player-button-play svg,
#app-super .player-button-play i {
  color: #ffffff !important;
  fill: #ffffff !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4)) !important;
}

#app-super .player-button-play:hover {
  background: #e62e2e !important;
  transform: scale(1.08) !important;
  box-shadow: 0 8px 25px rgba(255, 59, 48, 0.5) !important;
}

/* All utility control buttons in player (Volume, Like, Dislike, Share, Lyrics) */
#app-super .player-controller .player-button:not(.player-button-play),
#app-super .player-right .player-button {
  color: #ffffff !important;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.75)) !important;
  transition: transform 0.2s, color 0.2s !important;
}

#app-super .player-controller .player-button:not(.player-button-play):hover,
#app-super .player-right .player-button:hover {
  color: var(--primary-color) !important;
  transform: scale(1.15) !important;
}
