body {
    font-family: Arial, sans-serif;
    background-color: #161616;
    margin: 0;
    padding: 0px;
    cursor: default;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
  pointer-events: none;
}

#now {
    margin: 10px;
    height: 250px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertical centering */
    align-items: center;      /* horizontal centering */
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
     /* optional: add some padding around the content */
}

#nowBg{
    position: absolute;
    inset: 0;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    object-fit: cover;
    filter: blur(12px) saturate(1.3);
    transform: scale(1.1);
    z-index: 0;
}

#player {
    display: none;
}

#nowLogo {
    border-radius: 10px;
    opacity: 0.9;
    filter: blur(0.2px);
}

#nowText {
    margin-top: 10px;
    font-size: 28px;
    font-weight: bolder;
    color: #ffffffbb;
    filter: blur(0.3px);
}

#nowLogo, #nowText, #toggleBtn, #volume {
    position: relative;
    z-index: 2;
}

#toggleBtn{
    padding: 0px 3px;
    border-radius: 1000px;
    border: 2px solid #aaaaaa22;
    background: #ffffff44;
    filter: blur(0.1px);
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px;
}

#toggleBtn:hover {
    background: #ffffff66;
    filter: blur(0px);
}

#toggleBtn:hover svg{
    fill: #ffffff88;
}

#toggleBtn svg {
    transition: 0.3s ease;
    margin-top: 2px;
    width: 50px;
    height: 50px;
    filter: blur(0.6px);
    fill: #ffffff99;
}

input[type="range"] {
    margin: 10px 0;
    cursor: ew-resize;
    -webkit-appearance: none;
    appearance: none;
    width: 200px;
    height: 7px;
    background: #aaaaaa88;
    border-radius: 999px;
    outline: none;
    overflow: hidden;
    filter: blur(0.5px);
    transition: 0.3s ease;
}

input[type="range"]:hover {
    background: #aaaaaaaa;
}

/* filled track (progress part) */
input[type="range"]::-webkit-slider-runnable-track {
    height: 7px;
    background: transparent;
}

/* the thumb (dot) */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 0;
    height: 0;
    box-shadow: -1000px 0 0 1000px #ffffffbb; /* fake progress fill */
}

/* Firefox support */
input[type="range"]::-moz-range-thumb {
    width: 0;
    height: 0;
    border: none;
}

input[type="range"]::-moz-range-track {
    height: 7px;
    background: #aaaaaa88;
    border-radius: 999px;
}

input[type="range"]::-moz-range-progress {
    background: #ffffffbb;
    height: 7px;
    border-radius: 999px;
}

#buttons {
    border-radius: 10px;
    margin: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    overflow-y: auto;
    height: calc(100vh - 270px);
}

.stationBtn {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    border: none;
    background: #222;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0px 0px 10px #222;
}

.stationImg {
    width: calc(100% - 20px);
    margin-bottom: 5px;
    filter: blur(0.3px);
    border-radius: 10px;
}