
 /*mobile css */
    .radio-footer {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 95%;
      height: 70px;
      background-color: var(--bg-light);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px 10px;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
      z-index: 9999;
    }

    .radio-info {
      flex-grow: 1;
      margin: 0 10px;
    }

    .radio-info h4 {
      margin: 0;
      font-size: 16px;
      color: var(--main-color);
    }

    .radio-info p {
      margin: 0;
      font-size: 13px;
      color: var(--text-light);
      line-height: 1.3;
    }

    .radio-btn {
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      position: relative;
      width: 40px;
      height: 40px;
    }

    .radio-btn i {
      transition: opacity 0.3s ease, transform 0.3s ease;
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .radio-btn i.hidden {
      opacity: 0;
      transform: scale(0.8);
    }

    .arrow {
      font-size: 18px;
      margin: 0 10px;
      cursor: pointer;
      color: var(--text-dark);
      transition: transform 0.3s ease-in-out;
    }

    .arrow.rotated {
      transform: rotate(90deg);
    }

    .full-player {
        margin:auto;
      position: fixed;
      bottom: -100%;
      left: 0;
      width: 96%; 
      height: 100vh;
      background-color: var(--bg-light);
      transition: bottom 0.3s ease-in-out;
      z-index: 9998;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .full-player.open {
      bottom: 0;
    }

    .full-player-content {
      text-align: center;
      width: 100%;
      padding: 20px;
      position: relative;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      background: none;
      color: var(--text-dark);
      font-size: 24px;
      border: none;
      cursor: pointer;
    }

    .radio-logo {
      width: 60%;
      max-width: 180px;
      margin-bottom: 15px;
    }

    .radio-meta h2 {
      margin: 10px 0 5px;
      font-size: 20px;
      color: var(--main-color);
    }

    .radio-meta p {
      margin: 0;
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.4;
    }

    .player-controls {
      margin-top: 25px;
      display: flex;
      justify-content: center;
      gap: 30px;
      align-items: center;
    }

    .control-btn {
      font-size: 26px;
      color: var(--text-dark);
      cursor: pointer;
    }

    .control-btn.main {
      background-color: var(--main-color);
      color: #fff;
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 36px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

    .control-btn.main i {
      transition: opacity 0.3s ease, transform 0.3s ease;
      position: absolute;
    }

    .control-btn.main i.hidden {
      opacity: 0;
      transform: scale(0.8);
    }

    .control-btn.main:hover {
      transform: scale(1.1);
      box-shadow: 0 0 20px rgba(229, 57, 53, 0.5);
    }

    @media (max-width: 480px) {
      .radio-footer {
        height: 60px;
        padding: 5px 8px;
      }

      .radio-info h4 {
        font-size: 15px;
      }

      .radio-info p {
        font-size: 12px;
      }

      .radio-logo {
        width: 70%;
        max-width: 150px;
      }

      .control-btn.main {
        width: 72px;
        height: 72px;
        font-size: 32px;
      }
    }
/* closed mobile codes*/





    @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.4); opacity: 0.5; }
      100% { transform: scale(1); opacity: 1; }
    }

    .radio-container {
      width: 200px;
      display: flex;
      align-items: center;
      background-color: #1c2c7c;
      padding: 0px 12px;
      border-radius: 40px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
 
    }
.blinker {
  width: 12px;
  height: 12px;
  background-color: red;
  border-radius: 50%;
  margin-right: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.6);
  animation: pulse 1.4s infinite ease-in-out;
  display: inline-block;
}


    .live-text {
      color: white;
      font-size: 10px;
      margin-right: 5px;
    }

    .live-text span {
      color: red;
      font-weight: bold;
      margin-right: 2px;
    }

    .icon-btn {
      background: none;
      border: none;
      margin-left: 2px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4px;
      transition: transform 0.2s;
    }

    .icon-btn:hover {
      transform: scale(1.1);
    }

    .icon-btn svg {
      fill: white;
      width: 20px;
      height: 20px;
    }

    .hidden { display: none; }

    .volume-slider {
      margin-left: 10px;
      display: flex;
      align-items: center;
    }

    .volume-slider input[type="range"] {
      width: 100px;
      accent-color: white;
      margin-left: 6px;
    }

    audio { display: none; }

    /* Slide-up Footer */
    #zenoFooterPlayer {
      position: fixed;
      bottom: 0;
      width: 100%;
      background: #fff;
      z-index: 9999;
      justify-content: center;
      align-items: center;
      box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
      border-top: 1px solid #ddd;
      transform: translateY(100%);
      transition: transform 0.4s ease-in-out;
      display: flex;
    }

    #zenoFooterPlayer.show {
      transform: translateY(0%);
    }

    .footer-inner1 {
      display: flex;
      align-items: center;
      width: 100%;
      max-width: 950px;
      padding: 10px 20px;
      gap: 20px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-logo img {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      object-fit: cover;
    }

    .footer-logo span {
      font-size: 14px;
      font-weight: bold;
      white-space: nowrap;
    }

  .footer-cover {
  width: 50px;
  height: 50px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  background-color: #1c2c7c; /* Default blue */
}


    .footer-info {
      flex: 1;
      overflow: hidden;
    }

    .footer-info div {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: 14px;
    }

    .footer-controls {
      display: flex;
      align-items: center;
      gap: 10px;
    }

  .footer-play-button,
.footer-mute-button {
  background: #e50914; /* Red color */
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-play-button:hover,
.footer-mute-button:hover {
  background: #cc0812; /* Slightly darker red on hover */
}


   #volumeSliderFooter {
  width: 80px;
  accent-color: #e50914; /* Netflix-style red */
}


   #volumePercentage {
  font-size: 14px;
  min-width: 40px;
  color: #e50914; /* Bright red */
  font-weight: bold;
}


#volumeOnIcon{
  color: white;
}
#volumeOffIcon{
  color: white;
}






 
@media only screen and (max-width: 768px) {
  #zenoFooterPlayer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #1e1e1e;
    color: #fff;
    z-index: 9999;
    padding: 10px 12px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  }

  .footer-inner1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-logo img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
  }

  .footer-logo span {
    font-weight: bold;
    font-size: 14px;
  }

  .footer-info {
    flex: 1 1 100%;
    text-align: left;
    margin: 8px 0;
    font-size: 13px;
  }

  .footer-info #currentSong3 {
    font-weight: bold;
  }

  .footer-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .footer-controls button {
    background: #ff4c4c;
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .footer-controls button i {
    font-size: 16px;
  }

  #volumeSliderFooter {
    flex: 1;
  }

  #volumePercentage {
    font-size: 12px;
  }

  .footer-cover {
    display: none;
  }
}