@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  min-height: 100dvh;
  width: 100%;
  padding-inline: 60px;
  background-image: url(./assets/DesktopLandingPage.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: #161826;
  @media screen and (max-width: 1000px) {
    background-image: url(./assets/MobileLandingPage.png);
    padding-inline: 16px;
  }
}

.header {
  padding-block: 19px;
  @media screen and (max-width: 1000px) {
    padding-block: 20px;

    img {
      width: 90px;
      height: 19px;
    }
  }
}
.banner {
  padding-block: 110px 0;
  max-width: 750px;
  width: 60%;
  .yellowText {
    color: #cda546;
    text-shadow: 0px 9.076px 5.776px rgba(0, 0, 0, 0.34);
    font-family: "Bebas Neue";
    font-size: 90.792px;
    font-style: normal;
    font-weight: 400;
    line-height: 108.086px; /* 119.048% */
    letter-spacing: 1.816px;
    text-transform: capitalize;
    &.small {
      font-family: Poppins;
      font-size: 36px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
    }
    @media screen and (max-width: 1000px) {
      text-shadow: 0px 3.894px 2.478px rgba(0, 0, 0, 0.34);
      font-family: "Bebas Neue";
      font-size: 38.955px;
      font-style: normal;
      font-weight: 400;
      line-height: 46.375px; /* 119.048% */
      letter-spacing: 0.779px;
      text-transform: capitalize;
    }
  }
  h2 {
    color: #fff;
    text-shadow: 0px 5.621px 3.577px rgba(0, 0, 0, 0.34);
    font-family: "Bebas Neue";
    font-size: 46.093px;
    font-style: normal;
    font-weight: 400;
    line-height: 54.872px; /* 119.048% */
    letter-spacing: 0.922px;
    text-transform: capitalize;
    @media screen and (max-width: 1000px) {
      color: #fff;
      text-shadow: 0px 2.414px 1.536px rgba(0, 0, 0, 0.34);
      font-family: "Bebas Neue";
      font-size: 19.796px;
      font-style: normal;
      font-weight: 400;
      line-height: 23.567px; /* 119.048% */
      letter-spacing: 0.396px;
      text-transform: capitalize;
    }
  }
  p {
    color: rgba(255, 255, 255, 0.6);
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    @media screen and (max-width: 1000px) {
      font-size: 10px;
      line-height: 13.388px;
    }
  }
  @media screen and (max-width: 1000px) {
    padding-block: 30px 72px;
    width: 100%;
  }
}
.yellowText {
  color: #cda546;
}
.highlighted {
  color: #fff !important;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.button {
  margin-block: 26px 32px;
  padding: 14px 41px;
  width: 232px;
  font-family: Poppins;
  display: flex;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: center;
  text-decoration: none;
  color: #030712;
  background-color: #6ad035;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  min-width: 232px;
  transition: 0.3s ease-in-out;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-bottom: 84px;
  .arrow {
    max-width: 0;
    transition: 0.3s ease-in-out;
  }
}
.content {
  padding-bottom: 30px;
  h3 {
    color: #f9fafb;
    text-align: center;
    text-shadow: 0px 0px 40px rgba(0, 0, 0, 0.4);
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    @media screen and (max-width: 1000px) {
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 0.4px;
    }
  }
  .subtitle {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    &:after,
    &:before {
      content: "";
      width: auto;
      flex: 1;
      border-bottom: 1px solid #ffffff;
      @media screen and (max-width: 1000px) {
        content: none;
      }
    }
  }
  p {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 960px;
    margin-inline: auto;
    margin-top: 26px;
  }

  .yellowText {
    color: #cda546;
    font-family: Poppins;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .action {
    margin-top: 62px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .terms {
    width: 100%;

    border-radius: 12px;
    margin-top: 80px;
    margin-inline: auto;
    h3 {
      color: #f9fafb;
      text-align: center;
      text-shadow: 0px 0px 40px rgba(0, 0, 0, 0.4);
      font-family: Montserrat;
      font-size: 32px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
      letter-spacing: 0.64px;
      text-transform: uppercase;
    }
    ul {
      margin-inline-start: 32px;
      margin-top: 24px;
      color: #999;
      font-family: Montserrat;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      li {
        margin-bottom: 16px;
      }
    }
    #acordionHeader {
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    #acordionContent {
      max-height: 0;
      overflow: hidden;
      transition: 0.3s ease-in-out;
      padding-inline-start: 20px;
      margin-inline-start: -10px;
    }
    #acordionArrow {
      transition: 0.3s ease-in-out;
    }
    &.open {
      #acordionContent {
        max-height: 1000px;
      }
      #acordionArrow {
        transform: rotate(180deg);
      }
    }
  }

  @media screen and (max-width: 1000px) {
    padding-block: 41px;
    p {
      font-size: 12px;
      font-weight: 500;
      line-height: 20px;
      margin-top: 12px;
    }
    .yellowText {
      font-size: 16px;
      font-weight: 700;
      line-height: 20px;
    }
    .highlighted {
      color: rgba(249, 250, 251, 0.6);
      font-family: Montserrat;
      font-size: 12px;
      font-style: normal;
      font-weight: 700;
      line-height: 20px;
    }
    .action {
      margin-top: 16px;
      .highlighted {
        color: #f9fafb;
        text-align: center;
        font-family: Montserrat;
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px; /* 166.667% */
      }
      img {
        width: 242px;
        height: 56.8px;
      }
      .subtitle {
        font-size: 14px;
        margin-top: 16px;
      }
      .button {
        margin-block: 24px 32px;
        width: 100%;
      }
    }
    .terms {
      padding: 12px;
      margin-top: 20px;
      h3 {
        font-size: 16px;
        font-weight: 600;
      }
      ul {
        margin-inline-start: 12px;
        font-size: 12px;
      }
    }
  }
}

@media (hover: hover) {
  .button:hover {
    background-color: #cda546;
    .arrow {
      max-width: 100px;
    }
  }
}

@media screen and (min-width: 1000px) {
  .mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1000px) {
  .desktop {
    display: none !important;
  }
}
