html {
  font-family: Nunito, sans-serif;
  font-size: 16px;
}

body {
  background-color: #160829;
  color: #fff;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.fancy-link {
  background-image: linear-gradient(90deg, currentColor 50%, transparent 50%);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 200% 1px;
  transition: background-position-x 0.2s ease;
}
.fancy-link:hover {
  background-position: 0 100%;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  width: calc(100% - 30px);
}

.btn {
  background: #33adff linear-gradient(90deg, rgba(0, 0, 0, 0.2) 50%, transparent 50%) center no-repeat;
  background-size: 200%;
  background-position-x: 100%;
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  padding: 17px 25px;
  text-align: center;
  transition: background-position 0.2s ease;
}
.btn:hover {
  background-position-x: 0;
}

.collection {
  padding: 80px 0;
}
.collection--alt .collection__img-container {
  mask-image: linear-gradient(180deg, #000 4.43%, transparent 100%);
  -webkit-mask-image: linear-gradient(270deg, #000 4.43%, transparent 100%);
}
.collection__title {
  font-size: 2rem;
  margin: 0 0 40px;
  text-align: center;
}
.collection__list {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(auto-fill, 384px);
  grid-template-rows: repeat(auto-fit, 100px);
  justify-content: center;
}
.collection__item {
  border-radius: 8px;
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.collection__item:hover .collection__name {
  background-position-x: 0;
}
.collection__item:hover .collection__img {
  transform: scale(1.05);
}
.collection__name {
  background: linear-gradient(90deg, #33adff 50%, #160829 50%) 100% 50%;
  background-size: 205% 100%;
  border-radius: 0 8px 8px 0;
  font-size: 1.125rem;
  font-weight: 700;
  left: 0;
  padding: 6px 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background-position-x 0.2s ease;
  z-index: 3;
}
.collection__img-container {
  height: 100%;
  width: 100%;
  z-index: 1;
}
.collection__img {
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.2s ease;
  width: 100%;
}

.products {
  margin-bottom: 60px;
}
.products__list-name {
  font-size: 2rem;
  margin: 40px 0;
  text-align: center;
}
.products__list {
  margin: 0 -15px;
  position: relative;
}
@media (min-width: 810px) {
  .products__list {
    margin: 0 auto;
    max-width: 710px;
  }
}
@media (min-width: 1052px) {
  .products__list {
    max-width: 952px;
  }
}
@media (min-width: 1297px) {
  .products__list {
    max-width: 1197px;
  }
}
@media (min-width: 1540px) {
  .products__list {
    max-width: 1440px;
  }
}
.products__btn {
  aspect-ratio: 1/1;
  backdrop-filter: blur(100px);
  background: rgba(0, 0, 0, 0.2) url(/assets/img/chevron.24a15657.svg) center no-repeat;
  background-size: 28px 28px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  opacity: 1;
  position: absolute;
  top: 110px;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  visibility: visible;
  width: 46px;
  z-index: 2;
}
.products__btn:disabled {
  opacity: 0;
  visibility: hidden;
}
.products__btn:hover {
  transform: translateY(-50%) scale(1.15);
}
.products__btn--prev {
  left: 15px;
  transform: translateY(-50%) scale(-1);
}
.products__btn--prev:hover {
  transform: translateY(-50%) scale(-1.15);
}
.products__btn--next {
  right: 15px;
}
@media (min-width: 810px) {
  .products__btn--prev {
    left: -23px;
  }
  .products__btn--next {
    right: -23px;
  }
}
.products__list-wrapper {
  column-gap: 24px;
  display: flex;
  flex-wrap: nowrap;
  height: 325px;
  overflow: auto visible;
  padding: 0 15px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  z-index: 1;
}
.products__list-wrapper::-webkit-scrollbar {
  height: 0;
  width: 0;
}
@media (min-width: 810px) {
  .products__list-wrapper {
    padding: 0;
  }
}
.products__item {
  display: block;
  flex-shrink: 0;
  font-size: 0;
  scroll-snap-align: center;
  width: 220px;
}
.products__item:hover .products__cover-img {
  transform: scale(1.05);
}
.products__item:hover .products__title {
  background-position-x: 0;
}
@media (min-width: 810px) {
  .products__item {
    scroll-snap-align: start;
  }
}
.products__cover {
  aspect-ratio: 1/1;
  border-radius: 4px;
  display: block;
  overflow: hidden;
  width: 100%;
}
.products__cover-img {
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.2s ease;
  width: 100%;
}
.products__title {
  background: linear-gradient(90deg, currentColor 50%, transparent 50%) 100% 100% no-repeat;
  background-size: 200% 1px;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin: 8px 0 4px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-position-x 0.2s ease;
  white-space: nowrap;
  width: fit-content;
}
.products__author {
  display: block;
  font-size: 0.875rem;
  margin: 4px 0 10px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.products__rating {
  align-items: center;
  color: #bbb7c5;
  column-gap: 4px;
  display: flex;
  font-size: 0.875rem;
}
.products__rating::before {
  content: url(/assets/img/star.c5b0fa92.svg);
  height: 18px;
  width: 18px;
}

@keyframes accordion-reveal {
  from {
    height: 0;
    overflow: hidden;
  }
  to {
    height: var(--accordion-body-height, auto);
    overflow: hidden;
  }
}
@keyframes accordion-hide {
  from {
    height: var(--accordion-body-height, auto);
    overflow: hidden;
  }
  to {
    height: 0;
    overflow: hidden;
  }
}
.accordion {
  background: #fff;
  border-radius: 8px;
  box-shadow: 4px 0 10px rgba(0, 0, 0, 0.08);
}
.accordion__title {
  align-items: center;
  background: transparent;
  border: 0;
  color: #000;
  column-gap: 15px;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  justify-content: space-between;
  margin: 0;
  padding: 9px 16px;
  text-align: left;
  width: 100%;
}
.accordion__arrow {
  fill: #000;
  flex-shrink: 0;
  height: 24px;
  transition: fill 0.2s ease, transform 0.2s ease;
  width: 24px;
}
.accordion__body {
  animation-duration: 0.2s;
  animation-timing-function: ease;
  height: 0;
  overflow: hidden;
  transition: height 0.2s ease;
}
.accordion__content {
  font-size: 16px;
  padding: 0 16px 9px;
}
.accordion__content a {
  color: #33adff;
}
.accordion__content > *:first-child {
  margin-top: 0 !important;
}
.accordion__content > *:last-child {
  margin-bottom: 0 !important;
}
.accordion[data-state=open] .accordion__arrow {
  fill: #33adff;
  transform: rotateZ(180deg);
}
.accordion[data-state=open] .accordion__body {
  animation-name: accordion-reveal;
  height: auto;
  overflow: visible;
}
.accordion[data-state=closed] .accordion__body {
  animation-name: accordion-hide;
}
@media (min-width: 992px) {
  .accordion__title {
    font-size: 22px;
    padding: 20px 24px;
  }
  .accordion__content {
    padding: 0 24px 20px;
  }
}

:root {
  --color-green: #30fcb3;
  --color-pink: #d518ff;
}

html, body {
  min-height: 100%;
}

body {
  background: linear-gradient(180deg, #2C0E5C 16.5%, #000000 87.25%);
  color: #fff;
}

.fancy-link {
  color: var(--color-green);
}

.video {
  border-radius: 8px;
  margin: 0 auto 50px;
  max-width: 840px;
  overflow: hidden;
  position: relative;
}
.video::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.video > iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.video-title {
  margin: 24px 0;
  text-align: center;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none !important;
  height: 0 !important;
  width: 0 !important;
}

@media (min-width: 768px) {
  .video {
    margin-bottom: 100px;
  }
}
.header {
  background: url(/assets/img/header.7e9207fc.png) center bottom no-repeat, linear-gradient(156deg, #380088 5.2%, #000000 66.4%);
  background-size: auto 440px, 100% 100%;
  padding-bottom: 440px;
}
.header__container {
  display: grid;
}
.header__content {
  padding: 24px 0 0;
}
.header__background {
  display: none;
  margin: 0 -15px;
  position: relative;
  z-index: 1;
}
.header__bg-img {
  position: absolute;
  transform: translateX(-50%);
}
.header__bg-img--1 {
  top: 0;
  left: 50%;
}
.header__bg-img--2 {
  top: 90px;
  left: calc(50% + 110px);
}
.header__bg-img--3 {
  top: 0;
  left: calc(50% - 100px);
}
.header__bg-img--4 {
  top: 100px;
  left: calc(50% - 200px);
}
.header__bg-img--5 {
  top: 250px;
  left: 50%;
}
.header__bg-img--6 {
  bottom: 0;
  right: 0;
  transform: none;
}
.header__logo {
  display: block;
  height: 24px;
}
.header__title {
  font-size: 2rem;
  margin: 30px 0 4px;
}
.header__subtitle {
  color: var(--color-green);
  font-size: 1rem;
  margin: 4px 0 16px;
}
.header__text {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 16px 0 24px;
}
.header__cta {
  background-color: var(--color-pink);
  display: inline-block;
  font-size: 0.875rem;
  padding: 14px 32px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .header {
    background: url(/assets/img/header.7e9207fc.png) center right no-repeat, linear-gradient(107deg, #380088 16.5%, #000000 87.25%);
    background-size: auto 100%, 100% 100%;
    padding-bottom: 0;
  }
  .header__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .header__content {
    padding: 24px 0;
  }
}
@media (min-width: 1024px) {
  .header__content {
    padding: 50px 0 50px;
  }
  .header__logo {
    height: 40px;
  }
  .header__title {
    font-size: 3.5rem;
  }
  .header__subtitle {
    font-size: 1.5rem;
  }
  .header__text {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .header__content {
    padding: 56px 0 130px;
  }
}
@media (min-width: 1440px) {
  .header {
    background-position: calc(50% + 300px) 0, 0 0;
  }
}

.features__title {
  font-size: 1.5rem;
  margin: 48px 0 32px;
  text-align: center;
}
.features__list {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(4, calc(100% - 50px));
  margin: 0 -15px 48px;
  overflow-x: auto;
  padding: 20px 15px 0;
}
.features__item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 13.67%, rgba(0, 0, 0, 0) 127.67%);
  border-radius: 16px;
  padding: 16px 8px;
  text-align: center;
}
.features__item-icon {
  align-items: center;
  background: #3a2162;
  border-radius: 16px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  height: 64px;
  justify-content: center;
  margin: -36px auto 8px;
  width: 64px;
}
.features__item-name {
  font-size: 1.5rem;
  margin: 8px 0;
}
.features__item-body {
  font-size: 0.875rem;
}
@media (min-width: 480px) {
  .features__list {
    grid-template-columns: repeat(4, 75%);
  }
}
@media (min-width: 640px) {
  .features__list {
    grid-template-columns: repeat(4, calc(50% - 20px));
  }
}
@media (min-width: 768px) {
  .features__list {
    grid-template-columns: repeat(4, calc(50% - 100px));
  }
}
@media (min-width: 860px) {
  .features__list {
    grid-template-columns: repeat(4, calc(33% - 20px));
  }
}
@media (min-width: 1024px) {
  .features__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.products__list-name {
  margin: 0 auto 8px;
}
.products__list-desc {
  margin: 8px auto 24px;
  max-width: 790px;
  text-align: center;
}
.products__list-cta {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  box-sizing: border-box;
  color: #fff;
  display: block;
  font-size: 0.875rem;
  margin: 24px auto 48px;
  max-width: 300px;
  padding: 14px 32px;
  text-transform: uppercase;
  width: 100%;
}
.products__author {
  text-overflow: initial;
  white-space: initial;
}

.actors {
  margin-bottom: 40px;
}
.actors__title {
  font-size: 1.5rem;
  margin: 24px 0;
  text-align: center;
}
.actors__text {
  margin: 24px auto 40px;
  max-width: 730px;
  text-align: center;
}
.actors__list {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(5, calc(100% - 50px));
  justify-items: center;
  margin: 0 -15px;
  overflow: auto;
  padding: 0 15px;
  scroll-snap-type: x mandatory;
}
.actors__item {
  background: #1d0f36 url(/assets/img/sound-wave.62f40f9a.svg) calc(50% - 24px) 58px no-repeat;
  border-radius: 16px;
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  padding: 32px 24px;
  scroll-snap-align: center;
}
.actors__actor-img {
  grid-column: 2;
  grid-row: 1;
}
.actors__actor-name {
  align-self: end;
  font-size: 1.5rem;
  font-weight: 700;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}
.actors__actor-desc {
  font-size: 0.875rem;
  grid-column: 1/3;
  grid-row: 2;
  margin: 0;
}
@media (min-width: 480px) {
  .actors__list {
    grid-template-columns: repeat(5, calc(100% - 120px));
  }
}
@media (min-width: 640px) {
  .actors__list {
    grid-template-columns: repeat(5, calc(100% - 220px));
  }
}
@media (min-width: 768px) {
  .actors {
    margin-bottom: 100px;
  }
  .actors__list {
    grid-gap: 15px;
    grid-template-columns: repeat(5, calc(50% - 50px));
  }
}
@media (min-width: 1200px) {
  .actors__list {
    column-gap: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    row-gap: 24px;
  }
  .actors__item {
    flex-basis: calc(33.333% - 64px);
  }
}

.app {
  background: #110526;
  color: #fff;
  padding: 24px 0 64px;
}
.app__container {
  display: grid;
  grid-gap: 40px;
}
.app__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 24px 0;
}
.app__text {
  margin: 16px 0;
}
.app__cta {
  background-color: var(--color-pink);
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  max-width: 280px;
  text-transform: uppercase;
  width: 100%;
}
.app__img {
  justify-self: center;
}
@media (min-width: 768px) {
  .app__container {
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
  }
  .app__content {
    grid-column: 2;
    grid-row: 1;
  }
  .app__img {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
  }
}

.footer {
  color: #aaa;
  padding: 40px 0;
  text-align: center;
}
.footer__link {
  color: inherit;
  display: block;
  margin: 0 auto 24px;
  transition: all 0.2s ease;
  width: fit-content;
}
.footer__link:hover {
  color: #fff;
}