.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 1000;
  background: transparent;
  transition: background-color 0.3s ease;
}

.header.scrolled {
  background: rgba(28, 27, 33, 0.9);
}

.header__container {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 65px;
  align-items: center;
}

.menu__list {
  display: flex;
  gap: 58px;
}

.menu__link {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #fff;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.menu__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #7f67be;
  transform: translateX(-50%) scale(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.menu__link:hover {
  color: #7f67be;
}

.menu__link:hover::after {
  transform: translate(-50%) scale(1);
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-button span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
}

/*Section newSingle*/

.main__newSingle {
  position: relative;
  padding-top: 435px;
  height: 1000px;
  background-image: url("../img/BackgroundImage.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.main__newSingle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.newSingle__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.newSingle__title {
  margin-bottom: 54px;
}

.title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

.newSingle__title-two {
  font-size: 100px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 3px white;
  -webkit-text-fill-color: transparent;
  margin-bottom: 92px;
}

.music {
  display: flex;
  align-items: center;
  position: relative;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.move-line {
  display: none;
}

.play {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.badge {
  width: 25px;
  height: 25px;
  background-color: #fff;
  clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
  transition: all 0.5s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play.active .badge {
  background-color: transparent;
  clip-path: none;
}

.play.active::before,
.play.active::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 18px;
  background-color: #fff;
  border-radius: 2px;
  opacity: 0;
}

.play.active::before {
  left: 30%;
  opacity: 1;
}

.play.active::after {
  right: 30%;
  opacity: 1;
}

.line {
  position: relative;
  background-color: #fff;
  width: 80%;
  height: 3px;
  left: 10px;
}

.slider {
  background-color: #7f67be;
  height: 3px;
  width: 0%;
  border-radius: 2px;
  position: relative;
  transition: width 0.1s ease;
}

.slider-handle {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: #7f67be;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease, left 0.1s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  left: 0;
}

.slider-handle:active {
  transform: translateY(-50%) scale(1.2);
}

.line:hover .slider-handle {
  opacity: 1;
}

.slider-handle:active {
  transform: translateY(-50%) scale(1.2);
}

.counter {
  position: absolute;
  font-size: 18px;
  right: 0;
}

.newSingle__items {
  display: flex;
  gap: 30px;

  position: relative;
  top: 150px;
}
.newSingle__item {
  position: relative;
  width: 350px;
}
.newSingle__image {
  max-width: 350px;
}

.newSingle__image img {
  border-radius: 25px 0px 25px 0px;
  max-width: 100%;
}

.newSingle__content {
  position: absolute;
  bottom: 0;
  max-width: 350px;
  min-height: 90px;
  width: 100%;
  border-radius: 25px 0px 25px 0px;
  padding: 20px;
  background-color: rgb(127, 103, 190, 0.6);
}
.newSingle__text {
  font-size: 15px;
  max-width: 340px;
  line-height: 1.4;
}

.newSingle__text--two {
  max-width: 170px;
}

.newSingle__text--three {
  max-width: 200px;
}

/*Bright Section*/

.main__bright {
  padding-top: 400px;
  padding-bottom: 75px;
}
.bright__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bright__content {
  overflow: hidden;
}
.bright__title {
  margin-bottom: 70px;
}

.bright__title img {
  margin: 10px;
}

.bright__text {
  max-width: 520px;
  margin-bottom: 67px;
}
.text {
  line-height: 1.5;
  color: #bdb8b8;
  font-size: 16px;
}
.bright__text-one {
  margin-bottom: 29px;
}
.bright__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 500px;
}
.bright__item {
  font-size: 18px;
}

.bright__item img {
  margin: -5px 10px 0px 0px;
}

.bright__images {
  position: relative;
}

.bright__image-one {
  max-width: 350px;
  border-radius: 30px 0px 30px 0px;
  position: absolute;
  right: 70px;
  top: -70px;
  z-index: 1;
}

.bright__image-second {
  border-radius: 30px 0px 30px 0px;
  filter: brightness(35%);
}

/*Section PopULove*/

.main__popULove {
  position: relative;
  padding-top: 200px;
  padding-bottom: 100px;
}

.popULove__container {
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 35px 0px 35px 0px;
  height: 313px;
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.popULove__content {
  max-width: 470px;
  position: relative;
}
.popULove__text {
  color: #fff;
  border-bottom: 1px solid #bdb8b8;
  margin-bottom: 30px;
  line-height: 1.6;
  padding-bottom: 30px;
}

.popULove__content::before {
  content: "";
  background: url("../img/PopULove/Decor.svg") 0 0 / 100% no-repeat;
  width: 122px;
  height: 122px;
  position: absolute;
  top: -5px;
  left: -5px;
}

.popULove-link {
  font-size: 18px;
  font-weight: 600;
  color: #7f67be;
  transition: all 0.3s ease 0.3s;
}

.popULove-link:hover {
  text-decoration: underline;
  color: #9178cf;
  transition: all 0.3s ease 0.3s;
}

.popULove__image img {
  border-radius: 35px 0px 35px 0px;
}

/*Section Tracks*/

.main__tracks {
  padding-top: 200px;
  padding-bottom: 100px;
}

.tracks__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tracks__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  height: auto;
  padding: 20px;
  border-radius: 50%;
}

.vibration-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(127, 103, 190, 0.7),
    rgba(157, 78, 221, 0.7),
    rgba(199, 125, 255, 0.7)
  );
  opacity: 0;
  z-index: 1;
  border-radius: inherit;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.vibration-effect.active {
  opacity: 0.5;
  animation: vibrate 1s infinite alternate ease-in-out;
}

@keyframes vibrate {
  0% {
    transform: scale(1) rotate(0deg);
    filter: blur(0px) brightness(1);
  }
  25% {
    transform: scale(1.02) rotate(0.5deg);
    filter: blur(1px) brightness(1.1);
  }
  50% {
    transform: scale(1.05) rotate(-0.5deg);
    filter: blur(1.5px) brightness(1.2);
  }
  75% {
    transform: scale(1.02) rotate(0.3deg);
    filter: blur(1px) brightness(1.1);
  }
  100% {
    transform: scale(1) rotate(0deg);
    filter: blur(0px) brightness(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
}

.tracks__image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.tracks__content {
  width: 100%;
  max-width: 450px;
}
.tracks__title {
  margin-bottom: 80px;
}

.tracks__title img {
  margin: 10px;
}

.music-two {
  margin-bottom: 55px;
}

.line-two {
  position: relative;
  background-color: #fff;
  width: 80%;
  height: 3px;
  left: 10px;
  max-width: 250px;
}

/*===============*/

/*================*/

.play-two {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.badge-two {
  width: 25px;
  height: 25px;
  background-color: #fff;
  clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
  transition: all 0.5s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-two.active .badge {
  background-color: transparent;
  clip-path: none;
}

.play-two.active::before,
.play-two.active::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 18px;
  background-color: #fff;
  border-radius: 2px;
  opacity: 0;
}

.play-two.active::before {
  left: 30%;
  opacity: 1;
}

.play-two.active::after {
  right: 30%;
  opacity: 1;
}

/*================*/

.play-two.active .badge-two {
  background-color: transparent;
  clip-path: none;
}

.play-two.active::before {
  left: 30%;
}

.play-two.active::after {
  right: 30%;
}

.line-two .slider-handle-two {
  opacity: 1;
}

/*==================*/

.tracks__list {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 28px;
  margin-bottom: 70px;
}

.tracks__item {
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.tracks__item span {
  color: #bdb8b8;
  font-size: 14px;
  margin-right: 40px;
  width: 30px;
  text-align: right;
  display: inline-block;
}

.tracks__item.active {
  color: #7f67be;
}

.tracks__follow {
  display: flex;
  gap: 44px;
  align-items: center;
}

.follow__text {
  font-size: 24px;
}
.follow__item {
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease 0.3s;
}

.follow__item:hover {
  color: #7f67be;
}

.follow__item img {
  margin: -3px 5px 0px 0px;
}

/*Section Gallery*/

.main__gallery {
  padding-top: 100px;
  padding-bottom: 100px;
}

.gallery__container {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.gallery__image img {
  border-radius: 35px 0px 35px 0px;
}

.gallery__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.gallery__images {
  display: flex;
  gap: 30px;
}

.gallery__item {
  position: relative;
}

.gallery__text {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  font-size: 24px;
  text-align: center;
  color: #7f67be;
  width: 100%;
  border-radius: 25px 0px 25px 0px;
  padding: 20px;
}

/*Section Slider-Content*/

.main__sliders-content {
  padding-top: 100px;
  padding-bottom: 100px;
}

.sliders-content__container {
  position: relative;
  display: flex;
  align-items: center;
}
.swiper {
  overflow: visible;
  width: 100%;
}

.swiper-slide {
  height: auto;
  box-sizing: border-box;
}

.slide__item {
  background-color: #2f2b2b;
  max-width: 350px;
  border-radius: 35px 0px 35px 0px;
}
.slide__image {
  max-width: 350px;
  /* width: 100%;
  flex-shrink: 0; */
}

.slide__image img {
  max-width: 100%;
  height: auto;
  border-radius: 35px 0px 35px 0px;
  display: block;
}

.slide__content {
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.slide__title {
  font-size: 18px;
  color: #a7a2a2;
  margin-bottom: 33px;
}
.slide__text {
  font-size: 18px;
  margin-bottom: 46px;
}
.slide__info {
  font-size: 16px;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: auto;
}
.slide__date {
  color: #a7a2a2;
  margin: 0px 0px -10px 0px;
  flex-grow: 1;
}
.slide__tickets {
  padding: 25px 52px;
  border-radius: 35px 0px 35px 0px;
  background-color: #7f67be;
  position: absolute;
  right: -35px;
  bottom: -35px;
}

.custom-btn {
  position: absolute;
  cursor: pointer;
  padding: 26px 10px;
  border: 1px solid #bdb8b8;
  border-radius: 20px 0px 20px 0px;
  transition: all 0.2s;
}

.custom-btn:hover {
  background-color: rgba(127, 103, 190, 0.5);
}

.custom-prev-btn {
  left: -50px;
}
.custom-next-btn {
  right: -50px;
}

.custom-prev-btn img,
.custom-next-btn img {
  width: 20px;
}

/*Footer*/

.footer {
  padding-top: 100px;
}
.footer__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer__logo {
  margin: 0 auto;
  margin-bottom: 67px;
}

.footer__info {
  font-size: 18px;
  display: flex;
  gap: 10px;
  margin: 0 auto;
  margin-bottom: 25px;
}

.footer__info-two {
  margin-bottom: 67px;
}

.footer__items {
  margin: 0 auto;
  display: flex;
  gap: 30px;
  margin-bottom: 70px;
}
.footer__item {
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: all 0.2s;
}

.footer__item:hover {
  background-color: #2f2b2b;
}

.footer__link {
  width: 44px;
  height: 44px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #7f67be;
  transition: all 0.2s;
}

.footer__link:hover {
  background-color: #674fa5;
}

.footer__link img {
  width: 24px;
  height: 24px;
}

.footer-text {
  text-align: center;
  font-size: 13px;
  color: #696262;
  padding: 15px 0px;
}

@media (max-width: 600px) {
  .footer {
    padding-top: 60px;
  }

  .footer__logo {
    margin-bottom: 47px;
  }

  .footer__info {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .footer__info-two {
    margin-bottom: 47px;
  }

  .footer__items {
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
}

@media (max-width: 420px) {
  .footer__info {
    font-size: 14px;
  }
}
