html,
body {
    margin: 0;
    padding: 0;
}

body {
    background-color: #1b1d20;
}

.Container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

#NavBar {
    position: sticky;
    top: 0;
    background-color: #C8D7EB;
    display: flex;
    align-items: center;
    z-index: 49;
}

#NavBar a {
    font-weight: bold;
    text-decoration: none;
    color: #4f4f4f;
    display: flex;
    align-items: center;
    height: 50px;
    font-size: 20px;
    font-weight: bolder;
    font-weight: 900;
    padding: 10px;
}

#NavBar a:hover {
    background-color: #A7C0E0;
    color: #000000;
}

#NavBar a:active {
    background-color: #7E9BBF;
    color: #FFFFFF;
}

#logo {
    height: 80px;
}

.SlideShow {
    width: 1000px;
    height: 600px;
    position: relative;
    margin: auto;
    margin-top: 60px;
    overflow: hidden;
}

.SlideContainer {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.Slides {
    min-width: 1000px;
    height: 600px;
    position: relative;
}

.carousel_img {
    height: 600px;
    border-radius: 20px;
}

.Dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.dot {
    cursor: pointer;
    height: 25px;
    width: 25px;
    margin: 0 20px;
    background-color: #4f4f4f;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #ffffff;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

footer {
    text-align: center;
    color: white;
}

.song-tile {
    width: 200px;
    height: 200px;
    cursor: pointer;
    margin-left: 12.5%;
    margin-top: 4%;
    position: relative;
}

.covers-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.cover {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    transition: transform 0.8s, opacity 0.3s;
}

.main-cover {
    z-index: 10;
}

.play-btn {
    position: absolute;
    bottom: 35%;
    right: 25%;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    cursor: pointer;
    backdrop-filter: blur(3px);
    transition: 0.2s;
}

.play-btn.opened {
    transform: scale(1.1);
    backdrop-filter: blur(6px);
}

.covers-container .cover:not(.main-cover) {
    opacity: 0;
    z-index: 5;
    transform: translateX(0);
}

.covers-container.opened .cover:not(.main-cover) {
    opacity: 1;
}

.covers-container .cover:nth-child(2) {
    transform: translateX(0);
    z-index: 9;
    position: relative;
    overflow: hidden;
}

.covers-container.opened .cover:nth-child(2) {
    transform: translateX(140px);
}

.covers-container .cover:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.covers-container .cover:nth-child(2):hover::after {
    opacity: 1;
}

.covers-container .cover:nth-child(3) {
    transform: translateX(0);
    z-index: 8;
}

.covers-container.opened .cover:nth-child(3) {
    transform: translateX(280px);
}

.covers-container .cover:nth-child(3)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.covers-container .cover:nth-child(3):hover::after {
    opacity: 1;
}

.covers-container .cover:nth-child(4) {
    transform: translateX(0);
    z-index: 7;
}

.covers-container.opened .cover:nth-child(4) {
    transform: translateX(420px);
}

.covers-container .cover:nth-child(4)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.covers-container .cover:nth-child(4):hover::after {
    opacity: 1;
}

.covers-container .cover:nth-child(5) {
    transform: translateX(0);
    z-index: 6;
}

.covers-container.opened .cover:nth-child(5) {
    transform: translateX(560px);
}

.covers-container .cover:nth-child(5)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.covers-container .cover:nth-child(5):hover::after {
    opacity: 1;
}

.covers-container .cover:nth-child(6) {
    transform: translateX(0);
    z-index: 5;
}

.covers-container.opened .cover:nth-child(6) {
    transform: translateX(700px);
}

.covers-container .cover:nth-child(6)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.covers-container .cover:nth-child(6):hover::after {
    opacity: 1;
}

.PlayBackBar {
    background-color: #0c0c0c;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
}

#PlayBackPlayButton {
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 25px;
    line-height: 1;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#PlayBackPlayButton .symbol {
    position: relative;
    transform: translate(2px, -2px);
}

#PlayBackPlayButton .symbol.pause {
    transform: translate(1.25px, -3.5px);
}

.LeftSection,
.CenterSection,
.RightSection {
    flex: 1;
    display: flex;
    align-items: center;
}

.CenterSection {
    justify-content: center;
    margin-left: 350px;
}

.RightSection {
    justify-content: flex-end;
    gap: 10px;
    margin-right: 50px;
}

.VolumeControl {
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-like-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-bottom: 20px;
}


.VolumeIcon {
    width: 25px;
    user-select: none;
}

.LikeButton {
    width: 25px;
    user-select: none;
}

.VolumeSlider {
    width: 120px;
    height: 6px;
    cursor: pointer;
    border-radius: 5px;
    outline: none;
    background-color: #383838;
}

/* CHROME LINE*/
.VolumeSlider::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    width: 120px;
    height: 6px;
    cursor: pointer;
    border-radius: 5px;
    outline: none;
    background-color: #383838;
}

/* CHROME SLIDER */
.VolumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -5px;
    outline: none;
}

/* FIREFOX LINE */
.VolumeSlider::-moz-range-track {
    width: 120px;
    height: 6px;
    cursor: pointer;
    border-radius: 5px;
    outline: none;
    background-color: #383838;
}

/* FIREFOX SLIDER */
.VolumeSlider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -5px;
    outline: none;
}

/* CHROME HOVER */
.VolumeSlider:hover::-webkit-slider-runnable-track {
    background: #00b118;
}

/* FIREFOX HOVER */
.VolumeSlider:hover::-moz-range-track {
    background: #00b118;
}

.NowPlayingSection {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#NowPlayingText {
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Cunia', sans-serif;
    white-space: nowrap;
}

.TimeStamp {
    position: absolute;
    left: 815px;
    width: 250px;
    height: 6px;
    border-radius: 5px;
    outline: none;
    background-color: #383838;
    margin-top: 40px;
}

/* CHROME LINE*/
.TimeStamp::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    width: 250px;
    height: 6px;
    border-radius: 5px;
    outline: none;
    background-color: #383838;
}

/* CHROME SLIDER */
.TimeStamp::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    margin-top: -5px;
    outline: none;
}

/* FIREFOX LINE */
.TimeStamp::-moz-range-track {
    width: 250px;
    height: 6px;
    border-radius: 5px;
    outline: none;
    background-color: #383838;
}

/* FIREFOX SLIDER */
.TimeStamp::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    margin-top: -5px;
    outline: none;
}