/* style/payment-methods.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-payment-methods {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-payment-methods__section {
  padding: 60px 0;
}

.page-payment-methods__dark-bg {
  background-color: #0a0a0a; /* Ensure dark sections have dark background */
  color: #ffffff;
}

.page-payment-methods__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

.page-payment-methods__heading {
  font-size: clamp(28px, 4vw, 42px); /* Responsive font size */
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0; /* Brand color for headings */
  line-height: 1.2;
}

.page-payment-methods__text {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #f0f0f0;
}

/* Hero Section */
.page-payment-methods__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
}

.page-payment-methods__hero-image-wrapper {
  width: 100%;
  max-height: 70vh; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

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

.page-payment-methods__hero-content {
  position: relative; /* Ensure content is above image if z-index is used elsewhere */
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-payment-methods__main-title {
  font-size: clamp(32px, 5vw, 56px); /* Large, responsive title */
  font-weight: 800;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.1;
}

.page-payment-methods__description {
  font-size: 20px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-payment-methods__btn-primary,
.page-payment-methods__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure button responsiveness */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
  text-align: center;
}

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

.page-payment-methods__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-payment-methods__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-payment-methods__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
}

/* Why Choose Section */
.page-payment-methods__why-choose .page-payment-methods__text {
  margin-bottom: 60px;
}

.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-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for dark background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__feature-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-payment-methods__feature-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-payment-methods__feature-description {
  font-size: 16px;
  color: #f0f0f0;
}

/* Deposit Methods Section */
.page-payment-methods__deposit-methods .page-payment-methods__text {
  margin-bottom: 60px;
}

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

.page-payment-methods__method-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__method-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-
}

.page-payment-methods__method-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-payment-methods__method-description {
  font-size: 16px;
  color: #f0f0f0;
}

.page-payment-methods__cta-center {
  text-align: center;
  margin-top: 50px;
}

/* Deposit/Withdrawal Guide Sections */
.page-payment-methods__guide-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-payment-methods__guide-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__guide-step-title {
  font-size: 20px;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-payment-methods__guide-step-description {
  font-size: 16px;
  color: #f0f0f0;
}

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

.page-payment-methods__info-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__info-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-payment-methods__info-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-payment-methods__info-description {
  font-size: 16px;
  color: #f0f0f0;
}

/* Safety Tips Section */
.page-payment-methods__tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-payment-methods__tip-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__tip-title {
  font-size: 20px;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-payment-methods__tip-description {
  font-size: 16px;
  color: #f0f0f0;
}

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

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

.page-payment-methods__faq-item summary {
  list-style: none; /* Hide default marker */
  cursor: pointer;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #26A9E0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-payment-methods__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-payment-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-payment-methods__faq-qtext {
  flex-grow: 1;
  text-align: left;
}

.page-payment-methods__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #FFFFFF;
}

.page-payment-methods__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.03);
}

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

/* Final CTA Section */
.page-payment-methods__cta-final {
  padding: 80px 0;
  text-align: center;
}

.page-payment-methods__cta-final .page-payment-methods__heading {
  margin-bottom: 20px;
}

.page-payment-methods__cta-final .page-payment-methods__text {
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-payment-methods__hero-image-wrapper {
    max-height: 60vh;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__section {
    padding: 40px 0;
  }

  .page-payment-methods__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-payment-methods__main-title {
    font-size: clamp(28px, 8vw, 48px);
  }

  .page-payment-methods__description {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .page-payment-methods__heading {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 30px;
  }

  .page-payment-methods__text {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .page-payment-methods__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-payment-methods__btn-primary,
  .page-payment-methods__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
    width: 100% !important; /* Force full width on mobile */
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-payment-methods__container,
  .page-payment-methods__hero-content {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-payment-methods img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Enforce minimum size */
    min- /* Enforce minimum size */
  }

  .page-payment-methods__hero-image {
    min-height: 200px !important; /* Ensure hero image is not too small */
  }

  .page-payment-methods__feature-item img,
  .page-payment-methods__method-card img,
  .page-payment-methods__info-item img {
    min-width: 200px !important;
    min-
  }

  .page-payment-methods__feature-title,
  .page-payment-methods__method-title,
  .page-payment-methods__info-title {
    font-size: 20px;
  }

  .page-payment-methods__feature-description,
  .page-payment-methods__method-description,
  .page-payment-methods__info-description,
  .page-payment-methods__guide-step-description,
  .page-payment-methods__tip-description,
  .page-payment-methods__faq-answer p {
    font-size: 15px;
  }

  .page-payment-methods__guide-step-title,
  .page-payment-methods__tip-title {
    font-size: 18px;
  }

  .page-payment-methods__faq-item summary {
    font-size: 16px;
    padding: 15px 20px;
  }

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

@media (max-width: 480px) {
  .page-payment-methods__hero-image-wrapper {
    max-height: 50vh;
  }

  .page-payment-methods__section {
    padding: 30px 0;
  }
}