@import url("global.css");
@import url("header.css");
@import url("footer.css");

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;

  & h1 {
    font-size: 24px;
    font-weight: 600;
  }

  & .breadcrumbs {
    & ol {
      display: flex;
      flex-wrap: wrap;
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 14px;
      font-weight: 400;

      & li+li {
        padding-left: 10px;

        &::before {
          content: "/";
          display: inline-block;
          padding-right: 10px;
          color: color-mix(in srgb, var(--default-color), transparent 70%);
        }
      }
    }
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 50px 0;
  scroll-margin-top: 78px;
  overflow: clip;

  & .title {
    margin-bottom: 22px;

    & h2 {
      font-size: 28px;
      font-weight: 600;
    }

    & p {
      font-size: 16px;
      margin: 0;
    }
  }
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

.bg-accent {
  background: var(--accent-color);
}

.bg-accent-light {
  background: var(--accent-light);
}

.bg-light {
  background: var(----background-light);
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  position: relative;
  background: var(--default-linear-btn-bg);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;

  & h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--contrast-color);
    margin: 0;
  }

  & p {
    font-size: 16px;
    color: var(--contrast-color);
    margin: 0;
    margin-top: 10px;

    & .description-title {
      color: var(--accent-color);
    }
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: auto;
  position: relative;
  padding: 20px 0;
  display: flex;
  align-items: center;
  background-size: cover;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero .container {
  position: relative;
}
.hero .social-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;

  & .social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    
    & a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 99px;
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
      font-family: var(--open-sans);
      font-size: 16px;
      background: var(--contrast-color);
      transition: 0.3s;
    }

    & a i {
      font-size: 16px;
      color: var(--accent-color);
    }

    & a:hover {
      border-color: var(--accent-color);
      background: var(--accent-color);
    }

    & a:hover i {
      color: var(--contrast-color);
    }
  }
}

.hero .track_of_week {
  position: relative;
  padding: 30px;
  border-radius: 16px;
  min-height: 340px;
  overflow: hidden;
  z-index: -1;
  display: grid;
  align-content: space-between;
}

.hero .track_of_week h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  color: var(--contrast-color);
  display: flex;
  padding: 12px;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: rgba(134, 134, 134, 0.15);
  backdrop-filter: blur(25px);
  width: fit-content;

  & i {
    font-size: 22px;
  }
}

.hero .track_details {
  display: grid;
  gap: 10px;

  & .poster {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;

    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  & .title {
    font-size: 30px;
    font-weight: 600;
    color: var(--contrast-color);
  }
}

.hero .track_details .artist_details {
  display: flex;
  align-items: center;
  padding: 8px 16px 8px 8px;
  gap: 8px;
  border-radius: 10px;
  color: var(--contrast-color);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px);
  min-width: 200px;
  width: fit-content;

  & .profile {
    border-radius: 99px;
    overflow: hidden;
    width: 46px;
  }

  & .artist {
    font-size: 18px;
    font-weight: 500;
  }

  & .followers {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--contrast-color);
    opacity: .6;
  }
}

.hero_right_bar {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;

  & .live_box {
    position: relative;
    height: 100%;
    padding: 10px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: end;

    & .preview {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      z-index: -1;

      & img {
        height: 100%;
        width: 100%;
        object-fit: cover;
      }
    }
  }

  & .hero-nav {
    display: grid;
    gap: 5px;
  }
}

.hero {
  & .spotlight {

    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    align-content: space-between;
    padding: 30px;
    aspect-ratio: 16 / 6;
    z-index: -1;
    width: 100%;
    background: #f3f3f3;

    & h1 {
      margin: 0;
      font-size: 18px;
      font-weight: 600;
      line-height: normal;
      color: var(--contrast-color);
      display: flex;
      padding: 12px;
      align-items: center;
      gap: 10px;
      border-radius: 10px;
      background: rgba(134, 134, 134, 0.15);
      backdrop-filter: blur(25px);
      width: fit-content;

      & i {
        font-size: 22px;
      }
    }

    & .spot_details {
      display: grid;
      gap: 10px;

      & .poster {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;

        & img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }

      & .title {
        font-size: 30px;
        font-weight: 600;
        color: var(--contrast-color);
      }
    }
  }
}

.hero .hero-nav .btn-shout,
.hero .hero-nav .btn-shout:focus {
  color: var(--black);
  background: var(--primary-color);

  &:hover {
    color: var(--contrast-color);
  }
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Top Ten Section
--------------------------------------------------------------*/
.top_ten .swiper .top-ten-next:after,
.top_ten .swiper .top-ten-prev:after {
  content: none;
}

.top_ten {
  & .swiper {
    & .top-ten-prev,
    & .top-ten-next {
      background: linear-gradient(90deg, transparent, #ffffff);
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      width: 70px;
      margin: 0;
      opacity: 0;
      z-index: 1;
      transition: all 0.3s ease-in-out;
      display: grid;
      justify-content: center;
      align-items: center;

      & i {
        font-size: 60px;
        color: var(--black);
        transition: all 0.3s ease-in-out;
      }

      &:hover i {
        font-size: 80px;
        color: var(--accent-color);
      }
    }
    & .top-ten-prev {
      background: linear-gradient(90deg, #ffffff, transparent);
      left: 0;
    }

    &:hover .top-ten-prev,
    &:hover .top-ten-next {
      opacity: 1;
    }
  }

  & .track_box {
    padding: 16px;
    margin-top: 13px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
    color: var(--contrast-color);
    border-radius: 16px;
    aspect-ratio: 1/1;
    display: grid;
    align-content: end;
    z-index: 1;

    &:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(transparent 40%, black 75%);
      z-index: -1;
      opacity: 0.7;
      transition: all 0.3s ease-in-out;
      border-radius: 16px;
    }

    &:hover:before {
      opacity: 1;
    }

    &:hover .preview img {
      transform: scale(1.04);
    }

    & .info_tag {
      position: absolute;
      top: -12px;
      right: 16px;
      z-index: 2;

      & .item {
        font-size: 13px;
        font-weight: 500;
        color: var(--black);
        padding: 2px 6px;
        border-radius: 4px;
        background: var(--primary-color);
        overflow: hidden;
      }
    }

    & .preview {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      z-index: -2;
      overflow: hidden;
      border-radius: 16px;

      & img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: all 0.3s ease-in-out;
      }

    }

    & .reach {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;

      & .like,
      & .share {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 14px;
      }
    }

    & .track {
      display: flex;
      align-items: center;
      gap: 10px;

      & .details {
        display: flex;
        align-items: center;
        padding: 4px 8px 4px 4px;
        gap: 8px;
        border-radius: 10px;
        color: var(--contrast-color);
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(25px);
        width: 100%;

        & .profile {
          border-radius: 99px;
          overflow: hidden;
          height: 36px;
          aspect-ratio: 1/1;

          & img {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }

        & .texts {
          width: 100%;
          max-width: 126px;
          overflow: hidden;

          & .title,
          & .artist {
            color: var(--contrast-color);
            position: relative;
            display: block;
            max-width: 100%;
          }

          & .title {
            font-size: 16px;
            font-weight: 500;
            margin: 0;
          }

          & .artist {
            font-size: 13px;
            font-weight: 500;
            opacity: 0.7;
          }
        }
      }

      & .play-track {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 48px;
        aspect-ratio: 1/1;
        background: var(--contrast-color);
        border-radius: 99px;
        cursor: pointer;

        & i {
          font-size: 24px;
          color: var(--accent-color);
          transition: all 0.3s ease-in-out;
        }

        &:hover {
          background: var(--accent-color);
        }

        &:hover i {
          color: var(--contrast-color);
        }
      }
    }
  }

  & .disable_gradient::before {
    opacity: 0 !important;
  }
}

/*--------------------------------------------------------------
# Genre Section
--------------------------------------------------------------*/
.genre-sec,
.tag-sec {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;

  & .title {
    font-size: 22px;
    font-weight: 600;
    white-space: nowrap;
    margin: 0;
  }

  & .genre-swiper,
  & .tag-swiper {
    width: 100%;

    & .swiper-wrapper {
      width: 100%;
    }

    & .swiper-slide {
      min-width: 60px;
      width: fit-content;

      & .genre-item,
      & .tag-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        font-size: 14px;
        font-weight: 600;
        color: var(--contrast-color);
        background: var(--black);
        border: 2px solid var(--black);
        border-radius: 50px;
        padding: 8px 16px;
        margin-right: 5px;
        transition: all 0.3s ease-in-out;

        &:hover {
          color: var(--black);
          background: var(--background-light);
          border: 2px solid var(--accent-color);
        }
      }

      & .tag-item {
        color: var(--black);
        background: var(--background-light);
        border: 2px solid var(--background-light);

        &:hover {
          color: var(--black);
          background: var(--background-light);
          border: 2px solid var(--accent-color);
        }
      }

      & .disable_background {
        background: #e3e3e3 !important;
        height: 50px !important;
        width: 134px !important;
      }

      & .active_genre-item,
      & .active_tag-item {
        background: var(--accent-color);
        color: var(--contrast-color);
        border: 2px solid var(--accent-color);
        
        &:hover, & .focus {
          background: var(--accent-color);
          color: var(--contrast-color);
          border: 2px solid var(--accent-color);
        }
      }

      &:last-child .genre-item,
      &:last-child .tag-item {
        margin-right: 60px;
      }
    }

    & .genre-prev,
    & .genre-next,
    & .tag-prev,
    & .tag-next {
      background: linear-gradient(90deg, transparent, #ffffff);
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      width: 60px;
      margin: 0;
      opacity: 0;
      z-index: 1;
      transition: all 0.3s ease-in-out;
      display: grid;
      justify-content: center;
      align-items: center;

      & i {
        font-size: 42px;
        height: 40px;
        color: var(--black);
        transition: all 0.3s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      &:hover i {
        font-size: 46px;
        color: var(--accent-color);
      }
    }

    & .genre-prev,
    & .tag-prev {
      background: linear-gradient(90deg, #ffffff, transparent);
      left: 0;
    }

    & .genre-next,
    &:hover .genre-next,
    &:hover .genre-prev,
    & .tag-next,
    &:hover .tag-next,
    &:hover .tag-prev {
      opacity: 1;
    }

    & .genre-prev.swiper-button-disabled,
    & .tag-prev.swiper-button-disabled {
      opacity: 0;
      width: 0px!important;
      left: -30px;
    }
  }
}

/*--------------------------------------------------------------
# Artists Section
--------------------------------------------------------------*/
.artists {
  & .artists_card {
    padding: 10px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
    color: var(--contrast-color);
    border-radius: 16px;
    aspect-ratio: 1/1;
    display: grid;
    align-content: end;
    z-index: 1;

    &:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(transparent 40%, black 75%);
      z-index: -1;
      opacity: 0.7;
      transition: all 0.3s ease-in-out;
      border-radius: 16px;
    }

    &:hover:before {
      opacity: 1;
    }

    &:hover .preview img {
      transform: scale(1.04);
    }

    & .info_tag {
      position: absolute;
      top: -12px;
      right: 16px;
      z-index: 2;

      & .item {
        font-size: 13px;
        font-weight: 500;
        color: var(--black);
        padding: 2px 6px;
        border-radius: 4px;
        background: var(--primary-color);
        overflow: hidden;
      }
    }

    & .preview {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      z-index: -2;
      overflow: hidden;
      border-radius: 16px;

      & img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: all 0.3s ease-in-out;
      }

    }

    & .reach {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;

      & .like,
      & .share {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 14px;
      }
    }

    & .details {
      display: flex;
      align-items: center;
      padding: 6px 10px;
      gap: 8px;
      border-radius: 10px;
      color: var(--contrast-color);
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(25px);
      width: 100%;

      & .profile {
        border-radius: 99px;
        overflow: hidden;
        height: 36px;
        aspect-ratio: 1/1;

        & img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }

      & .texts {
        width: 100%;
        max-width: 126px;
        overflow: hidden;

        & .name,
        & .genre {
          color: var(--contrast-color);
          position: relative;
          display: block;
          max-width: 100%;
        }

        & .name {
          font-size: 16px;
          font-weight: 500;
          margin: 0;
        }

        & .genre {
          font-size: 13px;
          font-weight: 500;
          opacity: 0.7;
        }
      }
    }

    & .play-track {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 48px;
      aspect-ratio: 1/1;
      background: var(--contrast-color);
      border-radius: 99px;
      cursor: pointer;

      & i {
        font-size: 24px;
        color: var(--accent-color);
        transition: all 0.3s ease-in-out;
      }

      &:hover {
        background: var(--accent-color);
      }

      &:hover i {
        color: var(--contrast-color);
      }
    }
  }
}

/*--------------------------------------------------------------
# Tag list Section
--------------------------------------------------------------*/

/* .tags_list {
  & .tag-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--contrast-color);
    color: black;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    padding: 5px 9px;
    transition: all 0.3s ease-in-out;
  }
  & .active_tag-item {
      background: var(--accent-color);
      color: var(--contrast-color);
  }
} */

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

.vid_box {
  position: relative;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.info_tag {
  position: absolute;
  top: -12px;
  right: 16px;
  z-index: 2;

  & .item {
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    padding: 2px 6px;
    border-radius: 4px;
    background: var(--primary-color);
    overflow: hidden;
  }
}

.vid_box .top {
  padding: 16px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  color: var(--contrast-color);
  border-radius: 10px;
  min-height: 100px;
  aspect-ratio: 16 / 9;
  display: grid;
  align-content: end;
  overflow: hidden;
  z-index: 1;

  &:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 70%, black);
    z-index: -1;
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
  }

  &:hover:before {
    opacity: 1;
  }

  &:hover .preview img {
    transform: scale(1.04);
  }

  & .preview {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -2;

    & img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      transition: all 0.3s ease-in-out;
    }
  }

  & .cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    overflow: hidden;

    & .date {
      display: flex;
      align-items: center;
      white-space: nowrap;
      gap: 5px;
      font-size: 14px;
      color: var(--contrast-color);
    }

    & .category {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      font-size: 13px;
      color: var(--contrast-color);
      padding: 2px 6px;
      border-radius: 4px;
      background: var(--accent-color);
      overflow: hidden;

      & i {
        top: 1px;
        position: relative;
      }
    }
  }
}

.vid_box .reach {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
  background: var(--background-light);
  border-radius: 10px;
  padding: 4px 16px;

  & .like,
  & .share {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 500;
  }
}

.vid_box .bottom {
  display: grid;
  overflow: hidden;

  & .title,
  & .artist {
    color: var(--black);
    display: block;
    max-width: 100%;
  }

  & .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  & .artist {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.7;
  }
}

.play-vid {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background: var(--contrast-color);
  border-radius: 99px;

  & i {
    font-size: 24px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
  }

  &:hover {
    background: var(--accent-color);
  }

  &:hover i {
    color: var(--contrast-color);
  }
}

/*--------------------------------------------------------------
# Watch Page
--------------------------------------------------------------*/

.watch {
  padding: 20px 0;
}

.video_bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.video_bar .video_player {
  position: relative;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  background: rgb(235, 235, 235);
}

.video_bar .track {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 16px;
  border-radius: 10px;
  color: var(--black);
  background: var(--background-light);
  backdrop-filter: blur(25px);
  width: 100%;

  & .details {
    display: flex;
    align-items: center;
    gap: 10px;

    & .profile {
      border-radius: 99px;
      overflow: hidden;
      min-width: 48px;
      height: 48px;
      aspect-ratio: 1/1;

      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    & .texts {
      width: 100%;
      overflow: hidden;

      & .title,
      & .artist {
        color: var(--black);
        position: relative;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        max-width: 100%;
      }

      & .title {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 0;
        max-width: 450px;
      }

      & .artist {
        font-size: 13px;
        font-weight: 500;
        opacity: 0.7;
      }
    }
  }

  & .updates {

    & .date,
    & .views {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 16px;
      color: var(--black);
    }
  }

  @media (max-width: 768px) {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;

    & .details {
      & .texts {
        & .title {
          max-width: 100%;
        }
      }
    }

    & .updates {
      width: 100%;
      display: flex;
      justify-content: space-between;
      & .date,
      & .views {
        font-size: 12px;
      }
    }
  }
}

.video_tabs {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;

  & .nav-content {
    background: var(--black2);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;

    & .nav-pills {
      gap: 10px;
      width: fit-content;

      & .nav-link {
        display: flex;
        align-items: center;
        gap: 5px;
        color: var(--contrast-color);
        font-weight: 600;
        background: var(--black3);

        &.active {
          color: var(--contrast-color);
          background: var(--u-green);
        }

        &:hover {
          background: var(--primary-color);
          color: var(--black4);
        }
      }
    }

    & .reach {
      display: flex;
      gap: 10px;

      & .like,
      & .share,
      & .comments {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 14px;
        font-weight: 600;
        padding: 8px;
        border-radius: 5px;
        color: var(--black);
        background: var(--contrast-color);
        cursor: pointer;
        transition: all 0.3s ease-in-out;

        & i {
          font-size: 22px;
          color: var(--black);
          transition: all 0.3s ease-in-out;
        }

        &:hover, &:focus {
          background: var(--accent-color);
          color: var(--contrast-color);

          & i {
            color: var(--contrast-color);
          }
        }

        &.active {
          background: var(--accent-color);
          color: var(--contrast-color);

          & i {
            color: var(--contrast-color);
          }
        }
      }
    }
  } 

  & .comment_box {
    display: grid;
    gap: 10px;

    & .comment_input {
      background: var(--background-light);
      border-radius: 10px;
      padding: 16px;

      & .theRatingHolder {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 5px;

        & p {
          margin: 0;
          font-weight: 500;
        }
      }

      @media (max-width: 768px) {
        & .theRatingHolder {
          display: block;
        }
        & p {
          margin-bottom: 10px;
        }
      }

      & .input_box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;

        & .profile {
          border-radius: 99px;
          overflow: hidden;
          min-width: 48px;
          height: 48px;
          aspect-ratio: 1/1;

          & img {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }

        & .input-group {
          border-bottom: 1px solid var(--black4);

          & .form-floating {

            & .form-control {
              background: transparent;
              border: none;
            }

            & .form-control:focus {
              box-shadow: none;
            }
          }
        }

        & .btn-send {
          background: transparent;

          & i {
            font-size: 28px;
            color: var(--black4);
          }
        }
      }
    }

    & .comment_lists {
      display: grid;
      gap: 10px;

      & .commenters {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        background: var(--background-lighter);
        border-radius: 10px;
        padding: 16px;

        & .profile {
          border-radius: 99px;
          overflow: hidden;
          min-width: 48px;
          height: 48px;
          aspect-ratio: 1/1;

          & img {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }

        & .texts {
          width: 100%;
          overflow: hidden;

          & .user,
          & .comment {
            color: var(--black);
            position: relative;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: block;
            max-width: 100%;
          }

          & .user {
            font-size: 14px;
            font-weight: 600;
            opacity: 0.7;
            display: flex;
            align-items: end;
            gap: 10px;
          }

          & .time {
            font-size: 13px;
            color: var(--black4);
            white-space: nowrap;
          }

          & .comment {
            font-size: 16px;
            font-weight: 500;
            text-wrap: auto;
          }
        }
        
        & .btn-reply {
          padding: 3px 8px;
          font-size: 13px;
          font-weight: 600;
          display: flex;
          width: fit-content;
          white-space: nowrap;
          align-items: center;
          gap: 5px;
          border-radius: 6px;
          transition: 0.3s ease;
          color: var(--black);
          background: #e7e7e7;

          &:hover {
            color: var(--black);
            background: var(--primary-color);
          }
        }
        
        & .btn-review,
        & .btn-topten {
          padding: 8px;
          font-weight: 700;
          font-size: 14px;
          display: flex;
          white-space: nowrap;
          align-items: center;
          gap: 5px;
          border-radius: 6px;
          height: 38px;
          transition: 0.3s ease;
          background: var(--accent-color);
          color: var(--contrast-color);

          &:hover {
            color: var(--black);
            background: var(--primary-color);
          }
        }
      }
    }
  }
}

.side_bar_tabs {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;

  & .nav-pills {
    background: var(--black2);
    padding: 10px;
    border-radius: 10px;
    gap: 10px;

    & .nav-link {
      color: var(--contrast-color);
      font-weight: 600;
      background: var(--black3);

      &.active {
        color: var(--contrast-color);
        background: var(--default-linear-btn-bg);
      }

      &:hover {
        background: var(--primary-color);
        color: var(--black4);
      }
    }
  }
}


/*--------------------------------------------------------------
# Spotlight Page
--------------------------------------------------------------*/
.spotlight {
  padding: 30px 0;
}

.spotlight .box {
  position: relative;
  padding: 10px;
  border-radius: 16px;
  min-height: 340px;
  display: flex;
  align-items: end;
  gap: 20px;
  height: 340px;
  background: radial-gradient(at top right, #ff000078 5%, var(--background-light) 30%);
  overflow: hidden;

  & .profile {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-width: 320px;
    aspect-ratio: 1/1;

    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  & .content {
    & .title {
      font-weight: 600;
      color: var(--black);
      margin-bottom: 16px;
    }

    & h1 {
      font-size: 38px;
      font-weight: 700;
      text-transform: uppercase;

      & span {
        font-size: 30px;
        letter-spacing: -1px;
      }
    }

    & .likes {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      font-size: 16px;
      font-weight: 600;
      color: var(--black4);

      & i {
        font-size: 22px;
        color: var(--black);
      }
    }

    & .genre-list {
      display: flex;
      align-items: center;
      gap: 5px;
      margin-bottom: 10px;

      & .btn-genre {
        background: var(--black2);
        color: var(--contrast-color);
        padding: 4px 14px;
        font-size: 14px;
        border-radius: 90px;
      }
    }

    & .btn-list {
      display: flex;
      align-items: center;
      gap: 8px;

      & .btn-play {
        color: var(--contrast-color);
        background: var(--u-green);
        border: none;
        font-weight: 600;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 8px 17px;
        border-radius: 99px;
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;

        & i {
          font-size: 20px;
          transition: transform 0.5s ease;
        }

        &::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, #000000, #EB1A2F);
          opacity: 0;
          transition: opacity 0.5s ease;
          z-index: -1;
          border-radius: 6px;
        }

        &:hover {
          color: var(--contrast-color);
        }

        &:hover::before {
          opacity: 1;
        }
      }

      & .btn-follow {
        color: var(--contrast-color);
        background: var(--accent-color);
        border: none;
        font-weight: 600;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 8px 17px;
        border-radius: 99px;
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;

        & i {
          font-size: 20px;
          transition: transform 0.5s ease;
        }

        &::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, #000000, #EB1A2F);
          opacity: 0;
          transition: opacity 0.5s ease;
          z-index: -1;
          border-radius: 6px;
        }

        &:hover {
          color: var(--contrast-color);
        }

        &:hover::before {
          opacity: 1;
        }
      }
    }
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--contrast-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3:hover {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--contrast-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--contrast-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--contrast-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# List box
--------------------------------------------------------------*/

.list-box {
  position: sticky;
  top: 120px;
}

.list-box a,
.list-box button {
  width: 100%;
  user-select: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 5px;
  border-radius: 5px;
  transition: 0.3s ease;
  background-color: #f6f6f6;
  color: var(--accent-color);
}

.list-box a.active,
.list-box button.active,
.list-box .nav-pills .nav-link.active {
  color: var(--accent-color);
  background-color: var(--accent-light);
}

.list-box a:hover,
.list-box button:hover,
.list-box .nav-pills .nav-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color)
}

.list-detail {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  background: var(--contrast-color);

  & .profile-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

    & figure {
      position: relative;
      aspect-ratio: 1/1;
      width: 90px;
      margin: 0;

      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 100%;
      }
    }

    & i {
      position: absolute;
      right: 0;
      bottom: 0;
      background: var(--contrast-color);
      border-radius: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
    }
  }
}

.social-list {
  display: flex;
  flex-direction: column;
  gap: 10px;

  & .item {
    display: flex;
    align-items: center;
    gap: 8px;

    & svg {
      width: 54px;
      padding: 8px;
      border: 1px solid #e0e0e0;
      border-radius: 5px;
    }

    & .content {
      width: 100%;

      & .name {
        font-size: 15px;
        font-weight: 500;
        color: var(--black);
      }

      & .status {
        font-size: 13px;
        color: var(--black4);
      }
    }
  }
}

/*--------------------------------------------------------------
# Wallet
--------------------------------------------------------------*/

.wallet,
.mymusic {
  & .balance-box {
    position: relative;
    background: var(--default-linear-btn-bg);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 16px;

    & p {
      color: var(--contrast-color);
    }

    & h3 {
      color: var(--contrast-color);
    }
  }

  & .btn-add {
    color: var(--accent-color);
    background: var(--contrast-color);
    border: none;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 14px;
    min-width: 76px;
    border-radius: 50px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;

    & i {
      font-size: 20px;
      transition: transform 0.5s ease;
    }

    &:hover {
      color: var(--black);
      background: var(--primary-color);
    }

    &:hover::before {
      opacity: 1;
    }
  }
}

.track-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;

  & figure {
    position: relative;
    aspect-ratio: 1/1;
    width: 90px;
    margin: 0;

    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 100%;
    }
  }

  & i {
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--contrast-color);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  }
}

.addFund {
  & .amount-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 16px;

    & .btn-amount {
      background: var(--primary-color);
      font-family: var(--heading-font);
      font-weight: 600;
      font-size: 18px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 38px;
      border-radius: 6px;
      transition: 0.5s;
      border: none;

      &:hover {
        color: var(--contrast-color);
        background: var(--default-linear-btn-bg);
      }
    }
  }

  & .btn.proceed {
    color: var(--contrast-color);
    background: green;

    &:hover {
      color: var(--contrast-color);
      background: var(--default-linear-btn-bg);
    }
  }

  & .btn.disabled,
  & .btn:disabled,
  & fieldset:disabled .btn {
    color: var(--contrast-color);
    opacity: .3;
  }

  & .selected-amount {
    text-align: center;

    & span {
      display: block;
      font-size: 0.9rem;
      color: #6c757d;
    }

    & strong {
      display: block;
      font-size: 2rem;
      font-weight: 700;
      color: green;
      margin-top: 0.25rem;
    }
  }

  & .proceed-box {
    display: grid;
    justify-items: center;
    gap: 10px;
  }

  & .card-input {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 16px;
    background: #f8f9fa;
  }

  & .pay-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  & .btn-pay {
    background: green;
    font-size: 18px;
    width: 100px;
  }
}


/*--------------------------------------------------------------
# Datatables
--------------------------------------------------------------*/

.datatable-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.dataTables_filter {
  display: flex;
  align-items: center;
}

.dataTables_filter input {
  margin-right: 8px;
}

.dataTables_length select {
  padding: 4px;
}

table.table.dataTable {
  font-size: 14px;
}

table.table.dataTable>thead>tr,
table.table.dataTable>tbody>tr {
  vertical-align: middle;
}

table.table.dataTable>thead>tr>th:first-child {
  justify-items: center;
}

table.table.dataTable>thead>tr>th:first-child .dt-column-title,
table.table.dataTable>thead>tr>th:first-child .dt-column-order {
  display: none;
}

table.table.dataTable>tbody>tr.selected>* {
  box-shadow: inset 0 0 0 9999px rgb(246 207 208);
}

table.table.dataTable>tbody>tr td:first-child {
  border-radius: 5px 0 0 5px;
}

table.table.dataTable>tbody>tr td:last-child {
  border-radius: 0 5px 5px 0;
}

table.table.dataTable .profile,
table.table.dataTable .track,
table.table.dataTable .album {
  display: flex;
  align-items: center;
  gap: 8px;

  & img {
    border-radius: 100%;
    width: 34px;
    height: 34px;
  }

  & .name {
    font-size: 15px;
    font-weight: 500;
  }

  & .mail {
    font-size: 13px;
    color: var(--black3);
  }
}

table.table.dataTable .role-badge {
  background: #e9e9e9;
  border-radius: 5px;
  font-size: 13px;
  padding: 4px 8px;
  display: inline;

  &[data-role="user"] {
    background: #f1f1f1;
  }

  &[data-role="artist"] {
    background: #f2dfd6;
  }

  &[data-role="admin"] {
    background: #eacdcd;
  }
}

table.table.dataTable .status-icon {
  color: green;
  font-size: 22px;
  -webkit-text-stroke: medium;

  & .bx-x {
    color: red;
  }
}

table.table.dataTable .action {
  display: flex;
  align-items: center;
  gap: 4px;
}

table.table.dataTable {

  & .btn-icon,
  & .btn-icon:focus {
    color: var(--contrast-color);
    background: var(--default-linear-btn-bg);
    border: none;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-width: 36px;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;

    & i {
      font-size: 16px;
      transition: transform 0.5s ease;
      color: var(--contrast-color);
    }

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, #000000, #EB1A2F);
      opacity: 0;
      transition: opacity 0.5s ease;
      z-index: -1;
      border-radius: 6px;
    }

    &:hover {
      color: var(--contrast-color);
    }

    &:hover::before {
      opacity: 1;
    }
  }
}

#roletable {
  & .count {
    color: var(--black);
  }

  & .date {
    color: var(--black);
  }

  & .role-details {
    & .role-name {
      font-size: 15px;
      font-weight: 500;
      color: var(--black);
    }

    & .description {
      font-size: 13px;
      color: var(--black3);
    }
  }
}

/*--------------------------------------------------------------
# login-page
--------------------------------------------------------------*/

.login-page {
  min-height: 100vh;

  & .left-section {
    background-color: #f8f9fa;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    margin: 0 auto;
    position: sticky;
    top: 0;

    & .image {
      width: 100%;
      height: 100%;
      border-radius: 10px;
      position: absolute;
      padding: 14px 0;
      left: 0;
      top: 0;
      overflow: clip;
      z-index: -1;

      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
      }
    }

    & .logo {
      display: flex;
      align-items: center;

      & img {
        max-height: 58px;
        margin-right: 8px;
      }

      & span {
        color: var(--contrast-color);
        text-transform: uppercase;
        line-height: 20px;
        font-size: 18px;
        font-weight: 500;
      }
    }

    & .quote {
      & h2 {
        font-size: 18px;
        color: #666;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      & p {
        font-size: 28px;
        font-weight: 300;
        line-height: 1.4;
        color: #333;
      }
    }
  }

  @media (max-width: 768px) {
    & body {
      flex-direction: column;
    }

    & .left-section {
      padding: 30px;
      height: auto;
    }

    & .left-content {
      max-width: 100%;
    }

    & .image {
      & img {
        border-radius: 10px;
        filter: blur(20px);
      }
    }

    & .logo {
      justify-content: center;

      & img {
        max-height: 48px;
      }

      & span {
        font-size: 16px;
      }
    }
  }
}

.login_sec {

  & .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    padding: 10px 18px;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 24px;
    border-radius: 10px;

    & img {
      max-height: 58px;
      margin-right: 8px;
    }

    & span {
      color: var(--contrast-color);
      text-transform: uppercase;
      line-height: 20px;
      font-size: 18px;
      font-weight: 500;
    }
  }

  &.login_page {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: auto;
    padding: 60px 0;
  }

  & .form {
    margin: 0 auto;
  }

  & .welcome {
    margin-bottom: 30px;

    & h1 {
      font-size: 28px;
      margin-bottom: 10px;
      color: #333;
    }

    & p {
      color: #666;
    }
  }

  & form {
    min-width: 340px;
  }

  & .form-group {
    margin-bottom: 20px;
  }

  & .options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    font-size: 14px;
  }

  & .forgot-password {
    & a {
      color: #4a6bff;
      text-decoration: none;
    }
  }

  & .login-btn {
    width: 100%;
    padding: 14px;
    background-color: #4a6bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 20px;
  }

  & .google-btn {
    width: 100%;
    padding: 12px;
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;

    & img {
      width: 20px;
      margin-right: 10px;
    }
  }

  & .signup-link {
    text-align: center;
    color: #666;

    & a {
      color: #4a6bff;
      text-decoration: none;
      font-weight: 500;
    }
  }

  & .sign_with {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 0 0;

    & .btn-item {
      width: 48px;
      height: 48px;
      border-radius: 50px;
      background: #f4f4f4;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: .3s ease;

      & i {
        font-size: 20px;
        color: var(--accent-color);
      }

      &:hover {
        background: var(--accent-color);

        & svg {
          color: var(--contrast-color);
          filter: brightness(0) invert(1);
        }
      }
    }
  }

  & .nav {
    gap: 5px;

    & .nav-link {
      background: #f4f4f4;
      color: var(--accent-color);
      border: 2px solid transparent;
      width: 148px;
      height: 70px;
      display: flex;
      align-items: end;
      transition: .3s ease;

      &.active {
        background: #f4f4f4;
        border: 2px solid var(--accent-color);
      }

      &:hover {
        border: 2px solid var(--accent-color);
      }
    }
  }

  @media (max-width: 768px) {

    & .right-section {
      padding: 30px;
      height: auto;
    }
  }
}

.genres_list {
  margin-top: 10px;
}

.cursor-pointer {
  cursor: pointer;
}

.tag_skelton_progress {
  height: 34px;
  width: 90px;
}

.skeleton {
  background-color: #e3e3e3;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.skeleton::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  height: 100%;
  width: 150px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 1.8s infinite;
}

@keyframes shimmer {
  0% {
    left: -150px;
  }

  100% {
    left: 100%;
  }
}

/* 
select2 multiselect 
*/

.form-floating-select2 {
  position: relative;

  &>label {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    padding: 1rem 0.75rem;
    overflow: hidden;
    text-align: start;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    color: #6c757d;
  }

  /* When select has focus or value */
  & .active>label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  }

  /* Select2 container */
  & .select2-container {
    width: 100% !important;
  }

  /* Multi-select styling */
  & .select2-selection--multiple {
    display: flex!important;
    align-items: center;
    padding: 5px!important;
    min-height: 58px !important;
    padding: 1.625rem 0.75rem 0.625rem 0.75rem !important;
    border: 1px solid #ced4da !important;
    border-radius: 0.375rem !important;
    background-color: #fff !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }

  & .select2-selection--multiple:hover {
    border-color: #ced4da !important;
  }

  & .select2-selection__rendered {
    gap: 2px;
    flex-wrap: nowrap!important;
    display: flex;
    align-items: center;
  }

  & .select2-selection__choice {
    white-space: nowrap;
    margin: 0!important;
    padding: 2px 6px!important;
    font-size: 14px !important;
    background-color: var(--accent-color) !important;
    border: none !important;
    color: #fff !important;

    & .select2-selection__choice__display {
      font-size: 14px;
    }

    & .select2-selection__choice__remove {
      color: #fff !important;
      filter: brightness(0) invert(1);
      width: 10px !important;
      height: 10px !important;
      margin-right: 8px !important;

      &:hover {
        filter: brightness(0.5) invert(0);
      }
    }
    
    /* Remove the × button from count display */
    &.select2-selection__count .select2-selection__choice__remove {
      display: none!important;
    }
  }
  

  /* Search input inside multi-select */
  & .select2-search--inline {
    margin: 0;
  }

  & .select2-search__field {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    min-width: 150px;
  }

  /* Focus state */
  & .select2-container--focus .select2-selection--multiple,
  & .select2-container--open .select2-selection--multiple {
    border-color: #86b7fe !important;
    outline: 0 !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
  }

  /* Placeholder */
  & .select2-selection__placeholder {
    color: transparent !important;
  }

  /* Dropdown */
  & .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--accent-color) !important;
    color: #fff;
  }
  & .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected, .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
    color: #fff;
    background-color: var(--accent-color) !important;
  }

  & .select2-dropdown {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
  }
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected, .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
  background-color: var(--accent-color) !important;
}


.track_of_week, .theWeekTopTrack, .video_link , .video_link_next {
  cursor: pointer !important;
}