/* style/payment-methods.css */

/* Body background is dark (#0a0a0a), so text should be light */
.page-payment-methods {
  color: #ffffff; /* Default text color for the page */
  background-color: transparent; /* Main content area will inherit body background */
}

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

.page-payment-methods__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0;
  text-align: center;
  overflow: hidden;
}

.page-payment-methods__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-payment-methods__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-payment-methods__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  text-align: center;
}

.page-payment-methods__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  color: #26A9E0; /* Brand color for main title */
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-payment-methods__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0; /* Light text for readability on dark background */
}

.page-payment-methods__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-payment-methods__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-payment-methods__btn-primary:hover {
  background: #1e87b7;
  transform: translateY(-2px);
}

.page-payment-methods__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
  color: #26A9E0; /* Brand color for section titles */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.page-payment-methods__section-intro {
  text-align: center;
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #f0f0f0; /* Light text for readability */
}

.page-payment-methods__overview-section,
.page-payment-methods__deposit-section,
.page-payment-methods__withdrawal-section,
.page-payment-methods__faq-section,
.page-payment-methods__safety-tips-section,
.page-payment-methods__cta-section {
  padding: 60px 0;
}

.page-payment-methods__dark-section {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter dark background */
  color: #ffffff;
}

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

.page-payment-methods__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-payment-methods__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards on dark body */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  color: #ffffff; /* Light text on card background */
  height: 100%;
  box-sizing: border-box;
}

.page-payment-methods__card-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0; /* Brand color for card titles */
  line-height: 1.4;
}

.page-payment-methods__card p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-payment-methods__card-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-top: auto;
  display: block;
}

.page-payment-methods__list {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.page-payment-methods__list li {
  margin-bottom: 10px;
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
  position: relative;
  padding-left: 20px;
}

.page-payment-methods__list li::before {
  content: '•';
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-payment-methods__list-ordered {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 15px;
}

.page-payment-methods__list-ordered li {
  margin-bottom: 10px;
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
}

/* FAQ Section */
.page-payment-methods__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-payment-methods__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-payment-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-payment-methods__faq-question::-webkit-details-marker {
  display: none;
}

.page-payment-methods__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-payment-methods__faq-qtext {
  flex-grow: 1;
  color: #26A9E0;
}

.page-payment-methods__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  margin-left: 15px;
  color: #ffffff;
}

.page-payment-methods__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-payment-methods__faq-item[open] .page-payment-methods__faq-toggle {
  content: '−';
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-payment-methods__container {
    padding: 0 15px;
  }

  .page-payment-methods__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-payment-methods__main-title {
    font-size: 2em;
  }

  .page-payment-methods__description,
  .page-payment-methods__section-intro,
  .page-payment-methods__card p,
  .page-payment-methods__list li,
  .page-payment-methods__list-ordered li,
  .page-payment-methods__faq-answer p {
    font-size: 1em;
  }

  .page-payment-methods__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 auto;
  }

  .page-payment-methods__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-payment-methods__overview-section,
  .page-payment-methods__deposit-section,
  .page-payment-methods__withdrawal-section,
  .page-payment-methods__faq-section,
  .page-payment-methods__safety-tips-section,
  .page-payment-methods__cta-section {
    padding: 40px 0;
  }

  .page-payment-methods__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-payment-methods__card {
    padding: 25px;
  }

  .page-payment-methods__card-title {
    font-size: 1.4em;
  }

  /* Mobile image responsiveness */
  .page-payment-methods img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-payment-methods__hero-image-wrapper,
  .page-payment-methods__card,
  .page-payment-methods__container,
  .page-payment-methods__overview-section,
  .page-payment-methods__deposit-section,
  .page-payment-methods__withdrawal-section,
  .page-payment-methods__faq-section,
  .page-payment-methods__safety-tips-section,
  .page-payment-methods__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

/* Ensure content images are not too small */
.page-payment-methods__card-image {
  min-width: 200px;
  min-height: 150px; /* Adjust height for aspect ratio */
}

/* No CSS filters for images */
.page-payment-methods img {
  filter: none; /* Ensure no filters are applied */
}

/* Specific colors */
.page-payment-methods__login-button {
  background-color: #EA7C07;
  color: #ffffff;
}

.page-payment-methods__background-color {
  background-color: #FFFFFF;
}

.page-payment-methods__text-black {
  color: #000000;
}