@import "https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap";
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100vw;
}

*, :before, :after {
  box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}

:before, :after {
  transition: inherit;
}

a {
  text-decoration: none;
}

button, input, select, textarea {
  appearance: none;
  background-color: #0000;
  border: none;
  outline: none;
}

a, button, select, summary {
  cursor: pointer;
}

a, button, input, select, textarea, option, p, span {
  font-size: 1rem;
}

input, textarea {
  resize: none;
}

.h1 {
  font-family: Bisdak, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .h1 {
    font-family: Poppins, sans-serif;
  }
}

.h2 {
  font-family: Bisdak, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
  }
}

@media screen and (max-width: 768px) {
  .h2 {
    font-family: Poppins, sans-serif;
  }
}

.h3 {
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
  }
}

.h4 {
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
  }
}

.h5 {
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.h6 {
  font-family: Bisdak, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

@font-face {
  font-family: Bisdak;
  src: url("Bisdak.677afb6c.eot");
  src: url("Bisdak.5b2c0d0c.woff2") format("woff2"), url("Bisdak.df0b4e36.otf") format("opentype"), url("Bisdak.f7ff4524.ttf") format("ttf");
}

* {
  font-family: Poppins, sans-serif;
}

.header {
  width: -moz-fit-content;
  width: fit-content;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  margin: 64px auto 32px;
  display: flex;
}

@media screen and (max-width: 1280px) {
  .header {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}

@media screen and (max-width: 1024px) {
  .header {
    margin-top: 36px;
    margin-bottom: 36px;
  }
}

@media screen and (max-width: 768px) {
  .header {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 24px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (min-width: 891px) {
  .header {
    min-width: 690px;
  }
}

.header__logo {
  max-height: 80px;
  max-width: 85px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.header__logo img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .header__logo {
    width: 60px;
    height: 56px;
  }
}

.header__nav {
  gap: 24px;
  display: flex;
}

.header__link {
  color: #fcf9ff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.header__hamburger {
  height: 100%;
  width: 30px;
  cursor: pointer;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: relative;
}

.header__hamburger__button, .header__hamburger__button:before, .header__hamburger__button:after {
  height: 4px;
  width: 30px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform .4s cubic-bezier(.23, 1, .32, 1);
  display: block;
  position: absolute;
}

.header__hamburger__button:before {
  content: "";
  margin-top: -8px;
}

.header__hamburger__button:after {
  content: "";
  margin-top: 8px;
}

.header #menu-toggle {
  display: none;
}

.header #menu-toggle:checked + .header__hamburger .header__hamburger__button {
  background: #fff0;
}

.header #menu-toggle:checked + .header__hamburger .header__hamburger__button:before {
  margin-top: 0;
  transform: rotate(405deg);
}

.header #menu-toggle:checked + .header__hamburger .header__hamburger__button:after {
  margin-top: 0;
  transform: rotate(-405deg);
}

@media screen and (max-width: 768px) {
  .header__nav {
    width: 100%;
    z-index: 50;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 104px;
    transition: all .18s linear;
    position: absolute;
    top: 0;
    left: 0;
  }

  .header__link {
    width: 100%;
    color: #fff;
    background-color: #220046;
    justify-content: center;
    margin: 0;
    padding: .5em 0;
    display: flex;
  }

  .header__link:not(:last-child) {
    border-bottom: 1px solid #444;
  }

  .header__hamburger {
    display: flex;
  }

  .header #menu-toggle ~ .header__nav .header__link {
    height: 0;
    border: 0;
    margin: 0;
    padding: 0;
    transition: height .4s cubic-bezier(.23, 1, .32, 1);
  }

  .header #menu-toggle:not(:checked) ~ .header__nav {
    pointer-events: none;
    opacity: 0;
  }

  .header #menu-toggle:checked ~ .header__nav .header__link {
    height: 2.5em;
    border: 1px solid #333;
    padding: .5em;
    transition: height .4s cubic-bezier(.23, 1, .32, 1);
  }
}

.footer {
  background-color: #30104a;
  padding: 24px 0;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 36px 0;
  }
}

.footer__row {
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
  place-items: center;
  gap: 54px;
  display: grid;
}

@media screen and (max-width: 1280px) {
  .footer__row {
    gap: 24px;
  }
}

.footer__contact {
  color: #fff;
  justify-self: start;
  display: block;
  position: relative;
}

.footer__contact:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: currentColor;
  display: block;
  position: absolute;
  inset: 85% 0 auto;
}

.footer__separator {
  width: 100%;
  max-width: 309px;
  max-height: 23px;
  flex-direction: column;
  display: flex;
}

.footer__separator img {
  width: 100%;
}

.footer__logo {
  max-height: 34px;
}

.footer__social {
  justify-self: end;
  gap: 16px;
  display: flex;
}

@media screen and (max-width: 768px) {
  .footer__row {
    grid-template-columns: 1fr;
  }

  .footer__contact {
    order: 2;
    justify-self: center;
  }

  .footer__separator {
    order: 1;
  }

  .footer__separator ~ .footer__separator {
    display: none;
  }

  .footer__social {
    order: 3;
    justify-self: center;
    margin-top: -4px;
  }
}

.twitter-button {
  width: -moz-fit-content;
  width: fit-content;
  color: #56abff;
  border: 1px solid #56abff;
  border-radius: 2.5em;
  gap: .5em;
  padding: .75em 1.5em;
  display: flex;
}

.twitter-button__text {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  display: block;
}

.twitter-button__icon {
  max-height: 24px;
  max-width: 24px;
}

.card-tag {
  width: -moz-fit-content;
  width: fit-content;
  justify-content: flex-start;
  gap: .75em;
  display: flex;
}

@media screen and (max-width: 586px) {
  .card-tag {
    gap: .25em;
  }
}

.card-tag[data-direction="row"] {
  flex-direction: row;
}

.card-tag[data-direction="row-reverse"] {
  flex-direction: row-reverse;
}

.card-tag[data-direction="row"], .card-tag[data-direction="row-reverse"] {
  align-items: center;
}

.card-tag[data-direction="row"] .card-tag__title, .card-tag[data-direction="row-reverse"] .card-tag__title {
  flex-basis: 140px;
}

.card-tag[data-direction="column"] {
  flex-direction: column;
}

.card-tag[data-direction="column-reverse"] {
  flex-direction: column-reverse;
}

.card-tag[data-direction="column"], .card-tag[data-direction="column-reverse"] {
  align-items: flex-start;
}

.card-tag[data-direction="column"] .card-tag__title, .card-tag[data-direction="column-reverse"] .card-tag__title {
  width: min-content;
}

.card-tag__icon {
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.card-tag__icon img {
  width: 21.35px;
  height: 21.35px;
}

@media screen and (max-width: 586px) {
  .card-tag__icon img {
    width: 10px;
    height: 10px;
  }
}

.card-tag__title {
  color: #fff;
  font-family: Bisdak, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .card-tag__title {
    letter-spacing: .025em;
  }
}

@media screen and (max-width: 586px) {
  .card-tag__title {
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
  }
}

.card-tag__icon:before, .card-tag__icon:after {
  content: "";
  background-size: 4px 4px;
  display: block;
  position: absolute;
}

.card-tag__icon:before {
  background-image: linear-gradient(#0000 0% 50%, #fff 50% 100%);
  background-repeat: repeat-y;
}

.card-tag__icon:after {
  background-image: linear-gradient(90deg, #0000 0% 50%, #fff 50% 100%);
  background-repeat: repeat-x;
}

@media screen and (min-width: 587px) {
  .card-tag:nth-child(1) {
    grid-area: 1 / 2 / 2 / 5;
    place-self: start center;
  }

  .card-tag:nth-child(1) .card-tag__icon:before {
    width: 1px;
    height: 90px;
    margin-top: 24px;
  }

  .card-tag:nth-child(1) .card-tag__icon:after {
    width: 100px;
    height: 1px;
    margin-top: 114px;
    margin-left: 96px;
  }
}

@media screen and (max-width: 586px) {
  .card-tag:nth-child(1) {
    grid-area: 1 / 1 / 2 / 3;
    place-self: center;
  }

  .card-tag:nth-child(1) .card-tag__icon:before {
    width: 1px;
    height: 31px;
    margin-top: 12px;
  }

  .card-tag:nth-child(1) .card-tag__icon:after {
    width: 72px;
    height: 1px;
    margin-top: 41px;
    margin-left: 71px;
  }
}

@media screen and (min-width: 587px) {
  .card-tag:nth-child(2) {
    grid-area: 1 / 5 / 2 / 9;
    align-self: center;
  }

  .card-tag:nth-child(2) .card-tag__icon:before {
    width: 1px;
    height: 76px;
    margin-top: 11px;
    margin-left: 79px;
  }

  .card-tag:nth-child(2) .card-tag__icon:after {
    width: 28px;
    height: 1px;
    margin-top: 10px;
    margin-left: 52px;
  }
}

@media screen and (max-width: 586px) {
  .card-tag:nth-child(2) {
    grid-area: 1 / 4 / 2 / 6;
    place-self: center;
    margin-right: 24px;
  }

  .card-tag:nth-child(2) .card-tag__icon:before {
    width: 1px;
    height: 28px;
    margin-top: 3px;
    margin-left: 44px;
  }

  .card-tag:nth-child(2) .card-tag__icon:after {
    width: 16px;
    height: 1px;
    margin-top: 5px;
    margin-left: 32px;
  }
}

@media screen and (min-width: 587px) {
  .card-tag:nth-child(3) {
    grid-area: 3 / 1 / 5 / 3;
  }

  .card-tag:nth-child(3) .card-tag__icon:before {
    width: 1px;
    height: 50px;
    margin-top: 24px;
  }

  .card-tag:nth-child(3) .card-tag__icon:after {
    width: 100px;
    height: 1px;
    margin-top: 74px;
    margin-left: 96px;
  }
}

@media screen and (max-width: 586px) {
  .card-tag:nth-child(3) {
    flex-direction: row-reverse;
    grid-area: 3 / 1 / 5 / 3;
    justify-self: center;
    margin-right: 24px;
  }

  .card-tag:nth-child(3) .card-tag__icon:before {
    width: 1px;
    height: 28px;
    margin-top: 12px;
  }

  .card-tag:nth-child(3) .card-tag__icon:after {
    width: 64px;
    height: 1px;
    margin-top: 39px;
    margin-left: 64px;
  }
}

@media screen and (min-width: 587px) {
  .card-tag:nth-child(4) {
    grid-area: 2 / 9 / 5 / 11;
    place-self: center end;
  }

  .card-tag:nth-child(4) .card-tag__title {
    width: 128px;
  }

  .card-tag:nth-child(4) .card-tag__icon:before {
    width: 1px;
    height: 50px;
    margin-top: 24px;
    margin-left: 0;
  }

  .card-tag:nth-child(4) .card-tag__icon:after {
    width: 160px;
    height: 1px;
    margin-top: 74px;
    margin-right: 155px;
  }
}

@media screen and (max-width: 586px) {
  .card-tag:nth-child(4) {
    grid-area: 3 / 5 / 4 / 7;
    place-self: center end;
    align-items: center;
  }

  .card-tag:nth-child(4) .card-tag__title {
    width: 100px;
  }

  .card-tag:nth-child(4) .card-tag__icon:before {
    width: 1px;
    height: 22px;
    margin-top: 12px;
    margin-left: 0;
  }

  .card-tag:nth-child(4) .card-tag__icon:after {
    width: 82px;
    height: 1px;
    margin-top: 32px;
    margin-right: 83px;
  }
}

@media screen and (min-width: 587px) {
  .card-tag:nth-child(5) {
    grid-area: 7 / 1 / 9 / 4;
    align-self: center;
  }

  .card-tag:nth-child(5):after {
    content: "";
    width: 42px;
    height: 1px;
    background-image: linear-gradient(90deg, #0000 0% 50%, #fff 50% 100%);
    background-repeat: repeat-x;
    background-size: 4px 4px;
    margin-top: 89px;
    margin-left: 266px;
    display: block;
    position: absolute;
  }

  @media not all and (min-resolution: .001dpcm) {
    @supports (-webkit-appearance: none) {
      .card-tag:nth-child(5):after {
        width: 40px;
        margin-left: 269px;
      }
    }
  }

  .card-tag:nth-child(5) .card-tag__icon:before {
    width: 1px;
    height: 47px;
    margin-top: 10px;
    margin-left: 329px;
  }

  .card-tag:nth-child(5) .card-tag__icon:after {
    width: 150px;
    height: 1px;
    margin-top: 10px;
    margin-left: 181px;
  }
}

@media screen and (max-width: 586px) {
  .card-tag:nth-child(5) {
    flex-direction: column;
    grid-area: 6 / 1 / 7 / 3;
    align-self: center;
    align-items: flex-start;
    margin-right: 32px;
  }

  .card-tag:nth-child(5):after {
    content: "";
    width: 24px;
    height: 1px;
    background-image: linear-gradient(90deg, #0000 0% 50%, #fff 50% 100%);
    background-repeat: repeat-x;
    background-size: 4px 4px;
    margin-top: 45px;
    margin-left: 122px;
    display: block;
    position: absolute;
  }

  .card-tag:nth-child(5) .card-tag__title {
    flex-basis: auto;
  }

  .card-tag:nth-child(5) .card-tag__icon:before {
    width: 1px;
    height: 19px;
    margin-top: 4px;
    margin-left: 235px;
  }

  .card-tag:nth-child(5) .card-tag__icon:after {
    width: 112px;
    height: 1px;
    margin-top: 5px;
    margin-left: 128px;
  }
}

@media screen and (min-width: 587px) {
  .card-tag:nth-child(6) {
    grid-area: 10 / 1 / 12 / 5;
    align-self: end;
    margin-right: 24px;
  }

  .card-tag:nth-child(6) .card-tag__title {
    width: 120px;
  }

  .card-tag:nth-child(6) .card-tag__icon:before {
    width: 1px;
    height: 70px;
    margin-top: -58px;
    margin-left: 117px;
  }

  .card-tag:nth-child(6) .card-tag__icon:after {
    width: 40px;
    height: 1px;
    margin-top: 10px;
    margin-left: 80px;
  }
}

@media screen and (max-width: 586px) {
  .card-tag:nth-child(6) {
    flex-direction: column-reverse;
    grid-area: 7 / 6 / auto / 8;
    place-self: end start;
  }

  .card-tag:nth-child(6) .card-tag__title {
    width: 48px;
    flex-basis: auto;
  }

  .card-tag:nth-child(6) .card-tag__icon:before {
    width: 1px;
    height: 23px;
    margin-top: 5px;
    margin-right: 210px;
  }

  .card-tag:nth-child(6) .card-tag__icon:after {
    width: 100px;
    height: 1px;
    margin-top: 5px;
    margin-right: 114px;
  }
}

.variety {
  align-items: center;
  gap: 44px;
  list-style: none;
  display: flex;
}

@media screen and (max-width: 1280px) {
  .variety {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 44px;
  }
}

.variety[data-type="rarity"] .variety__item {
  flex-basis: 48px;
}

.variety[data-type="rarity"] .variety__item__icon {
  aspect-ratio: 1;
  height: 48px;
  width: 48px;
  max-height: 48px;
  max-width: 48px;
  border-radius: 50%;
}

@media screen and (max-width: 1280px) {
  .variety[data-type="rarity"] .variety__item__icon img {
    width: 24px;
    height: 24px;
  }
}

@media screen and (min-width: 1281px) {
  .variety[data-type="rarity"] .variety__item__icon {
    height: 36px;
    width: 36px;
    max-width: 36px;
    max-height: 36px;
    flex-basis: 36px;
  }
}

.variety[data-type="rarity"] .variety__item:nth-child(1) .variety__item__icon {
  box-shadow: 0 0 8px #fff;
}

.variety[data-type="rarity"] .variety__item:nth-child(1) .variety__item__name {
  color: #fff;
}

.variety[data-type="rarity"] .variety__item:nth-child(2) .variety__item__icon {
  box-shadow: 0 0 8px #0f0;
}

.variety[data-type="rarity"] .variety__item:nth-child(2) .variety__item__name {
  color: #0f0;
}

.variety[data-type="rarity"] .variety__item:nth-child(3) .variety__item__icon {
  box-shadow: 0 0 8px #5ae9ff;
}

.variety[data-type="rarity"] .variety__item:nth-child(3) .variety__item__name {
  color: #5ae9ff;
}

.variety[data-type="rarity"] .variety__item:nth-child(4) .variety__item__icon {
  box-shadow: 0 0 8px #bd0de0;
}

.variety[data-type="rarity"] .variety__item:nth-child(4) .variety__item__name {
  color: #bd0de0;
}

.variety[data-type="rarity"] .variety__item:nth-child(5) .variety__item__icon {
  box-shadow: 0 0 8px #d0001c;
}

.variety[data-type="rarity"] .variety__item:nth-child(5) .variety__item__name {
  color: #d0001c;
}

.variety:not([data-type="rarity"]) {
  gap: 40px;
}

.variety:not([data-type="rarity"]) .variety__item__icon {
  width: 54px;
  height: 48px;
}

@media screen and (min-width: 1281px) {
  .variety:not([data-type="rarity"]) .variety__item__icon {
    height: 32px;
    width: 36px;
  }
}

@media screen and (max-width: 1280px) {
  .variety:not([data-type="rarity"]) .variety__item__icon img {
    width: 36px;
    height: 36px;
  }
}

.variety:not([data-type="rarity"]) .variety__item__icon, .variety:not([data-type="rarity"]) .variety__item__icon img {
  background-color: #0000;
  position: relative;
}

.variety:not([data-type="rarity"]) .variety__item__icon img {
  z-index: 5;
}

.variety:not([data-type="rarity"]) .variety__item__icon:before, .variety:not([data-type="rarity"]) .variety__item__icon:after {
  content: "";
  width: 100%;
  height: 100%;
  z-index: 0;
  clip-path: polygon(0% 50%, 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%);
  background-color: #217697;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0;
}

.variety:not([data-type="rarity"]) .variety__item__icon:after {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  z-index: 1;
  background-color: #000;
}

.variety:not([data-type="rarity"]) .variety__item__name {
  color: #fff;
}

.variety__item {
  gap: 4px;
}

.variety__item, .variety__item__icon {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.variety__item__icon {
  background-color: #161925;
  justify-content: center;
}

.variety__item__name {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

.page-home .main .sign-up, .page-home .main .bbro-list, .page-home .main .explanation__example__tags, .page-home .main .about {
  padding: 80px 0;
}

@media screen and (max-width: 1280px) {
  .page-home .main .sign-up, .page-home .main .bbro-list, .page-home .main .explanation__example__tags, .page-home .main .about {
    padding: 64px 0;
  }
}

.page-home .main .bbro-list, .page-home .main .explanation, .page-home .main .about {
  padding-left: 5vw;
  padding-right: 5vw;
}

.page-home .main .explanation__card, .page-home .main .introduce__picture, .page-home .main .sign-up, .page-home .main .bbro-list, .page-home .main .about {
  flex-direction: column;
  display: flex;
}

.page-home .main .bbro-list__heading, .page-home .main .about__heading {
  flex-direction: column;
  align-items: center;
  gap: 4px;
  display: flex;
}

@media screen and (max-width: 586px) {
  .page-home .main .bbro-list__heading, .page-home .main .about__heading {
    max-width: calc(100% - 40px);
  }
}

.page-home .main .introduce {
  flex-direction: column;
  align-items: center;
  gap: 32px;
  display: flex;
}

@media screen and (max-width: 1280px) {
  .page-home .main .introduce {
    gap: 24px;
  }
}

.page-home .main .introduce__title {
  color: #56abff;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 1280px) {
  .page-home .main .introduce__title {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.5;
  }

  .page-home .main .introduce__subtitle {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
  }
}

.page-home .main .introduce__description {
  color: #c5a7e4;
  margin-top: 4px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 1280px) {
  .page-home .main .introduce__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
  }
}

.page-home .main .introduce__heading {
  flex-direction: column-reverse;
  align-items: center;
  display: flex;
}

@media screen and (min-width: 769px) {
  .page-home .main .introduce__heading {
    gap: 8px;
  }
}

.page-home .main .introduce__picture {
  max-height: 268px;
  width: 100%;
  align-items: center;
}

.page-home .main .introduce__picture img {
  max-width: 452px;
  filter: drop-shadow(0 4px 12px #00000080);
}

@media screen and (min-width: 769px) {
  .page-home .main .introduce__picture {
    margin-top: 40px;
  }
}

.page-home .main .about {
  z-index: 1;
  background-image: linear-gradient(0deg, #220046, #220046), linear-gradient(270deg, #000b1c 2%, #000 50%, #000b1c 100%);
  align-items: center;
  gap: 32px;
  position: relative;
}

@media screen and (max-width: 586px) {
  .page-home .main .about {
    z-index: -1;
    padding-top: 128px;
  }
}

.page-home .main .about__title {
  color: #56abff;
}

.page-home .main .about__subtitle {
  text-align: center;
}

@media screen and (max-width: 890px) {
  .page-home .main .about__subtitle {
    max-width: 480px;
  }
}

.page-home .main .about__description {
  text-align: center;
  margin-top: 1em;
}

@media screen and (max-width: 890px) {
  .page-home .main .about__description {
    max-width: 480px;
  }
}

@media screen and (max-width: 586px) {
  .page-home .main .about__description {
    margin-top: 8px;
  }
}

.page-home .main .explanation {
  min-height: 768px;
  grid-column-gap: 16px;
  z-index: 0;
  background-image: url("rocket.aa571534.png");
  background-size: cover;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  display: grid;
  position: relative;
}

.page-home .main .explanation:before {
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background-image: radial-gradient(50% 50%, #0000 10%, #220046 125%);
  margin: 0;
  display: block;
  position: absolute;
  inset: 0;
}

@media screen and (max-width: 768px) {
  .page-home .main .explanation:before {
    opacity: 1;
  }
}

.page-home .main .explanation__heading, .page-home .main .explanation__tags, .page-home .main .explanation__content {
  max-width: 404px;
}

@media screen and (max-width: 586px) {
  .page-home .main .explanation__heading, .page-home .main .explanation__tags, .page-home .main .explanation__content {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.page-home .main .explanation__heading {
  padding-bottom: 24px;
}

.page-home .main .explanation__example {
  width: 100%;
  height: 100%;
  align-items: center;
  padding-top: 30px;
  display: grid;
  position: relative;
}

@media screen and (min-width: 587px) {
  .page-home .main .explanation__example {
    aspect-ratio: 21 / 25;
    max-width: 644px;
    justify-self: end;
    justify-items: end;
  }
}

.page-home .main .explanation__title {
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .page-home .main .explanation__title {
    max-width: 220px;
  }
}

.page-home .main .explanation__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.page-home .main .explanation__text + .explanation__text {
  margin-top: 12px;
}

.page-home .main .explanation__tags {
  flex-flow: wrap;
  justify-content: space-between;
  gap: 16px;
  margin: 32px 0;
  list-style: none;
  display: flex;
}

@media screen and (max-width: 586px) {
  .page-home .main .explanation__tags {
    justify-content: center;
  }
}

.page-home .main .explanation__tags__item {
  color: #000;
  text-align: center;
  background: linear-gradient(0deg, #56abff, #56abff), linear-gradient(95deg, #77fff7 0%, #0fecaa 100%);
  border-radius: 16px;
  flex-basis: 108px;
  padding: 8px 24px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  box-shadow: 0 0 6px #00000026;
}

.page-home .main .explanation__card {
  width: 100%;
  max-width: 333px;
  max-height: 460px;
}

.page-home .main .explanation__card img {
  width: 100%;
  height: 100%;
}

@supports (aspect-ratio: auto) {
  .page-home .main .explanation__card img {
    aspect-ratio: auto;
  }
}

@media screen and (min-width: 1281px) {
  .page-home .main .explanation__card {
    margin-right: calc(10% + 20px);
  }
}

@media screen and (min-width: 587px) and (max-width: 1024px) {
  .page-home .main .explanation__example {
    transform: scale(.9);
  }
}

@media screen and (min-width: 587px) and (max-width: 890px) {
  .page-home .main .explanation__example {
    transform: scale(.8);
  }

  .page-home .main .explanation__heading {
    margin-bottom: -48px;
  }

  .page-home .main .explanation__tags {
    margin-top: -48px;
  }
}

@media screen and (min-width: 587px) and (max-width: 768px) {
  .page-home .main .explanation__example {
    transform: scale(.7);
  }

  .page-home .main .explanation__heading {
    margin-bottom: -108px;
  }

  .page-home .main .explanation__tags {
    margin-top: -108px;
  }
}

@media screen and (max-width: 1280px) {
  .page-home .main .explanation {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 64px 0;
  }

  .page-home .main .explanation__example {
    order: 2;
    justify-self: center;
    justify-items: center;
  }

  .page-home .main .explanation__heading {
    order: 1;
  }

  .page-home .main .explanation__tags {
    order: 3;
  }

  .page-home .main .explanation__content {
    order: 4;
  }
}

@media screen and (min-width: 1281px) {
  .page-home .main .explanation {
    grid-auto-rows: 64px;
  }

  .page-home .main .explanation__example {
    grid-row: 1 / 13;
  }

  .page-home .main .explanation__heading, .page-home .main .explanation__tags, .page-home .main .explanation__content {
    grid-column: 2;
  }

  .page-home .main .explanation__heading:nth-child(2), .page-home .main .explanation__tags:nth-child(2), .page-home .main .explanation__content:nth-child(2) {
    grid-row: 4 / 6;
    align-self: start;
  }

  .page-home .main .explanation__heading:nth-child(3), .page-home .main .explanation__tags:nth-child(3), .page-home .main .explanation__content:nth-child(3) {
    grid-row: 6 / 8;
    align-self: end;
  }

  .page-home .main .explanation__heading:nth-child(4), .page-home .main .explanation__tags:nth-child(4), .page-home .main .explanation__content:nth-child(4) {
    grid-row: 8 / 9;
    align-self: start;
  }
}

@media screen and (max-width: 586px) {
  .page-home .main .explanation__example {
    margin-top: 24px;
    padding-top: 30px;
  }

  .page-home .main .explanation__example .explanation__card {
    width: 184px;
  }
}

.page-home .main .explanation__example__tags {
  z-index: 5;
  width: 100%;
  height: 100%;
  grid-template-rows: repeat(11, 1fr);
  grid-template-columns: repeat(10, 1fr);
  place-items: center;
  display: grid;
  position: absolute;
  inset: 0;
}

@media screen and (min-width: 587px) {
  .page-home .main .explanation__example__tags {
    width: calc(100% + 90px);
  }
}

@media screen and (min-width: 587px) and (max-width: 1280px) {
  .page-home .main .explanation__example__tags {
    height: calc(100% - 24px);
    top: 8px;
    left: -70px;
  }
}

@media screen and (max-width: 586px) {
  .page-home .main .explanation__example__tags {
    width: min(100vw, 375px);
    grid-template-rows: repeat(8, 1fr);
    grid-template-columns: repeat(6, 1fr);
    grid-auto-columns: 20px;
    margin: 0 auto;
    padding: 0;
  }
}

.page-home .main .bbro-list {
  background-blend-mode: screen, normal;
  background-color: #220046;
  background-image: radial-gradient(1280% 720%, #000 0%, #000b1c 100%);
  place-items: center;
  padding-left: 70px;
  padding-right: 70px;
  display: grid;
}

.page-home .main .bbro-list .icon-separator {
  margin-bottom: 18px;
}

.page-home .main .bbro-list__heading {
  gap: 20px;
  margin-bottom: 28px;
}

.page-home .main .bbro-list__description {
  max-width: 540px;
  text-align: center;
}

@media screen and (max-width: 1280px) {
  .page-home .main .bbro-list__description {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
  }
}

.page-home .main .bbro-list__row {
  width: 100%;
  max-width: 880px;
  grid-row-gap: 36px;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

@media screen and (max-width: 1280px) {
  .page-home .main .bbro-list__row {
    margin-bottom: 44px;
  }
}

.page-home .main .bbro-list__separation {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  display: flex;
}

.page-home .main .bbro-list__summary {
  margin-top: 40px;
  margin-bottom: 48px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

@media screen and (max-width: 1280px) {
  .page-home .main .bbro-list {
    padding-bottom: 48px;
    padding-left: 0;
    padding-right: 0;
  }

  .page-home .main .bbro-list .icon-separator, .page-home .main .bbro-list__heading, .page-home .main .bbro-list__row, .page-home .main .bbro-list__summary {
    text-align: center;
    padding-left: 38px;
    padding-right: 38px;
  }

  .page-home .main .bbro-list .icon-separator {
    order: 3;
    margin-bottom: 44px;
  }

  .page-home .main .bbro-list .icon-separator img {
    width: 100%;
  }

  .page-home .main .bbro-list__heading {
    order: 1;
    gap: 12px;
    margin-bottom: 12px;
  }

  .page-home .main .bbro-list__row {
    order: 4;
    grid-template-columns: 1fr;
  }

  .page-home .main .bbro-list__summary {
    order: 2;
    margin-top: 0;
    margin-bottom: 24px;
  }

  .page-home .main .bbro-list__wrapper {
    order: 5;
    padding-bottom: 16px;
  }
}

.page-home .main .bbro-list__wrapper {
  max-width: 100%;
  overflow-x: auto;
}

.page-home .main .bbro-list__cards {
  grid-gap: 12px;
  scrollbar-width: none;
  list-style: none;
  display: grid;
}

.page-home .main .bbro-list__cards::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 1280px) {
  .page-home .main .bbro-list__cards {
    width: -moz-fit-content;
    width: fit-content;
    grid-auto-columns: 300px;
    grid-auto-flow: column;
  }
}

@media screen and (min-width: 1281px) {
  .page-home .main .bbro-list__cards {
    grid-gap: 32px;
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-home .main .bbro-list__cards__item {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.page-home .main .bbro-list__cards__item img {
  max-width: 300px;
  filter: drop-shadow(0 0 13px #00000080);
}

.page-home .main .bbro-list__cards__item[data-coming-soon], .page-home .main .bbro-list__cards__item:last-child {
  position: relative;
}

.page-home .main .bbro-list__cards__item[data-coming-soon] img, .page-home .main .bbro-list__cards__item:last-child img {
  filter: blur(8px) brightness(.35);
}

.page-home .main .bbro-list__cards__item[data-coming-soon]:before, .page-home .main .bbro-list__cards__item[data-coming-soon]:after, .page-home .main .bbro-list__cards__item:last-child:before, .page-home .main .bbro-list__cards__item:last-child:after {
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
}

.page-home .main .bbro-list__cards__item[data-coming-soon]:before, .page-home .main .bbro-list__cards__item:last-child:before {
  content: "Coming soon...";
  color: #fff;
  z-index: 5;
  place-items: center;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  display: grid;
}

@media screen and (max-width: 768px) {
  .page-home .main .bbro-list__cards__item[data-coming-soon]:before, .page-home .main .bbro-list__cards__item:last-child:before {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
  }
}

.page-home .main .sign-up {
  background-image: url("stars.60ecdd58.png");
  background-size: cover;
  align-items: center;
  gap: 12px;
  padding-left: 40px;
  padding-right: 40px;
}

@media screen and (min-width: 1281px) {
  .page-home .main .sign-up {
    gap: 36px;
  }
}

.page-home .main .sign-up__title {
  text-align: center;
}

.page-home .main .sign-up__subtitle {
  max-width: 680px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 1280px) {
  .page-home .main .sign-up__subtitle {
    margin-bottom: 12px;
  }
}

.page-home .main .sign-up__form {
  gap: 16px;
  display: flex;
}

@media screen and (max-width: 480px) {
  .page-home .main .sign-up__form {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (max-width: 1280px) {
  .page-home .main .sign-up__form {
    margin-bottom: 12px;
  }
}

.page-home .main .sign-up__form input {
  color: #2f1444;
  min-width: 228px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.page-home .main .sign-up__form input::placeholder {
  color: #2f1444;
}

.page-home .main .sign-up__form input, .page-home .main .sign-up__form button {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  padding: .75em 1.5em;
}

.page-home .main .sign-up__form button {
  color: #fff;
  background-color: #56abff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.page-home .main .sign-up__note {
  max-width: 380px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.page-buy .main__content {
  padding-left: max(40px, 5vw);
  padding-right: max(40px, 5vw);
}

.page-buy .main {
  margin-top: 32px;
}

@media screen and (max-width: 1280px) {
  .page-buy .main {
    margin-top: 0;
  }
}

.page-buy .main__content {
  grid-template-columns: 1fr 2px 1fr;
  gap: 16px;
  margin-bottom: 40px;
  display: grid;
}

@media screen and (max-width: 1280px) {
  .page-buy .main__content {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .page-buy .main__content .separator {
    display: none;
  }
}

.page-buy .main__content .separator {
  width: 2px;
  background-color: #d9d9d9;
  display: block;
}

.page-buy .main__content .section {
  height: 100%;
  grid-template-rows: 122px 44px 126px 48px 1fr;
  justify-items: center;
  display: grid;
}

@media screen and (max-width: 1280px) {
  .page-buy .main__content .section {
    grid-template-rows: auto;
    padding: 64px 0;
  }

  .page-buy .main__content .section:first-child {
    padding-top: 24px;
  }
}

.page-buy .main__content .section .h2, .page-buy .main__content .section .h3, .page-buy .main__content .section .h4 {
  text-align: center;
  max-width: 540px;
  margin-bottom: 12px;
}

@media screen and (max-width: 1280px) {
  .page-buy .main__content .section .h2, .page-buy .main__content .section .h3, .page-buy .main__content .section .h4 {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 1280px) and (min-width: 481px) {
  .page-buy .main__content .section .h4 {
    white-space: nowrap;
  }
}

.page-buy .main__content .section:nth-child(1) .section__picture img {
  width: 100%;
  max-width: 210px;
  height: 218px;
}

.page-buy .main__content .section:nth-child(3) .section__picture img {
  width: 100%;
  max-width: 296px;
  height: 188px;
}

.page-buy .main__content .section__text, .page-buy .main__content .section__address {
  width: 75%;
  max-width: 412px;
}

@media screen and (max-width: 1280px) {
  .page-buy .main__content .section__text, .page-buy .main__content .section__address {
    width: 100%;
  }
}

.page-buy .main__content .section__text {
  text-align: center;
  border: 4px solid #69c;
  border-radius: 1em;
  margin-top: 32px;
  margin-bottom: 16px;
  padding: .75em 1.5em;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 1280px) {
  .page-buy .main__content .section__text {
    margin-top: 16px;
    padding: .5em 1.5em;
  }
}

.page-buy .main__content .section__address {
  text-align: center;
  letter-spacing: .25em;
  background-color: #fff;
  border-radius: .5em;
  padding: .75em 1.5em;
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .page-buy .main__content .section__address {
    padding: 1em;
    font-size: 12px;
    font-weight: 700;
    line-height: 2;
  }
}

.page-buy .main__content .section__picture {
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

@media screen and (max-width: 1280px) {
  .page-buy .main__content .section__picture {
    margin-top: 32px;
  }
}

.page-buy .main__content .section__picture img {
  max-height: 220px;
}

.page-buy .main .note {
  max-width: 620px;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.page-buy .main .note__description {
  text-align: center;
  max-width: 430px;
}

@media screen and (max-width: 1280px) {
  .page-buy .main .note {
    display: none;
  }
}

#root {
  min-height: 100vh;
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

#root:before {
  content: "";
  width: 100%;
  height: 100%;
  min-height: max(100vh, 780px);
  z-index: -1;
  background-position-y: 0;
  background-size: cover;
  margin: 0;
  display: block;
  position: absolute;
  inset: 0;
}

@media screen and (max-width: 768px) {
  #root:before {
    min-height: max(100vh, 660px);
  }
}

#root main {
  flex: 1;
}

#root.page-home:before {
  max-height: 100vh;
  background-image: url("hero-s.51f81c73.png");
}

#root.page-buy:before {
  background-image: url("hero.1d075354.png");
}

body {
  min-height: 100vh;
  color: #fff;
  background-color: #220046;
  display: grid;
}

.container {
  max-width: 90%;
  min-width: 295px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .container {
    max-width: 75vw;
  }
}

/*# sourceMappingURL=index.b10d73a7.css.map */
