* {
  font-family: "Roboto", sans-serif;
  color: #8b8d8f;
}

body {
  background: #192e37;
}

.player {
  width: 350px;
  border-radius: 40px;
  background: linear-gradient(to bottom, #33383e 0%, #17191d 100%);
  margin: 0 auto;
  display: block;
  border: solid 2px #3e434c;
  height: 100%;  
}
.lyrics-box {
  margin: 20px;
  border-radius: inherit;
  white-space: pre-line;
  line-height: 1.5;
}
.spacer {}

.top {
    display: flex;
    justify-content: space-between;
    color: #aaa;
}

.indicator {
    font-size: 10px;
    width: 100%;
    margin: 20px auto;
    text-align: center;
}
.small,
.big,
.big_play_pause {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  background: radial-gradient(at bottom right, #292e35 0%, #292e34 80%);
  border: none;
  box-shadow: -7px -6px 10px 5px rgba(255, 255, 255, 0.04),
    6px 6px 10px 5px rgb(39, 42, 47);
  padding: 0;
}

.big,
.big_play_pause {
  height: 60px;
  width: 60px;
  box-shadow: -7px -6px 10px 5px rgba(255, 255, 255, 0.04),
    7px 6px 10px 2px rgb(14, 15, 16);
  background: radial-gradient(at bottom right, #17191e 0%, #1d2025 80%);
}

.big_play_pause {
  background: radial-gradient(at top left, #c92711 0%, #ea570a 80%);
}
.inner_button,
.center,
.inner_button_big,
.playpause {
  border-radius: 50%;
  height: 35px;
  width: 35px;
  background: radial-gradient(
    at top left,
    rgba(46, 50, 58, 1) 0%,
    rgba(28, 30, 35, 1) 80%
  );
  margin: 0 auto;
  border: none;
  display: flex;
  justify-content: center;
  vertical-align: middle;
  /* align-self: center; */
  align-items: center;
}

.inner_button_big {
  height: 55px;
  width: 55px;
  background: radial-gradient(
    at top left,
    rgb(57, 59, 64) 0%,
    rgb(12, 13, 16) 112%
  );
}

.playpause {
  background: radial-gradient(at bottom right, #c92711 0%, #ea570a 80%);
  height: 55px;
  width: 55px;
}

.small:active {
  transform: translateY(2px);
  background: radial-gradient(at top left, #292e35 0%, #292e34 80%);
}
.inner_button:active {
  background: radial-gradient(
    at bottom right,
    rgba(46, 50, 58, 1) 0%,
    rgba(28, 30, 35, 1) 80%
  );
}
.big_play_pause:active {
  transform: translateY(4px);
  background: radial-gradient(at bottom right, #c92711 0%, #ea570a 80%);
}
.playpause:active {
  background: radial-gradient(at top left, #c92711 0%, #ea570a 80%);
}

.big:active {
  transform: translateY(4px);
  background: radial-gradient(at top left, #17191e 0%, #1d2025 80%);
}
.inner_button_big:active {
  background: radial-gradient(
    at bottom right,
    rgb(57, 59, 64) 0%,
    rgb(12, 13, 16) 112%
  );
}

.center {
  height: 220px;
  width: 220px;
  box-shadow: -15px -10px 16px 5px rgba(255, 255, 255, 0.04),
    10px 10px 16px 8px rgb(24, 26, 29);
  background: radial-gradient(at top left, rgba(28, 30, 35, 1) 0%, #131416 85%);
}

.album {
  border-radius: 50%;
  height: 205px;
  width: 205px;
  object-fit: cover;
}

.song_details {
  text-align: center;
  margin-top: 40px;
}

.controls {
  display: flex;
  justify-content: space-around;
  margin: 30px 30px 0px 30px;
}

.slider {
  margin: 20px auto;
  width: 70%;
}

.slider_bar {
  background: black;
  height: 6px;

  border-radius: 5px;
  margin: 0 auto;
  box-shadow: inset -2px -2px 2px 0px rgb(66, 70, 74),
    inset 1px 1px 1px -1px rgb(0, 0, 0);
}

.inner_slider_bar {
  width: 60%;
  height: 4px;
  background: radial-gradient(at top left, #c92711 0%, #ffc107 90%);
  margin: 0px 1px;
  border-radius: 5px;
}
.time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 7px;
  margin-bottom: 5px;
}
.description{
  line-height : 1.5;
  margin : 20px
}
.paksiw {
  max-width: 420px;
  margin: 10px auto 0 auto;
  text-align: right;
  font-size: 10px;
  color: #888;
}
.paksiw a {
  color: #aaa;
  text-decoration: none;
}
.paksiw a:hover {
  text-decoration: underline;
}

/* layout row */
.controls-row{
  display:flex; align-items:center; gap:10px;
  margin:16px; user-select:none;
}

/* buttons */
.btn{
  appearance:none; border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.06);
  color:#fff; border-radius:12px; padding:12px 16px;
  font-weight:700; font-size:14px; cursor:pointer;
  transition:transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  box-shadow:0 4px 12px rgba(0,0,0,.25);
  witdh:100%;
}
.btn:hover{ transform:translateY(-1px); border-color:rgba(255,255,255,.25); }
.btn:active{ transform:translateY(0); }
.btn-secondary{ background:rgba(255,255,255,.08); }

/* big orange play */
#muteBtn.btn {
    padding: 15px 10px;
    width: 100%;
}
.btn-play{
  display:flex; align-items:center; gap:10px;
  background:linear-gradient(135deg,#f39c12 0%,#e67e22 100%);
  border:none; color:#fff; border-radius:14px; padding:15px 0px;
  min-width:92px; justify-content:center;
}
.btn-play:hover{
  background:linear-gradient(135deg,#e67e22 0%,#d35400 100%);
  box-shadow:0 8px 16px rgba(243,156,18,.28);
}
.btn-play .triangle{ font-size:18px; line-height:1; }
.btn-play.playing .triangle{ content:"⏸"; } /* JS toggles text */

/* volume slider */
.vol-slider{
  flex:1; height:8px; border-radius:999px; outline:none;
  background:rgba(255,255,255,.12); -webkit-appearance:none; appearance:none;
}
.vol-slider:hover{ background:rgba(255,255,255,.18); }
.vol-slider::-webkit-slider-runnable-track{ height:8px; border-radius:999px; background:transparent; }
.vol-slider::-webkit-slider-thumb{
  -webkit-appearance:none; appearance:none;
  width:18px; height:18px; border-radius:50%;
  background:#f39c12; border:2px solid #111;
  margin-top:-5px; box-shadow:0 0 0 2px rgba(0,0,0,.25);
  transition:transform .12s ease;
}
.vol-slider:active::-webkit-slider-thumb{ transform:scale(1.05); }
.vol-slider::-moz-range-track{ height:8px; background:transparent; border:none; }
.vol-slider::-moz-range-thumb{
  width:18px; height:18px; border-radius:50%;
  background:#f39c12; border:2px solid #111;
}

/* hide native <audio> UI */
#audioPlayer{ display:none; }


/* particles as main background */
#particles-js{
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}

/* player above particles */
.player{ position: relative; z-index: 1; }

/* album container hosts viz */
.center{
  position: relative;
  width: 220px; height: 220px;
  display: grid; place-items: center;
  margin: 20px auto;           /* spacing around the disc */
  box-shadow: -15px -10px 16px 5px rgba(255,255,255,0.04),
              10px 10px 16px 8px rgb(24,26,29);
  background: radial-gradient(at top left, rgba(28,30,35,1) 0%, #131416 85%);
  border-radius: 50%;
}

/* viz behind album */
.viz-local{
  position:absolute; inset:0; z-index:0; display:block; pointer-events:none;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 50%);
          mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 50%);
	width: 260px !important;
	height: 260px !important;
	left: -20px !important;
	top: -20px !important;
}
.album{
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(0,0,0,.6);
  margin: 0;                 /* remove default margins */
}



/* add-on */

.nowplaying { text-align: center; margin: 10px 0 6px; }
.title { font-size: 1.05rem; font-weight: 600; }
.artist { font-size: 0.9rem; color: #d7d7d7; opacity: 0.9; }


.rows { display: grid; gap: 10px; margin-top: 14px; }
.controls { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; }


button {
background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
border: none; border-radius: 8px; color: white; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
padding: 10px 12px; cursor: pointer; transition: transform 0.12s ease, box-shadow 0.25s ease, filter 0.2s;
}
button:hover { transform: translateY(-1px); box-shadow: 0 8px 16px rgba(243,156,18,0.3); filter: brightness(1.02); }
button.secondary { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); font-weight: 600; text-transform: none; }


.volume { appearance: none; height: 6px; border-radius: 999px; background: rgba(255,255,255,0.1); outline: none; }
.volume::-webkit-slider-thumb { appearance: none; width: 16px; height: 16px; border-radius: 50%; background: #f39c12; cursor: pointer; border: none; box-shadow: 0 0 0 2px rgba(0,0,0,0.2); }
.volume::-moz-range-thumb { width: 16px; height: 16px; border: none; border-radius: 50%; background: #f39c12; cursor: pointer; }


