
.logo {
    position: absolute; 
    top: 20px; 
    left: 20px; 
    width: 100px; 
    height: 100px; 
    z-index: 10; 
}


@import url('https://fonts.cdnfonts.com/css/cheri');

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #121212;
    margin: 0;
    color: #fff;
}


.move-title {
    font-family: 'Cheri Liney', sans-serif; 
    font-size: 45px;
    color: #ffffff;
    margin-bottom: 10px;
}


.song-title {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #1e1e1e;
    border-radius: 5px;
    box-shadow: 0 0 10px #08FFE6;
    transition: box-shadow 0.3s;
    display: none; 
}

.song-title.paused {
    box-shadow: 0 0 10px red;
}

.player-container {
    width: 300px;
    background-color: #1e1e1e;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
}

.controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.control-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

.control-button.active {
    color: #08FFE6;
    text-shadow: 0 0 10px #08FFE6;
}

.progress-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}

#progress-bar {
    flex: 1;
    margin: 0 10px;
    -webkit-appearance: none;
    appearance: none;
    height: 5px;
    background: #333;
    border-radius: 5px;
    outline: none;
}

#progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #08FFE6;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px #08FFE6;
}

#progress-bar::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: #08FFE6;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px #08FFE6;
}

#current-time, #duration {
    font-size: 12px;
    width: 40px;
    text-align: center;
    color: #fff;
}

#song-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px; 
    overflow-y: auto; 
    scrollbar-width: thin; 
    scrollbar-color: #08FFE6 #1e1e1e; 
}


#song-list::-webkit-scrollbar {
    width: 8px;
}

#song-list::-webkit-scrollbar-track {
    background: #1e1e1e;
}

#song-list::-webkit-scrollbar-thumb {
    background-color: #08FFE6;
    border-radius: 10px;
    border: 2px solid #1e1e1e;
}

#song-list li {
    background-color: #333;
    padding: 10px;
    margin: 5px 0;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    color: #fff;
}

#song-list li:hover {
    background-color: #444;
}

#song-list li.active {
    color: #08FFE6;
    text-shadow: 0 0 20px #08FFE6;
}


#song-list li.special-song {
    background-color: #735c8a !important;
}

#song-list li.special-song.active {
    color: #08FFE6;
    text-shadow: 0 0 20px #08FFE6; 
}

.volume-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#volume-slider {
    flex: 1;
    margin: 0 10px;
    -webkit-appearance: none;
    appearance: none;
    height: 5px;
    background: #333;
    border-radius: 5px;
    outline: none;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: var(--thumb-color, #08FFE6); 
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
}

#volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: var(--thumb-color, #08FFE6); 
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
}


#volume-slider::-webkit-slider-thumb:hover {
    box-shadow: 0 0 10px var(--thumb-color, #08FFE6);
}

#volume-slider::-moz-range-thumb:hover {
    box-shadow: 0 0 10px var(--thumb-color, #08FFE6);
}

.control-button.muted i {
    color: black;
    text-shadow: 0 0 25px red;
}