/* style/payment-methods-channels-details.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-payment-methods-channels-details {
  color: #ffffff; /* Light text for dark body background #121212 */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Main content background will be handled by sections */
}

/* Hero Section */
.page-payment-methods-channels-details__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  background-color: #1a1a1a; /* Slightly lighter dark background for this section */
}

.page-payment-methods-channels-details__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-payment-methods-channels-details__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
  display: block;
}

.page-payment-methods-channels-details__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
}

.page-payment-methods-channels-details__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-payment-methods-channels-details__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* CTA Buttons */
.page-payment-methods-channels-details__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-payment-methods-channels-details__btn-primary,
.page-payment-methods-channels-details__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

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

.page-payment-methods-channels-details__btn-primary:hover {
  background-color: #1e87b6;
  border-color: #1e87b6;
}

.page-payment-methods-channels-details__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-payment-methods-channels-details__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

/* Content Area */
.page-payment-methods-channels-details__content-area,
.page-payment-methods-channels-details__deposit-guide-section,
.page-payment-methods-channels-details__security-support-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff; /* Light background for content */
  color: #333333; /* Dark text for light background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.page-payment-methods-channels-details__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-payment-methods-channels-details__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-payment-methods-channels-details__text-block {
  font-size: 1.05em;
  margin-bottom: 25px;
  text-align: justify;
}

.page-payment-methods-channels-details__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-payment-methods-channels-details__benefit-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border-left: 5px solid #26A9E0;
}

.page-payment-methods-channels-details__benefit-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-payment-methods-channels-details__benefit-description {
  font-size: 0.95em;
  color: #555555;
}

/* Dark Section styles */
.page-payment-methods-channels-details__dark-section,
.page-payment-methods-channels-details__withdrawal-guide-section,
.page-payment-methods-channels-details__faq-section {
  background-color: #26A9E0; /* Primary brand color as background */
  color: #ffffff; /* White text for contrast */
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-channels-details__dark-section .page-payment-methods-channels-details__section-title,
.page-payment-methods-channels-details__dark-section .page-payment-methods-channels-details__section-title::after {
  color: #ffffff;
  background-color: #ffffff;
}

.page-payment-methods-channels-details__dark-section .page-payment-methods-channels-details__text-block {
  color: #f0f0f0;
}

/* Payment Method Cards */
.page-payment-methods-channels-details__method-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods-channels-details__method-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.page-payment-methods-channels-details__method-image {
  width: 100%;
  max-width: 400px; /* Constrain image width within card */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block;
}

.page-payment-methods-channels-details__method-title {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-payment-methods-channels-details__method-description {
  font-size: 0.95em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-payment-methods-channels-details__method-features {
  list-style: none;
  padding: 0;
  margin-top: auto; /* Push features to bottom */
  text-align: left;
  width: 100%;
  color: #f0f0f0;
}

.page-payment-methods-channels-details__method-features li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.page-payment-methods-channels-details__method-features li::before {
  content: '✓';
  color: #00ff00; /* Green checkmark */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* Guide Lists */
.page-payment-methods-channels-details__guide-list {
  list-style: none;
  padding: 0;
  counter-reset: guide-counter;
  margin-top: 30px;
}

.page-payment-methods-channels-details__guide-list li {
  counter-increment: guide-counter;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
  font-size: 1.05em;
}

.page-payment-methods-channels-details__guide-list li::before {
  content: counter(guide-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}

.page-payment-methods-channels-details__important-notes-title {
  font-size: 1.6em;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-payment-methods-channels-details__important-notes-list {
  list-style: disc;
  margin-left: 20px;
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-payment-methods-channels-details__important-notes-list li {
  margin-bottom: 10px;
}

/* FAQ Section */
.page-payment-methods-channels-details__faq-section {
  background-color: #1a1a1a; /* Darker background for FAQ */
  color: #ffffff;
}

.page-payment-methods-channels-details__faq-list {
  margin-top: 40px;
}

.page-payment-methods-channels-details__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly visible card on dark background */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-payment-methods-channels-details__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-payment-methods-channels-details__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-payment-methods-channels-details__faq-qtext {
  flex-grow: 1;
}

.page-payment-methods-channels-details__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 20px;
  text-align: center;
}

.page-payment-methods-channels-details__faq-item[open] .page-payment-methods-channels-details__faq-toggle {
  content: '−'; /* Changed by JS for better control */
}

.page-payment-methods-channels-details__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hide default details marker */
.page-payment-methods-channels-details__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-payment-methods-channels-details__faq-item summary::marker {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-payment-methods-channels-details__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }

  .page-payment-methods-channels-details__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-channels-details__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-payment-methods-channels-details__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-payment-methods-channels-details__description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-payment-methods-channels-details__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }

  .page-payment-methods-channels-details__btn-primary,
  .page-payment-methods-channels-details__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-payment-methods-channels-details__content-area,
  .page-payment-methods-channels-details__dark-section,
  .page-payment-methods-channels-details__deposit-guide-section,
  .page-payment-methods-channels-details__withdrawal-guide-section,
  .page-payment-methods-channels-details__security-support-section,
  .page-payment-methods-channels-details__faq-section {
    padding: 30px 15px;
    margin-bottom: 25px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-payment-methods-channels-details__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-payment-methods-channels-details__text-block {
    font-size: 0.95em;
    margin-bottom: 20px;
  }

  .page-payment-methods-channels-details__benefits-list,
  .page-payment-methods-channels-details__method-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-payment-methods-channels-details__benefit-item {
    padding: 25px;
  }

  .page-payment-methods-channels-details__method-card {
    padding: 20px;
  }

  .page-payment-methods-channels-details__method-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-payment-methods-channels-details__guide-list li {
    font-size: 1em;
    padding-left: 35px;
  }

  .page-payment-methods-channels-details__guide-list li::before {
    width: 25px;
    height: 25px;
    font-size: 0.8em;
  }

  .page-payment-methods-channels-details__important-notes-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-payment-methods-channels-details__important-notes-list {
    font-size: 0.95em;
  }

  .page-payment-methods-channels-details__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-payment-methods-channels-details__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  /* Ensure all images are responsive and do not overflow */
  .page-payment-methods-channels-details img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-payment-methods-channels-details__hero-image-wrapper,
  .page-payment-methods-channels-details__method-card-grid,
  .page-payment-methods-channels-details__method-card,
  .page-payment-methods-channels-details__cta-buttons,
  .page-payment-methods-channels-details__button-group,
  .page-payment-methods-channels-details__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-payment-methods-channels-details__video-section { /* If video section were present */
    padding-top: 10px !important;
  }

}

@media (max-width: 480px) {
  .page-payment-methods-channels-details__main-title {
    font-size: clamp(1.6em, 8vw, 2.2em);
  }

  .page-payment-methods-channels-details__section-title {
    font-size: 1.6em;
  }

  .page-payment-methods-channels-details__btn-primary,
  .page-payment-methods-channels-details__btn-secondary {
    padding: 10px 15px;
    font-size: 0.9em;
  }

  .page-payment-methods-channels-details__faq-question {
    font-size: 0.95em;
  }

  .page-payment-methods-channels-details__faq-answer {
    font-size: 0.9em;
  }
}

/* Specific color overrides based on body background and contrast */
.page-payment-methods-channels-details__dark-bg {
  background-color: #1a1a1a; /* Dark background for hero */
  color: #ffffff; /* Light text */
}

.page-payment-methods-channels-details__light-bg {
  background-color: #ffffff; /* Light background for content sections */
  color: #333333; /* Dark text */
}

.page-payment-methods-channels-details__dark-section {
  background-color: #26A9E0; /* Primary brand color as background */
  color: #ffffff; /* White text for contrast */
}

.page-payment-methods-channels-details__dark-section .page-payment-methods-channels-details__section-title {
  color: #ffffff; /* Ensure title is white on brand color background */
}

.page-payment-methods-channels-details__dark-section .page-payment-methods-channels-details__section-title::after {
  background-color: #ffffff; /* White underline on brand color background */
}

.page-payment-methods-channels-details__dark-section .page-payment-methods-channels-details__method-title {
  color: #ffffff;
}

.page-payment-methods-channels-details__dark-section .page-payment-methods-channels-details__method-description,
.page-payment-methods-channels-details__dark-section .page-payment-methods-channels-details__method-features li {
  color: #f0f0f0;
}

.page-payment-methods-channels-details__dark-section .page-payment-methods-channels-details__faq-item,
.page-payment-methods-channels-details__dark-section .page-payment-methods-channels-details__faq-question {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.page-payment-methods-channels-details__dark-section .page-payment-methods-channels-details__faq-answer {
  background-color: rgba(255, 255, 255, 0.03);
  border-top-color: rgba(255, 255, 255, 0.05);
}

/* Login button color */
.page-payment-methods-channels-details__login-btn {
  background-color: #EA7C07;
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}
.page-payment-methods-channels-details__login-btn:hover {
  background-color: #c96a06;
  border-color: #c96a06;
}