/* style/payment-methods.css */
.page-payment-methods {
  color: #FFF6D6; /* Light text for dark body background */
  background-color: #0A0A0A;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-payment-methods__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-payment-methods__hero-section {
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  background-color: #111111;
  position: relative;
  overflow: hidden;
}

.page-payment-methods__hero-image {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 600px; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-payment-methods__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure image is not too small */
}

.page-payment-methods__hero-content {
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.page-payment-methods__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: #FFD36B;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-payment-methods__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

.page-payment-methods__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-payment-methods__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  color: #111111;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 180px;
  text-align: center;
}

.page-payment-methods__button:hover {
  background: linear-gradient(180deg, #FFE699 0%, #E6B033 100%);
  transform: translateY(-2px);
}

.page-payment-methods__button--secondary {
  background: none;
  border: 2px solid #FFD36B;
  color: #FFD36B;
}

.page-payment-methods__button--secondary:hover {
  background: rgba(255, 211, 107, 0.1);
  color: #FFF6D6;
}

.page-payment-methods__button--small {
  padding: 10px 20px;
  font-size: 1rem;
  min-width: unset;
}

.page-payment-methods__button--large {
  padding: 18px 35px;
  font-size: 1.2rem;
  min-width: 220px;
}

.page-payment-methods__button--disabled {
  background: #3A2A12;
  color: #999999;
  cursor: not-allowed;
}

.page-payment-methods__overview-section,
.page-payment-methods__deposit-methods,
.page-payment-methods__withdrawal-process,
.page-payment-methods__faq-section,
.page-payment-methods__cta-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-payment-methods__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #FFD36B;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-payment-methods__section-description {
  font-size: 1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #FFF6D6;
}

.page-payment-methods__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods__feature-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-payment-methods__feature-card:hover {
  transform: translateY(-5px);
}

.page-payment-methods__feature-card img {
  width: 100%;
  height: auto;
  max-width: 400px;
  max-height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-payment-methods__feature-title {
  font-size: 1.4rem;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-payment-methods__feature-text {
  font-size: 0.95rem;
  color: #FFF6D6;
}

.page-payment-methods__method-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods__method-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-payment-methods__method-card:hover {
  transform: translateY(-5px);
}

.page-payment-methods__method-card img {
  width: 100%;
  height: auto;
  max-width: 600px;
  max-height: 450px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-payment-methods__method-title {
  font-size: 1.5rem;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-payment-methods__method-text {
  font-size: 0.95rem;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-payment-methods__note-text {
  font-size: 0.9rem;
  color: #999999;
  text-align: center;
  margin-top: 40px;
}

.page-payment-methods__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods__step-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__step-title {
  font-size: 1.3rem;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-payment-methods__step-text {
  font-size: 0.9rem;
  color: #FFF6D6;
}

.page-payment-methods__faq-accordion {
  margin-top: 40px;
}

.page-payment-methods__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-payment-methods__faq-question {
  font-size: 1.1rem;
  color: #FFD36B;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-payment-methods__faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #F2C14E;
  transition: transform 0.3s ease;
}

.page-payment-methods__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-payment-methods__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  color: #FFF6D6;
  padding: 0 20px;
}

.page-payment-methods__faq-answer.open {
  max-height: 200px; /* Adjust as needed for content */
  padding-bottom: 20px;
}

.page-payment-methods__faq-answer p {
  margin: 0;
  padding: 0;
}

.page-payment-methods__cta-section {
  background-color: #111111;
  text-align: center;
}

.page-payment-methods__cta-content {
  padding: 60px 20px;
  border: 1px solid #3A2A12;
  border-radius: 10px;
}

.page-payment-methods__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .page-payment-methods__hero-content {
    padding: 30px 15px;
  }

  .page-payment-methods__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-payment-methods__hero-description {
    font-size: 1rem;
  }

  .page-payment-methods__button {
    width: 100%;
    max-width: 250px;
  }

  .page-payment-methods__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .page-payment-methods__section-description {
    font-size: 0.95rem;
  }

  .page-payment-methods__features-grid,
  .page-payment-methods__method-list,
  .page-payment-methods__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-payment-methods__feature-card img,
  .page-payment-methods__method-card img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-payment-methods__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-payment-methods__faq-answer {
    padding: 0 15px;
  }

  .page-payment-methods__faq-answer.open {
    padding-bottom: 15px;
  }

  .page-payment-methods__cta-content {
    padding: 40px 15px;
  }

  .page-payment-methods__cta-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Ensure images do not cause horizontal scroll */
  .page-payment-methods img {
    max-width: 100%;
    height: auto;
  }
}