     :root {
  --bg: #090713;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.13);
  --text: #ffffff;
  --muted: #b9b5c9;
  --pink: #ff3d91;
  --violet: #8b5cf6;
  --blue: #38bdf8;
  --green: #34d399;
  --border: rgba(255, 255, 255, 0.15);
}
    .radio-widget {
      width: 100%;
      max-width: 520px;
      height: 60px;
      background:linear-gradient(135deg, #331044, #ff3d91 50%, #38bdf8);
      display: flex;
      align-items: center;
      gap: 1px;
      padding: 0 12px;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
      position: relative;
      border-radius: 6px;
    }

    .radio-btn {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 14px;
      background-color: linear-gradient(135deg, var(--accent), #a9ffdf);
      display: flex;
      color: rgb(4, 6, 17);
       box-shadow: rgba(124, 247, 255, 0.75) 0px 0px 20px;
      place-items: center;
      align-items: center;
      justify-content: center;
   
    }
    .radio-btn:hover {
      background-color: #ff3d91;
      color: #fff;
      box-shadow: rgba(255, 61, 145, 0.75) 0px 0px 30px;
    }

    .radio-select {
      position: relative;
      left:15px;
      width: 150px;
      height: 32px;
      color: #ffffff;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 15px;
      cursor: pointer;
      user-select: none;
      box-sizing: border-box;
    }

    .radio-current {
      display: flex;
      align-items: center;
      gap: 7px;
      overflow: hidden;
      white-space: nowrap;
    }

    .radio-current img,
    .radio-option img {
      width: 24px;
      height: 24px;
      border-radius: 4px;
      object-fit: cover;
    }

    .radio-list {
      display: none;
      position: absolute;
      top: 43px;
      left: 50px;
      width: 210px;
      background:linear-gradient(135deg, #331044, #ff3d91 50%, #38bdf8);
      color: #ffffff;
      z-index: 9999;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }

    .radio-option {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px;
      cursor: pointer;
      font-size: 14px;
    }

    .radio-option:hover {
      background: #434242;
    }

    .radio-volume-wrap {
      position: relative;
      display: flex;
      align-items: center;
      left: 15px;
      gap: 6px;
    }
#volumeRange{
      position: relative;
      bottom: 0;
      width: 50%;
      height: 8px;
      border-radius: 8px;
      outline: none;
      appearance: none;
      -webkit-appearance: none;
      background: rgba(255, 255, 255, 0.18);
      cursor: pointer;
    }

    #volumeRange::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 12px;
      height: 12px;
      background: #2c2c2c;
      border-radius: 50%;
      cursor: pointer;
    }

    #volumeRange::-moz-range-thumb {
      width: 12px;
      height: 12px;
      background: #2c2c2c;
      border-radius: 50%;
      cursor: pointer;  
}
    .radio-volume {
      width: 90px;
      cursor: pointer;
    }

    .radio-brand {
      margin-left: auto;
      color: #2c2c2c;
      font-weight: 700;
      font-size: 13px;
      white-space: nowrap;
    }
    .player-card {
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
  backdrop-filter: blur(22px);
  border-radius: 36px;
  padding: 24px;
  box-shadow: 0 25px 90px rgba(0,0,0,0.42);
  position: relative;
  overflow: hidden;
}

.player-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: var(--pink);
  filter: blur(90px);
  opacity: .23;
  top: -70px;
  right: -70px;
}

.cover-wrap {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  overflow: hidden;
  /*aspect-ratio: 1/1;*/
  background: linear-gradient(135deg, #331044, #ff3d91 50%, #38bdf8);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.vinyl {
  width: 72%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 5%, #ff3d91 5% 12%, #111 12% 18%, #272135 18% 48%, #111 48% 50%, #272135 50% 64%, #111 64% 66%, #272135 66% 100%);
  box-shadow: inset 0 0 20px rgba(255,255,255,.12), 0 35px 80px rgba(0,0,0,.36);
  animation: spin 9s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
.now-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.now-row small {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.now-row h2 {
  font-size: 26px;
  letter-spacing: -0.04em;
  margin-top: 4px;
}

.heart {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
  color: #ff9fcb;
  font-size: 22px;
  cursor: pointer;
}

.equalizer {
  position: relative;
  z-index: 2;
  height: 58px;
  display: flex;
  align-items: end;
  gap: 6px;
  margin-bottom: 20px;
}


.equalizer span {
  flex: 1;
  min-width: 5px;
  border-radius: 999px;
  background: linear-gradient(to top, var(--pink), var(--blue));
  height: 22%;
  animation: eq 1.1s ease-in-out infinite alternate;
  opacity: .92;
}
.stopped span {
  animation-play-state: paused;
  height: 56%;
}
.started span {
  animation-play-state: running;
}

.equalizer span:nth-child(2n) { animation-delay: .18s; }
.equalizer span:nth-child(3n) { animation-delay: .32s; }
.equalizer span:nth-child(5n) { animation-delay: .5s; }

@keyframes eq {
  from { height: 16%; }
  to { height: 100%; }
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
}
.cta {
  margin: 36px 0 54px;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255,61,145,.22), rgba(56,189,248,.13));
  align-items: center;
}

.cta h3 {
  font-size: 32px;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}

.cta p {
  color: var(--muted);
  line-height: 1.6;
}

    @media (max-width: 460px) {
      .radio-widget {
        max-width: 100%;
      }
      .cta {
  margin: 36px 0 54px;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255,61,145,.22), rgba(56,189,248,.13));
  align-items: center;
}

      .radio-select,
      .radio-list {
        width: 180px;
      }

      .radio-brand {
        display: none;
      }
       .container {
    width: min(100% - 22px, 1180px);
  }
      .primary-btn {
    width: 100%;
  }
  .radio-select{
    width: 130px;
    right: 15px;
  }
  .radio-btn{
    width: 30px;
    height: 25px;
  }
    }