/* style/payment-methods-guide.css */
/* body background is #0a0a0a (dark), so main text color should be light */

.page-payment-methods-guide {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-payment-methods-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
}

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

.page-payment-methods-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-payment-methods-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: #ffffff;
}

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

.page-payment-methods-guide__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

.page-payment-methods-guide__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-payment-methods-guide__btn-primary:hover {
  background-color: #c96806;
  border-color: #c96806;
}

.page-payment-methods-guide__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

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

.page-payment-methods-guide__section-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0;
}

.page-payment-methods-guide__overview-section,
.page-payment-methods-guide__withdrawal-guide,
.page-payment-methods-guide__faq-section {
  background-color: #ffffff; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
  padding: 60px 0;
}

.page-payment-methods-guide__deposit-guide,
.page-payment-methods-guide__important-notes,
.page-payment-methods-guide__dark-bg {
  background-color: #1a1a1a; /* Darker background */
  color: #ffffff;
  padding: 60px 0;
}

.page-payment-methods-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 25px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods-guide__overview-section .page-payment-methods-guide__section-title,
.page-payment-methods-guide__withdrawal-guide .page-payment-methods-guide__section-title,
.page-payment-methods-guide__faq-section .page-payment-methods-guide__section-title {
  color: #26A9E0;
}

.page-payment-methods-guide__deposit-guide .page-payment-methods-guide__section-title,
.page-payment-methods-guide__important-notes .page-payment-methods-guide__section-title {
  color: #ffffff;
}

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

.page-payment-methods-guide__card {
  background: rgba(255, 255, 255, 0.95); /* Slightly transparent white for light sections */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: #333333;
}

.page-payment-methods-guide__card--transparent {
  background: rgba(255, 255, 255, 0.1); /* For dark sections */
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-payment-methods-guide__card:hover {
  transform: translateY(-5px);
}

.page-payment-methods-guide__card-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-payment-methods-guide__card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-payment-methods-guide__card--transparent .page-payment-methods-guide__card-title {
  color: #26A9E0;
}

.page-payment-methods-guide__card-text {
  font-size: 1em;
  color: inherit;
}

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

.page-payment-methods-guide__step-item {
  text-align: center;
  padding: 25px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05); /* Slightly transparent for dark sections */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-guide__step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #26A9E0;
  color: #ffffff;
  font-size: 1.8em;
  font-weight: 700;
  margin: 0 auto 20px;
}

.page-payment-methods-guide__step-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-payment-methods-guide__step-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-payment-methods-guide__callout {
  background-color: rgba(38, 169, 224, 0.2); /* Light blue background */
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-top: 40px;
  border-radius: 5px;
  text-align: center;
  color: #ffffff;
}

.page-payment-methods-guide__callout p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-payment-methods-guide__image-block {
  text-align: center;
  margin-top: 40px;
}

.page-payment-methods-guide__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-guide__image-caption {
  font-style: italic;
  margin-top: 15px;
  font-size: 0.95em;
  color: #555555;
}

.page-payment-methods-guide__important-notes .page-payment-methods-guide__text-block {
  color: #f0f0f0;
}

.page-payment-methods-guide__bullet-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-payment-methods-guide__bullet-list li {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #ffffff;
  position: relative;
  padding-left: 40px;
}

.page-payment-methods-guide__bullet-list li::before {
  content: '✓';
  color: #26A9E0;
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 1.2em;
}

.page-payment-methods-guide__bullet-list strong {
  color: #26A9E0;
}

.page-payment-methods-guide__cta-block {
  background-color: #26A9E0;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-top: 40px;
  color: #ffffff;
}

.page-payment-methods-guide__cta-block p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.page-payment-methods-guide__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods-guide__faq-item {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-payment-methods-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  background-color: #ffffff;
  color: #333333;
  border-bottom: 1px solid #e0e0e0;
  list-style: none;
}

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

.page-payment-methods-guide__faq-question:hover {
  background-color: #f0f0f0;
}

.page-payment-methods-guide__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  margin-left: 15px;
}

.page-payment-methods-guide__faq-answer {
  padding: 15px 20px;
  font-size: 1em;
  color: #555555;
  background-color: #fdfdfd;
  border-top: 1px solid #e0e0e0;
}

.page-payment-methods-guide__faq-item[open] .page-payment-methods-guide__faq-question {
  border-bottom: none;
}

.page-payment-methods-guide__dark-bg p,
.page-payment-methods-guide__dark-bg li {
  color: #f0f0f0;
}

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

@media (max-width: 768px) {
  .page-payment-methods-guide__container {
    padding: 0 15px;
  }

  .page-payment-methods-guide__hero-section,
  .page-payment-methods-guide__overview-section,
  .page-payment-methods-guide__deposit-guide,
  .page-payment-methods-guide__withdrawal-guide,
  .page-payment-methods-guide__important-notes,
  .page-payment-methods-guide__faq-section {
    padding: 40px 0;
  }

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

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

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

  .page-payment-methods-guide__btn-primary,
  .page-payment-methods-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
  }

  .page-payment-methods-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-payment-methods-guide__text-block {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-payment-methods-guide__grid,
  .page-payment-methods-guide__step-by-step {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-payment-methods-guide__card {
    padding: 20px;
  }

  .page-payment-methods-guide__card-image {
    height: 150px;
  }

  .page-payment-methods-guide__step-item {
    padding: 20px;
  }

  .page-payment-methods-guide__bullet-list li {
    padding: 12px 15px 12px 40px;
    font-size: 0.95em;
  }

  .page-payment-methods-guide__bullet-list li::before {
    top: 12px;
  }

  .page-payment-methods-guide__cta-block p {
    font-size: 1.1em;
  }

  .page-payment-methods-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-payment-methods-guide__section,
  .page-payment-methods-guide__card,
  .page-payment-methods-guide__container,
  .page-payment-methods-guide__hero-section,
  .page-payment-methods-guide__overview-section,
  .page-payment-methods-guide__deposit-guide,
  .page-payment-methods-guide__withdrawal-guide,
  .page-payment-methods-guide__important-notes,
  .page-payment-methods-guide__faq-section,
  .page-payment-methods-guide__cta-buttons,
  .page-payment-methods-guide__button-group,
  .page-payment-methods-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-payment-methods-guide__hero-section,
  .page-payment-methods-guide__video-section {
    padding-top: 10px !important; /* body đã xử lý --header-offset */
  }

  /* Ensure video wrapper for responsive videos */
  .page-payment-methods-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-payment-methods-guide__faq-answer {
    font-size: 0.95em;
    padding: 10px 15px;
  }
}