* {
}

:root {
  --primary-color: #000000;
  --secondary-color: ;
  --text-color: #ffffff;
  --font-main: ;
  overflow-x: hidden;
}

html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-family: "Onest", sans-serif;
  margin: 0;
  min-height: 100vh;

  background: linear-gradient(
    45deg,
    #402000 0%,#402000 5%,
    #3c1e00 10%,
    #241200 20%,
    #000000 40%, #000000 60%, #241200 80%,
    #3c1e00 90%,
    #402000 95%,
    #402000 100%
  );
}

header {
  display: flex;
  justify-content: center;
}

nav {
  width: auto;
  height: auto;
  border: 1px solid #351a00ae;
  background-color: #4020006d;
  border-radius: 12px;
  position: relative;
  top: 12px;
  color: var(--text-color);
  margin: 20px 0;
}

ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.open-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  color: var(--text-color);
  /* border: 1px solid #351a00; */
  background-color: #402000e6;
  z-index: 100;
  position: relative;
  top: 12px;
  color: var(--text-color);
  margin: 20px 0;
  left: 40vw;
  border-radius: 5px;
  transition: transform 0.1s ease 1s, gap 0.2s ease;
}

@media (max-width: 800px) {
  .open-menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}

#line1,
#line2 {
  width: 30px;
  height: 2px;
  background-color: white;
}

.open-menu-btn.lineactive {
  gap: 0;
}

.open-menu-btn.lineactive > #line1 {
  transform: rotate(45deg);
}

.open-menu-btn.lineactive > #line2 {
  transform: rotate(-45deg);
}

.logo {
  width: 300px;
  height: 300px;
  animation: logo-pulse 3s infinite ease-in-out;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

ul > a {
  padding: 16px 50px;
}

li {
  cursor: pointer;
  text-decoration: none;
  margin: 0;
}

.middle-section {
  width: 100vw;
  height: auto;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  padding: 30px;
  position: relative;
  z-index: 9;
}

.middle-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.left-arrow,
.right-arrow {
  width: 50px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow-circle {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 100%;
  border: 1px solid #351a00ae;
  background-color: #4020006d;
  cursor: pointer;
}

.point {
  top: 300px;
}

.slides {
  width: 100%;
  max-width: 1100px;
  height: 300px;
  border-radius: 12px;
  border: 1px solid #351a00ae;
  background-color: #4020006d;
  overflow: hidden;
  position: relative;
}

.slides-inner {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section {
  width: auto;
  min-height: 70dvh;
  height: auto;
  display: flex;
  align-items: center;
  padding: 2rem;
  position: relative;
  z-index: 9;
}

.feature-section {
  padding: 2rem;
  height: auto;
  width: 95vw;
  background-color: red;
  --d: 1px;

  background: radial-gradient(
      circle at var(--d) var(--d),
      #9b9b9b8b calc(var(--d) - 1px),
      #0000 var(--d)
    )
    0 0 / 40px 40px;
  position: relative;
  z-index: 9;
}

.feature-title {
  font-size: 55px;
  color: var(--text-color);
  font-weight: bold;
}

.feature-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.feature-sub {
  text-align: justify;
  color: var(--text-color);
}

.feature-cards {
  padding: 2rem;
  display: flex;
  gap: 32px;
}

.card {
  width: 350px;
  height: 200px;
  border: 1px solid #351a00ae;
  background-color: #4020006d;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  transition: 0.3s ease;
}

.card:hover {
  transform: scale(1.02);
}

.card-logo {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: #4020005c;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #402000;
}

.feature-cards {
  display: grid;
  gap: 20px;

  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .feature-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.faq-title {
  font-size: 55px;
  color: var(--text-color);
  font-weight: bold;
}

.faq-section {
  max-width: 100vw;
  width: 100vw;
  box-sizing: border-box;
  padding: 30px;
}

.faq-container {
  min-width: 1200px;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  justify-content: center;
}

.faq-questions {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-images {
  margin: 2rem 0 2rem 1rem;
  width: 420px;
  height: 280px;
  border: 1px solid #351a00ae;
  background-color: #4020006d;
  border-radius: 12px;
}


.faq-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
/* .faq-image {
  width: 100%;
  height: 100%;
} */

.faq-resources {
  display: flex;
  justify-content: center;
  width: 100%;
}

.question {
  width: 650px;
  border: 1px solid #351a00ae;
  background-color: #4020006d;
  border-radius: 12px;
  padding: 1rem;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
}

.question-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

.question-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0;
}

.question.open .question-answer {
  max-height: 500px;
}

.question-title i {
  transition: transform 0.3s ease;
}

.question.open .fa-angle-up {
  transform: rotate(180deg);
}

.card-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-color);
}

.card-text {
  color: var(--text-color);
}

#visual {
  position: absolute;
  top: 230px;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.hero-title {
  color: var(--text-color);
  font-size: 88px;
  font-weight: bold;
}

.hero-sub {
  text-align: justify;
  color: var(--text-color);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 16px;
}

.hero-shop,
.hero-discord {
  width: 60px;
  height: 60px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #351a00ae;
  border-radius: 12px;
  background-color: #4020006d;
  cursor: pointer;
  color: white;
  font-size: 16px;
}

.hero-join {
  width: 180px;
  height: 60px;
  border: 1px solid #351a00ae;
  border-radius: 12px;
  background-color: #4020006d;
  cursor: pointer;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Onest", sans-serif;
  font-size: 16px;
}

@keyframes logo-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.status-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.status-title {
  font-size: 55px;
  color: var(--text-color);
  font-weight: bold;
}

.start {
  font-size: 55px;
  color: var(--text-color);
  font-weight: bold;
  position: relative;
  top: 120px;
  transform: rotate(-7deg);
}

.status-sub {
  text-align: justify;
  color: var(--text-color);
}

.status-number {
  font-size: 55px;
  background: linear-gradient(45deg, #783800, #ffb855);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

.loader {
  width: 100px;
  padding: 14px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(45deg, #783800, #ffb855);
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}

footer {
  background-color: #252525;
  height: 3rem;
  width: 100%;
  display: flex;
  justify-self: flex-end;
  z-index: 12;
  align-items: center;
  justify-content: space-between;
  color: rgb(197, 197, 197);
  padding: 0 1rem;
}

.cta-section {
  width: 100%;
  height: 500px;

  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
  position: relative;
  z-index: 10;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  top: 50px;
}
.faq-image {
  display: none;
  transition: opacity 0.4s ease;
  width: 100%;
  height: 100%;
}

.faq-image.imgactive {
  display: block;
  opacity: 1;
}

.f1,
.f2,
.f3 {
  height: 100%;
  width: 20%;
  display: flex;
  align-items: center;
  color: rgb(197, 197, 197);
  font-size: 0.8rem;
}

.f1 div {
  text-align: start;
}

.f2 div {
  text-align: center;
}

.f1 {
  justify-content: flex-start;
  color: rgb(197, 197, 197);
}

.f2 {
  justify-content: center;
  color: rgb(197, 197, 197);
}

.f3 {
  justify-content: flex-end;
  color: rgb(197, 197, 197);
}

.f3 div {
  text-align: end;
}

.f2 a {
  color: white;
  cursor: pointer;
}

.f3 a {
  color: white;
  cursor: pointer;
  text-decoration: underline;
}

.cta-title {
  font-size: 55px;
  color: var(--text-color);
  font-weight: bold;
}

@media (max-width: 1300px) {
  /* .slides {
    width: 800px;
  } */
  .faq-resources {
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    box-sizing: border-box;
    padding: 20px;
    align-items: center;
  }
  .faq-section {
    max-width: 100vw;
    width: 100vw;
    box-sizing: border-box;
    padding: 30px;
  }
  .faq-container {
    min-width: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    justify-content: center;
  }
  footer {
    height: auto;
  }
}

@media (max-width: 800px) {
  ul {
    flex-direction: column;
  }
  footer {
    height: auto;
  }

  .f1,
  .f3 {
    width: 40%;
  }

  .hero-title {
    font-size: 50px;
  }
  .hero-sub {
    box-sizing: border-box;
    width: 100vw;
    padding: 30px;
    text-align: justify;
  }
  .middle-section {
    box-sizing: border-box;
    width: 100vw;
    padding: 30px;
  }
  /* .slides {
    width: 600px;
    height: 300px;
    background-color: red;
    border-radius: 12px;
    border: 1px solid #351a00ae;
    background-color: #4020006d;
  } */

  .middle-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  nav {
    position: absolute;
    z-index: 99;
    width: 100vw;
    background-color: #402000;
    top: -50%;
    transition: 0.3s ease-in-out;
  }

  nav.menuactive {
    top: 0;
  }

  .faq-resources {
    flex-direction: column;
    display: flex;
    justify-content: center;
    width: 100vw;
    box-sizing: border-box;
    padding: 20px;
  }
  .faq-questions {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .question {
    width: 100%;
    border: 1px solid #351a00ae;
    background-color: #4020006d;
    border-radius: 12px;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    padding: 1rem;
  }

  .faq-images {
    width: 100%;
    margin: 2rem 0 2rem 0;
  }

  .faq-container {
    min-width: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    justify-content: center;
  }
  .status-title {
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    width: 100vw;
  }
  .start {
    transform: rotate(-26deg);
  }
  .card {
    width: 100%;
    height: 220px;
    border: 1px solid #351a00ae;
    background-color: #4020006d;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
    transition: 0.3s ease;
  }
  .feature-cards {
    width: 100vw;
    padding: 30px;
    gap: 32px;
  }
  .cta-section {
    width: 100%;
    height: 500px;

    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    position: relative;
    z-index: 10;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-section {
    padding: 0;
  }

  .svg-image {
    display: none;
  }
}
