/* HOW TO BUY SECTION */
.howbuy-section {
  padding: 80px 0;
  /* background: radial-gradient(circle at top, #0a0a0a, #1a1a1a 100%); */
  font-family: 'Orbitron', sans-serif;
  /* background-image: url('/images/3c60f32b-3a56-4a25-b1ca-a75e17b3a268.webp'); */
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

/* Overlay */
/* .howbuy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
} */

.howbuy-container {
  position: relative;
  z-index: 2;
  /* max-width: 900px; */
  margin: auto;
  padding: 40px 30px;
  border-radius: 20px;
  /* background: rgba(0,0,0,0.4); */
  /* border: 2px solid rgba(57,255,20,0.6); */
  /* backdrop-filter: blur(12px); */
  /* box-shadow:  */
    /* 0 0 25px rgba(57,255,20,0.15), */
    /* inset 0 0 18px rgba(57,255,20,0.08); */
}

.howbuy-title {
  text-align: center;
  font-size: 2.5rem;
  color: #37fd48;
  margin-bottom: 12px;
}

.howbuy-subtitle {
  text-align: center;
  color: #b5f7a1;
  margin-bottom: 40px;
  opacity: 0.85;
}

/* Steps */
/* HOW TO BUY SECTION - RESPONSIVE LAYOUT */
.steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Desktop/Web View (row) */
@media (min-width: 900px) {
  .steps-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }

  .buy-step {
    width: 23%;
  }

  .step-divider {
    display: none; /* Remove divider in row mode */
  }
}

/* Mobile View (column) */
@media (max-width: 899px) {
  .steps-wrapper {
    flex-direction: column;
  }

  .buy-step {
    width: 100%;
  }

  .step-divider {
    display: block; /* Show dividers on mobile */
  }
}


.buy-step {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(57,255,20,0.3);
  padding: 25px;
  border-radius: 15px;
  box-shadow: inset 0 0 10px rgba(57,255,20,0.1);
  transition: 0.3s ease;
}

.buy-step:hover {
  box-shadow:
    0 0 15px rgba(57,255,20,0.4),
    inset 0 0 12px rgba(57,255,20,0.15);
  transform: translateY(-3px);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0aff72, #00c853);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Audiowide', cursive;
  color: #000;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  box-shadow: 0 0 10px rgba(0,255,120,0.6);
}

.buy-step h3 {
  font-size: 1.3rem;
  color: #37fd48;
  margin-bottom: 10px;
}

.buy-step p {
  color: #c9ffc2;
  line-height: 1.5;
}

.step-list {
  margin: 10px 0 10px 20px;
}

.step-list li {
  color: #b5f7a1;
  line-height: 1.5;
}

/* Divider between steps */
.step-divider {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, #37fd48, transparent);
  opacity: 0.4;
}




/* FAQ Section */
.faq-section {
  padding: 80px 0;
  /* background-image: url('/images/3c60f32b-3a56-4a25-b1ca-a75e17b3a268.webp'); */
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  font-family: 'Orbitron', sans-serif;
  position: relative;
}


/* .faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
} */

.faq-title {
  position: relative;
  z-index: 999;
  text-align: center;
  font-size: 2.5rem;
  color: #37fd48;
  margin-bottom: 10px;
}

.faq-subtitle {
  position: relative;
  z-index: 999;
  text-align: center;
  color: #b5f7a1;
  margin-bottom: 40px;
  opacity: 0.85;
}

.faq-container {
  position: relative;
  z-index: 999;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(57,255,20,0.4);
  padding: 18px 20px;
  border-radius: 14px;
  transition: 0.3s ease;
  backdrop-filter: blur(8px);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #37fd48;
  font-size: 1.2rem;
  font-family: 'Audiowide', cursive;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
}

.faq-icon {
  font-size: 1.6rem;
  color: #37fd48;
  transition: 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: #c8ffcb;
  padding-top: 0;
}

.faq-answer p {
  margin: 0;
  padding-top: 14px;
  line-height: 1.6;
}

/* When active */
.faq-item.active .faq-answer {
  max-height: 450px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
