@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: 60px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

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

  & p {
    font-size: 16px;
    color: var(--contrast-color);
    margin: 0;
    
    & .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 .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(255, 255, 255, 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;
  }
  
  & .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);
  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 .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 .swiper-button-next:after,
.top_ten .swiper .swiper-button-prev:after {
  content: none;
}
.top_ten .swiper {
  & .swiper-button-next {
    background: linear-gradient(90deg, transparent, #ffffff);
    top: 0;
    right: 0;
    height: 100%;
    width: 100px;
    margin: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;

    & i {
      font-size: 60px;
      color: var(--black);
      transition: all 0.3s ease-in-out;
    }
    &:hover i {
      font-size: 80px;
      color: var(--accent-color);
    }
  }
  &:hover .swiper-button-next {
    opacity: 1;
  }
}

.top_ten .track_box {
  padding: 16px;
  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;
  overflow: hidden;
  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;
  }

  &:hover:before {
    opacity: 1;
  }

  &:hover .preview img {
    transform: scale(1.04);
  }
}
.top_ten .track_box .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;
  }
}
.top_ten .track_box .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;
  }
}
.top_ten .track_box .track {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top_ten .track_box .track .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;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      display: block;
      max-width: 100%;
    }
    & .title {
      font-size: 16px;
      font-weight: 500;
      margin: 0;
    }
    & .artist {
      font-size: 13px;
      font-weight: 500;
      opacity: 0.7;
    }
  }
}
.top_ten .track_box .track .play-track {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  aspect-ratio: 1/1;
  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);
  }
}

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

.vid_box {
  position: relative;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}
.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;

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

    & .category {
      font-size: 14px;
      color: var(--contrast-color);
      padding: 4px 8px;
      border-radius: 5px;
      background: var(--accent-color);
    } 
  }
}

.vid_box .reach {
  display: flex;
  justify-content: space-between;
  align-items: center;
  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;

  & .title,
  & .artist {
    color: var(--black);
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    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: grid;
  gap: 10px;
}

.video_bar .video_player {
  position: relative;
  padding: 30px;
  border-radius: 10px;
  min-height: 340px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  background: var(--accent-color);
}

.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;
      }
      & .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);
    }
  }
}

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

  & .like, & .share, & .comments {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 600;
    color: var(--black4);

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

.video_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(--u-green);
      }

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

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

    & .comment_input{
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      background: var(--background-light);
      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;
        }
      }

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

          & .form-control {
            background: transparent;
          }
          & .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-light);
        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: 13px;
            font-weight: 600;
            opacity: 0.5;
          }
          & .comment {
            font-size: 16px;
            font-weight: 500;
            text-wrap: auto;
          }
        }

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

.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;
      }
    }
    & p {

    }
    & .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 {
  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;
}

.list-box a.active {
  background-color: var(--accent-light);
}

.list-box a: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);
      }
    }
    & .btn-able {}
  }
}