html,
body {
  background-color: #131313;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}

#music-content {
  transition: padding-right 0.5s ease;
  transition: padding-bottom 0.5s ease;
}

ul li {
  list-style-type: none;
}

a {
  color: #b6b6b6;
  text-decoration: none;
  cursor: pointer;
}

#Top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  width: 100%;
  padding: 0 8px;
  background-color: #131313db;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 997;
  transition: height 0.3s ease;
}

.left-nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.Top-bar-logo {
  max-width: 120px;
  min-width: 80px;
  height: auto;
  margin-top: 10px;
  cursor: pointer;
}

#sliderToggleButton-Container {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: all 0.5s ease;
  margin: 0 0 0 10px;
  cursor: pointer;
}

.sliderToggleButton-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  width: 32px;
  height: 32px;
}

#sliderToggleButton-Container:hover {
  border: 1px solid #aaaaaa;
  background-color: #5b5b5b;
  border-radius: 50%;
  transition: all 0.5s ease;
}

#Top-bar .center-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 50px;
  max-width: 580px;
  width: 100%;
  min-width: 120px;
  height: 50px;
  position: relative;
  margin: 15px 5px 10px 5px;
  transition: max-width 0.3s ease;
}

.searchInput {
  border: 1px solid #515151;
  background: none;
  outline: none;
  color: #b7b2b2;
  font-size: 13px;
  width: 100%;
  padding: 15px 0px 15px 23px;
  border-radius: 50px;
  transition: 0.25s;
}

.searchInput:focus {
  background-color: #4e4848;
  color: #b7b2b2;
  border: 1px solid #ceb9b9;
}

.searchButton img.buttonIcon {
  width: 14px;
  height: 14px;
}

.searchButton {
  color: white;
  position: absolute;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(
    --gradient-2,
    linear-gradient(90deg, #dad69c 0%, #764a88 100%)
  );
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.searchButton:hover {
  background-color: #5c5858;
  box-shadow: rgba(0, 0, 0, 0.5) 0 10px 20px;
  transform: translateY(-3px);
}

.searchButton:active {
  box-shadow: none;
  transform: translateY(0);
}

#Top-bar .right-nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

#loggerOut-status {
  display: flex;
  align-items: center;
}

.top-right-options {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin: 0 10px 0 0;
  cursor: pointer;
  transition: all 0.5s ease;
}

.top-right-options-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  width: 32px;
  height: 32px;
}

.top-right-options:hover {
  border: 1px solid #aaaaaa;
  background-color: #5b5b5b;
  border-radius: 50%;
}

.top-right-default-avatar-sign-in-container {
  display: flex;
  width: 85px;
  align-items: center;
  border-radius: 22px;
  border: 1px solid #333333;
  padding: 12px;
  cursor: pointer;
}

.top-right-default-avatar-sign-in-container:hover {
  border: 1px solid #501abd;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.loggedOut-avatar-img {
  width: 24px;
  height: 24px;
  margin: 0 5px 0 0;
}

.sign-in-word {
  align-items: center;
  color: #ffffff;
  font-size: 14px;
}

#loggedIn-status {
  display: none;
  align-items: center;
  justify-content: flex-end;
  margin: 5px 15px 0 5px;
}

#notice-message-container {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: all 0.5s ease;
  margin: 0 10px 0 10px;
  cursor: pointer;
}

.notice-message-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  width: 24px;
  height: 24px;
}

#notice-message-container:hover {
  border: 1px solid #aaaaaa;
  background-color: #5b5b5b;
  border-radius: 50%;
  transition: all 0.5s ease;
}

#userPhotoContainer {
  width: 54px;
  height: 54px;
  cursor: pointer;
  border: 1px solid #ffffff;
  overflow: hidden;
  border-radius: 50%;
  transition: box-shadow 0.3s;
}

#userPhotoContainer:hover {
  border-color: #ffffff;
  box-shadow: 0 0 10px 4px #8242cb;
  cursor: pointer;
}

.userPhoto {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: transform 0.5s ease;
  object-fit: cover;
}

#user-option-label {
  position: absolute;
  display: none;
  top: 13px;
  right: 95px;
  justify-items: start;
  align-items: center;
  background: linear-gradient(145deg, #333333, #2d2d2d);
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  width: 260px;
  max-height: auto;
  transition: all 0.3s ease, opacity 0.2s ease;

  overflow-y: auto;
  overflow-x: hidden;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  border: 1px solid rgba(80, 28, 97, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
}

#user-option-label::-webkit-scrollbar {
  width: 6px;
}

#user-option-label::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 3px;
}

#user-option-label::-webkit-scrollbar-thumb {
  background: #7351b7;

  border-radius: 3px;

  border: 1px solid #501abd;
}

#user-option-label::-webkit-scrollbar-thumb:hover {
  background: #8e68e4;
}

.user-info-bar {
  cursor: default;
  width: 100%;
  height: auto;
  padding: 15px 20px;
  background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
  border-bottom: none;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: -1;
}

.user-info-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #7351b7;
  object-fit: cover;
  box-shadow: 0 0 8px rgba(115, 81, 183, 0.4);
}

.user-info-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.user-info-text #userInfoName {
  font-size: 18px;
  color: #f0f0f0;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80%;
}

.user-info-text #userInfoEmail {
  font-size: 14px;
  color: #a0a0a0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.option-div {
  display: flex;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  height: 48px;
  width: 100%;
  padding: 0 0 0 35px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.option-div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(130, 66, 203, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.option-div:hover::before {
  opacity: 1;
}

.option-div:hover {
  background-color: #3a3a3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.option-div:active {
  transform: translateY(0);
  background-color: #2a2a2a;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.option-content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 20px;
  color: #b6b6b6;
}

.option-div:hover .option-content {
  color: #dad69c;
}

.option-content img {
  padding-left: 0;
  width: 22px;
  height: 22px;
  filter: brightness(1.5);
  transition: all 0.4s ease;
  transform: scale(1);
}

.option-div:hover .option-content img {
  transform: scale(1.1);
  filter: brightness(1.8);
}

.showCurrentPageMark {
  background-color: #454545;
  border-radius: 22px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

#sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #131313db;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-right: 2px solid #4c1c59;
  transition: left 0.4s ease, box-shadow 0.4s ease;
  z-index: 1003;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

#sidebar::-webkit-scrollbar {
  width: 5px;
}

#sidebar::-webkit-scrollbar-track {
  background: #343434;
}

#sidebar::-webkit-scrollbar-thumb {
  background: #795eaf;
}

#sidebar::-webkit-scrollbar-thumb:hover {
  background: #7351b7;
}

#sidebar.active {
  left: 0;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.7);
}

.sidebar-header {
  display: flex;
  align-items: center;
  height: 80px;
}

.sidebar-logo {
  width: 120px;
  height: auto;
  margin: 10px 0 0 20px;
}

#sidebar-close-button-container {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: all 0.5s ease;
  margin: 0 20px 0 20px;
  cursor: pointer;
}

.sidebar-close-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  transition: all 0.5s ease;
}

#sidebar-close-button-container:hover {
  border: 1px solid #aaaaaa;
  background-color: #5b5b5b;
  border-radius: 50%;
  transition: all 0.5s ease;
}

.sidebar-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#first-default-navigation {
  display: flex;
  flex-direction: column;
}

.sidebar-navigation {
  border-bottom: 1px solid #333;
  padding: 12px 18px;
}

.notice-button {
  text-align: center;
}

.sidebar-navigation ul {
  list-style: none;
  padding: 0;
}

.sidebar-navigation ul li {
  width: 190px;
  padding: 2px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.sidebar-navigation ul li img {
  margin: 0 10px 0 10px;
  width: 22px;
  height: 22px;
}

.sidebar-navigation ul li a {
  display: block;
  padding: 6px 15px;
  border-radius: 12px;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar-navigation ul li:hover {
  border-radius: 12px;
  background-color: #928595;
  color: #fff;
}

.sidebar-footer {
  padding: 0px 20px 20px;
  background-color: #131313db;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid #333;
  color: #b6b6b6;
  font-size: 14px;
  text-align: center;
}

.sidebar-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

#sidebar-footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sidebar-footer-logo {
  width: 200px;
  height: auto;
  margin: 20px 0 20px 0;
}

#sidebar-footer-top p {
  font-size: 15px;
  line-height: 2;
  color: #ffffff;
}

#sidebar-second {
  text-align: center;
  color: #cbcbcb;
  border-bottom: 1px solid #333;
}

#sidebar-second p {
  font-size: 12px;
  line-height: 1.4;
  margin: 5px 0;
}

#sidebar-footer-bottom {
  margin-top: 10px;
  border-bottom: 1px solid #333;
}

.sidebar-footer-bottom-text {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: 1fr 1fr;
  padding: 0 5px;
  gap: 5px;
}

.sidebar-footer-bottom-text li a {
  font-size: 10px;
  color: #b6b6b6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar-footer-bottom-text li a:hover {
  color: #dad69c;
}

.sidebar-footer-bottom-icon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  justify-content: center;

  gap: 15px;
  margin-top: 15px;
}

.sidebar-footer-bottom-icon a img {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sidebar-footer-bottom-icon a:hover img {
  transform: scale(1.2);
  opacity: 0.8;
}

#content {
  margin-top: 100px;
}

.musicPlayerBar {
  position: fixed;
  bottom: -100px;
  left: 0;
  min-width: auto;
  width: 100%;
  height: 91px;
  border: solid 1px #4c1c59;
  background-color: #131313;
  color: rgb(91, 71, 71);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: bottom 0.5s ease;
  z-index: 1001;
  overflow-y: hidden;
  overflow-x: auto;
}

.musicPlayerBar::-webkit-scrollbar {
  height: 6px;
}

.musicPlayerBar::-webkit-scrollbar-track {
  background: #656565;
}

.musicPlayerBar::-webkit-scrollbar-thumb {
  background: #7b1935;
}

.musicPlayerBar::-webkit-scrollbar-thumb:hover {
  background: #97222e;
}

#fixedButton {
  position: fixed;
  left: 50%;
  bottom: -2px;
  border: none;
  width: 1100px;
  transform: translate(-50%, 0);
  cursor: pointer;
  background-color: #2d2732;
  clip-path: polygon(30% 10%, 70% 10%, 100% 100%, 0% 100%);
  border-radius: 9px 9px 0 0;
  transition: bottom 0.5s ease;
  z-index: 1001;
}

#fixedButtonImage {
  width: 20px;
  height: 20px;
  transform: rotate(0deg);
}

#fixedButton:hover {
  background-color: #64308a;
}

.songAlbumImgContainer {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #1a1a1a;
  border: 2px solid #9c8db9;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.6);
}

.songAlbumImgContainer:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), inset 0 0 8px rgba(0, 0, 0, 0.6);
}

#songAlbumImg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: AlbumImgSpin 5s linear infinite;
  transition: transform 0.3s ease;
  z-index: 1;
}

#songAlbumImg:hover {
  animation-play-state: paused;
  transform: scale(1.05);
}

.songAlbumImgContainer::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #060606;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border: 1px solid #333;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  background: radial-gradient(circle, #3a3a3a 20%, #d0d0d0 60%, #a0a0a0 100%);
}

.songAlbum-button {
  position: absolute;
  left: 90px;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
}

.songAlbum-button:hover {
  transform: translateY(-50%) scale(1.1);
  border-radius: 50%;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.6),
    0 0 15px rgba(137, 112, 187, 0.7);
}

@keyframes AlbumImgSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.songNamePosition {
  position: absolute;
  top: 6px;
  left: 250px;
  width: 247px;
  overflow: hidden;
}

.songNameDisplay {
  color: #dad69c;
  font-size: 18px;
  white-space: nowrap;
  font-weight: bolder;
  display: block;
  max-width: 247px;
  position: relative;
  display: inline-block;
  white-space: nowrap;
  animation: marquee 5s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  40% {
    transform: translateX(var(--marquee-ToRightSide1));
  }

  50% {
    transform: translateX(var(--marquee-ToRightSide1));
  }

  90% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(0%);
  }
}

.songNameDisplay:hover {
  animation-play-state: paused !important;
}

.previousSong-button {
  position: absolute;
  left: 170px;
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 10px 0 10px;
  height: 10px;
  transition: transform 0.2s ease;
}

.previousSong-button:hover {
  transform: scale(1.05);
}

.play-button {
  display: "";
  position: absolute;
  left: 220px;
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 10px 0 10px;
  height: 10px;
  transition: transform 0.2s ease;
}

.play-button:hover {
  transform: scale(1.05);
}

.playing-button {
  display: none;
  position: absolute;
  left: 220px;
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 10px 0 10px;
  height: 10px;
  transition: transform 0.2s ease;
}

.playing-button:hover {
  transform: scale(1.05);
}

.nextSong-button {
  position: absolute;
  left: 270px;
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 10px 0 10px;
  height: 10px;
  transition: transform 0.2s ease;
}

.nextSong-button:hover {
  transform: scale(1.05);
}

.musicProgressBar {
  position: absolute;
  left: 340px;
  width: 200px;
  height: 8px;
  background: #333;
  border-radius: 4px;
  cursor: pointer;
  margin: 20px 10px 0 10px;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;

  --progress-value: 0%;

  &::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #fff;

    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 0 8px #6439ba, 0 0 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin-top: -5px;
    border: 2px solid #6439ba;
  }

  &::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 0 8px #6439ba, 0 0 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #fff;
  }

  &::-webkit-slider-runnable-track {
    background: linear-gradient(
      to right,
      #6439ba 0%,
      #501abd var(--progress-value, 0%),
      #333 var(--progress-value, 0%),
      #333 100%
    );
    border-radius: 4px;
    height: 8px;
    box-shadow: 0 0 5px #501abd;
  }

  &::-moz-range-track {
    background: linear-gradient(
      to right,
      #6439ba 0%,
      #501abd var(--progress-value, 0%),
      #333 var(--progress-value, 0%),
      #333 100%
    );
    border-radius: 4px;
    height: 8px;
    box-shadow: 0 0 5px #501abd;
  }

  &:hover {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5), 0 0 10px #501abd;
  }

  &:hover::-webkit-slider-thumb {
    transform: scale(1.15);
    box-shadow: 0 0 12px #6439ba, 0 0 6px rgba(0, 0, 0, 0.4);
  }

  &:hover::-moz-range-thumb {
    transform: scale(1.15);
    box-shadow: 0 0 12px #6439ba, 0 0 6px rgba(0, 0, 0, 0.4);
  }

  &:active::-webkit-slider-thumb {
    transform: scale(1.25);
    box-shadow: 0 0 15px #6439ba, 0 0 8px rgba(0, 0, 0, 0.5);
  }

  &:active::-moz-range-thumb {
    transform: scale(1.25);
    box-shadow: 0 0 15px #6439ba, 0 0 8px rgba(0, 0, 0, 0.5);
  }
}

.musicProgressTimeDisplay {
  position: absolute;
  left: 585px;
  width: 150px;
  height: 2px;
  color: #cccccc;
}

.musicProgressTimeDisplay span {
  font-size: 16px;
  font-weight: bold;
}

.musicLikeButton {
  display: block;
  position: absolute;
  left: 720px;
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 10px 0 10px;
  height: 10px;
  transition: transform 0.3s ease;
}

.musicLikeButton:hover {
  transform: scale(1.1);
}

.musicLikeButton:active {
  transform: none;
}

.volumeButton {
  display: block;
  position: absolute;
  left: 800px;
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 10px 0 10px;
  height: 10px;
  transition: transform 0.3s ease;
}

#volumeButton {
  display: block;
}

#muteButton {
  display: none;
}

.volumeButton:hover {
  transform: scale(1.1);
}

.volumeButton:active {
  transform: none;
}

.volume-slider {
  position: absolute;
  left: 840px;
  width: 150px;
  height: 10px;
  background: linear-gradient(to right, #6439ba, #501abd);
  border-radius: 5px;
  cursor: pointer;
  margin: 20px 10px 0 15px;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: 0 0 8px #6439ba;
  transition: all 0.3s ease;

  &::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 2px solid #6439ba;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 0 10px #501abd, 0 0 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin-top: -6px;
  }

  &::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: #fff;
    border: 2px solid #6439ba;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 0 10px #501abd, 0 0 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }

  &::-webkit-slider-runnable-track {
    background: linear-gradient(
      to right,
      #6439ba 0%,
      #501abd var(--value, 73%),
      #333 var(--value, 73%),
      #333 100%
    );
    border-radius: 5px;
    height: 10px;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  }

  &::-moz-range-track {
    background: linear-gradient(
      to right,
      #6439ba 0%,
      #501abd var(--value, 73%),
      #333 var(--value, 73%),
      #333 100%
    );
    border-radius: 5px;
    height: 10px;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  }

  &:hover {
    box-shadow: 0 0 12px #501abd;
  }

  &:hover::-webkit-slider-thumb {
    transform: scale(1.1);
    box-shadow: 0 0 15px #501abd, 0 0 8px rgba(0, 0, 0, 0.5);
  }

  &:hover::-moz-range-thumb {
    transform: scale(1.1);
    box-shadow: 0 0 15px #501abd, 0 0 8px rgba(0, 0, 0, 0.5);
  }
}

canvas {
  position: absolute;
  bottom: 10px;
  left: 1100px;
  width: 240px;
  height: 75px;
  background: #131313;
}

.playQueueButton {
  position: absolute;
  left: 1350px;
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 10px 0 10px;
  padding-right: 30px;
  height: 32px;
}

.playQueueButton:hover {
  transform: scale(1.1);
}

.playQueueButton:active {
  transform: none;
}

.playQueueBar {
  position: fixed;
  top: 0;
  right: -337px;
  height: 100%;
  border-left: solid 2px #4c1c59;
  background-color: #131313;
  transition: right 0.4s ease;
  box-sizing: border-box;

  z-index: 998;
}

.playQueueBarContent {
  width: 325px;
  height: 600px;
  overflow: hidden;
}

.playQueueBar h3 {
  font-size: 24px;
  display: block;
  color: #cccccc;
  font-weight: bolder;
  margin: 17px 7px 0 130px;
  display: inline-block;
}

#clearPlaylistButton {
  display: inline-block;
  margin-left: 15px;
}

.clear-playlist-img {
  width: 18px;
  height: 18px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.clear-playlist-img:hover {
  opacity: 0.7;
}

#playlistContainer {
  position: absolute;
  top: 55px;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  box-sizing: border-box;
  padding: 10px;
  max-height: 600px;
  overflow-y: auto;
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  width: 327px;
}

#playlistContainer::-webkit-scrollbar {
  width: 8px;
}

#playlistContainer::-webkit-scrollbar-track {
  background: #2a2a2a;
  border-radius: 4px;
}

#playlistContainer::-webkit-scrollbar-thumb {
  background: #6c5ce7;
  border-radius: 4px;
  transition: background 0.3s ease;
}

#playlistContainer::-webkit-scrollbar-thumb:hover {
  background: #8e7dff;
}

.playListItem {
  display: contents;
}

.playListPosition {
  display: flex;
  align-items: center;
  margin: 5px 0;
  padding: 10px 12px;
  color: #e0e0e0;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  max-width: calc(100% - 24px);
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.1s ease;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.playListPosition.playing {
  background-color: #3b2b52;
  color: #ffffff;
  font-weight: 700;
  box-shadow: inset 0 0 0 2px #6c5ce7;
}

.playListPosition:hover {
  background-color: #2e2e2e;
  color: #ffffff;
  transform: translateY(-2px);
}

.playListPosition.animate {
  overflow: hidden;
  position: relative;
}

.playListPosition.animate span {
  display: inline-block;
  animation: marqueeLoop 12s linear infinite;
  animation-play-state: paused;
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.playListPosition.animate span::after {
  content: attr(data-text);
  margin-left: 120px;
}

.playListPosition:hover.animate span {
  animation-play-state: running;
}

.playListPosition.animate span.reset {
  animation: none;
  transform: translateX(0);
}

.playlistItemsImg {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0;
}

.playlistButton {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  outline: none;
}

.playlistButton img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.playlistButton:hover {
  transform: scale(1.2);
}

.playlistButton:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.playlistButton:active {
  transform: scale(0.9);
}

@keyframes marqueeLoop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 60px));
  }
}

.musicModalWindow {
  display: none;
  position: fixed;
  z-index: 1002;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(26, 26, 26, 0.888);
}

.modalContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 537px;
  height: 537px;
  border-radius: 10px;
  overflow: hidden;
}

#musicModalWindowMusicAlbumImage {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

#musicModalWindowMusicAlbumImage:hover,
#musicModalWindowMusicAlbumImage:focus {
  transform: scale(0.9);
  border-radius: 14px;
}

.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 7px;
  background: linear-gradient(to right, #7b26ff, #a81b1b, #1d1fa9ff);
  animation: loading-progress 1.5s ease-in-out infinite,
    pulse 0.5s ease-in-out infinite;
  z-index: 1111;
  box-shadow: 0 0 15px rgb(125, 38, 255);
}

.loading-spinner-Background {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1100;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.337);
}

@keyframes loading-progress {
  0% {
    width: 0%;
  }

  50% {
    width: 70%;
  }

  100% {
    width: 100%;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

#showPersonalSongLikeInformation-window {
  display: none;
  position: fixed;
  z-index: 1112;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
}

#showPersonalSongLikeInformation-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  width: 350px;
  height: 370px;
  border-radius: 10px;
  overflow: hidden;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

#showPersonalSongLikeInformation-title {
  display: flex;
  flex-direction: row;
  border-bottom: 2px solid #7712bf;
}

.showPersonalSongLikeInformation-title-img {
  text-align: center;
  margin: 10px 0 0 10px;
}

.showPersonalSongLikeInformation-title-img img {
  width: auto;
  height: 42px;
  text-align: center;
}

#showPersonalSongLikeInformation-titleWord {
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  margin: 35px 0 0 10px;
}

#showPersonalSongLikeInformation-body-message {
  margin-top: 10px;
  color: #501abd;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

#showPersonalSongLikeInformation-body {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  width: 315px;
  height: 213px;
  overflow-x: hidden;
}

#showPersonalSongLikeInformation-body::-webkit-scrollbar {
  width: 10px;
}

#showPersonalSongLikeInformation-body::-webkit-scrollbar-track {
  background: White;
}

#showPersonalSongLikeInformation-body::-webkit-scrollbar-thumb {
  background: #795eaf;
}

#showPersonalSongLikeInformation-body::-webkit-scrollbar-thumb:hover {
  background: #7351b7;
}

.personalLikeFolderItem {
  display: flex;
  width: 270px;
  height: 41px;
  margin: 0 0 12px 20px;
  border-radius: 6px;
  transition: all 0.737s ease;
  cursor: pointer;
}

.personalLikeFolderItem:hover {
  border-radius: 6px;
  background-color: #e1e0d2;
}

.FolderItem-ChooseBox {
  width: 16px;
  height: 16px;
  border-radius: 6px;
  border: 2px solid #9284b1;
  background-color: #1c1923;
  z-index: 2;
  margin: 4px 0 0 4px;
  transition: all 0.737s ease;
}

.FolderItem-ChooseBox img {
  display: none;
  width: 14px;
  height: 14px;
  padding: 2px;
}

.personalLikeFolderItem-word {
  margin: 0 0 0 4px;
}

#confirmChangeButton {
  position: absolute;
  top: 94%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 32px;
  border-radius: 10px;
  background: rgb(81, 0, 116);
  border: 1px solid rgb(60, 0, 90);
  font-weight: bolder;
  cursor: pointer;
  transition: background 0.3s ease;
  color: #fff;
}

#confirmChangeButton:hover {
  background: rgb(60, 0, 90);
}

.no-interaction {
  pointer-events: none;
  cursor: wait !important;
}

@media (max-width: 1024px) {
  #Top-bar {
    height: 80px;
    padding: 0 12px;
  }

  .Top-bar-logo {
    max-width: 100px;
  }

  #Top-bar .center-nav {
    max-width: 400px;
  }

  #userPhotoContainer {
    width: 48px;
    height: 48px;
  }

  #playQueueBar {
    width: 320px;
    right: -320px;
  }
  #playQueueBar.active {
    right: 0;
  }
  .playQueueList {
    padding: 10px;
  }
  .playQueueList li {
    font-size: 14px;
    margin-bottom: 8px;
    padding: 10px;
  }

  .modalContent {
    width: 500px;
    height: 500px;
  }
}

@media (max-width: 768px) {
  #Top-bar {
    height: 80px;
    padding: 0 8px;
    justify-content: space-around;
  }

  .left-nav {
    flex-basis: 30%;
  }

  #Top-bar .center-nav {
    max-width: 100%;
    min-width: auto;
    height: 40px;
    margin: 10px 0;
    flex-basis: 100%;
  }

  .searchInput {
    font-size: 12px;
    padding: 10px 0 10px 15px;
  }

  .searchButton {
    width: 28px;
    height: 28px;
  }

  #Top-bar .right-nav {
    flex-basis: 30%;
    justify-content: flex-end;
  }

  #notice-message-container,
  .top-right-options {
    margin: 0 5px;
    width: 36px;
    height: 36px;
  }

  #userPhotoContainer {
    width: 42px;
    height: 42px;
  }

  #playQueueBar {
    width: 80vw;
    max-width: 300px;
    right: -80vw;
  }
  #playQueueBar.active {
    right: 0;
  }
  .playQueueList {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  #playlistContainer {
    width: 307px;
  }

  .playListPosition {
    margin: 0 0;
    padding: 4px 4px;
  }

  .playlistItemsImg {
    margin: 0 0;
  }

  .playListPosition span {
    font-size: 14px;
  }

  .playlistButton {
    padding: 5px;
  }

  .modalContent {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 480px) {
  #Top-bar {
    height: 90px;
    padding: 0 6px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .left-nav {
    flex-basis: 25%;
    display: flex;
    align-items: center;
  }

  .Top-bar-logo {
    max-width: 80px;
    min-width: 60px;
    margin-top: 5px;
  }

  #sliderToggleButton-Container {
    width: 36px;
    height: 36px;
    margin: 0 5px;
  }

  .sliderToggleButton-img {
    width: 28px;
    height: 28px;
  }

  #Top-bar .center-nav {
    max-width: 40px;
    min-width: 40px;
    height: 40px;
    margin: 0 5px;
    flex-basis: auto;
    position: relative;
    transition: all 0.3s ease;
  }

  .searchInput {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 90px;
    z-index: 1001;
    border-radius: 0;
    background-color: #1a1a1a;
    padding: 10px 15px;
    font-size: 14px;
    border: 1px solid #aaaaaa;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .searchButton {
    width: 36px;
    height: 36px;
    right: 0;
    background: none;
    border: 1px solid #aaaaaa;
    border-radius: 50%;
  }

  .searchButton img.buttonIcon {
    width: 20px;
    height: 20px;
  }

  #Top-bar .right-nav {
    flex-basis: 25%;
    justify-content: flex-end;
    gap: 5px;
  }

  #notice-message-container,
  .top-right-options {
    width: 32px;
    height: 32px;
    margin: 0 3px;
  }

  .notice-message-img,
  .top-right-options-img {
    width: 20px;
    height: 20px;
  }

  #userPhotoContainer {
    width: 36px;
    height: 36px;
  }

  .userPhoto {
    width: 100%;
    height: 100%;
  }

  #user-option-label {
    width: 200px;
    right: 10px;
    top: 65px;
  }

  .user-info-photo {
    width: 40px;
    height: 40px;
  }

  .user-info-text #userInfoName {
    font-size: 16px;
    max-width: 70%;
  }

  .user-info-text #userInfoEmail {
    font-size: 12px;
    max-width: 120px;
  }

  .option-div {
    height: 40px;
    padding: 0 0 0 20px;
  }

  .option-content img {
    width: 18px;
    height: 18px;
  }

  #playQueueBar {
    width: 90vw;
    max-width: 280px;
    right: -90vw;
    overflow-x: hidden;
  }
  #playQueueBar.active {
    right: 0;
  }
  .playQueueList li {
    font-size: 16px;
    padding: 12px;
  }
  .closePlayQueueButton {
    font-size: 24px;
    padding: 10px;
  }

  #playlistContainer {
    width: 287px;
  }

  .playListPosition {
    margin: 0 0;
    padding: 2px 2px;
  }

  .playlistItemsImg {
    margin: 0 0;
  }

  .playListPosition span {
    font-size: 12px;
  }

  .playlistButton {
    padding: 5px;
  }

  .modalContent {
    width: 200px;
    height: 200px;
  }
}
