/* style/payment-methods-deposit-guide.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #000000;
  --bg-light: #f5f5f5;
  --login-button-color: #EA7C07;
}

.page-payment-methods-deposit-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--bg-dark);
}

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

.page-payment-methods-deposit-guide__section {
  padding: 60px 0;
}

.page-payment-methods-deposit-guide__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-payment-methods-deposit-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-payment-methods-deposit-guide__text-center {
  text-align: center;
}

.page-payment-methods-deposit-guide__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-payment-methods-deposit-guide__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-payment-methods-deposit-guide__light-bg .page-payment-methods-deposit-guide__section-title {
  color: var(--primary-color);
}

.page-payment-methods-deposit-guide__light-bg .page-payment-methods-deposit-guide__text-block,
.page-payment-methods-deposit-guide__light-bg .page-payment-methods-deposit-guide__guide-intro,
.page-payment-methods-deposit-guide__light-bg .page-payment-methods-deposit-guide__note,
.page-payment-methods-deposit-guide__light-bg .page-payment-methods-deposit-guide__faq-title,
.page-payment-methods-deposit-guide__light-bg .page-payment-methods-deposit-guide__faq-answer p {
  color: var(--text-dark);
}

.page-payment-methods-deposit-guide__light-bg .page-payment-methods-deposit-guide__faq-question {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.page-payment-methods-deposit-guide__btn-primary,
.page-payment-methods-deposit-guide__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-payment-methods-deposit-guide__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
  margin-right: 15px;
}

.page-payment-methods-deposit-guide__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-payment-methods-deposit-guide__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-payment-methods-deposit-guide__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

/* Hero Section */
.page-payment-methods-deposit-guide__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure spacing below fixed header */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-payment-methods-deposit-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
}

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

.page-payment-methods-deposit-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-weight: bold;
}

.page-payment-methods-deposit-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: var(--secondary-color);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods-deposit-guide__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Overview Section */
.page-payment-methods-deposit-guide__overview-section {
  background-color: var(--bg-dark);
}

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

.page-payment-methods-deposit-guide__feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-deposit-guide__feature-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-payment-methods-deposit-guide__feature-description {
  color: var(--text-light);
}

.page-payment-methods-deposit-guide__image-full-width,
.page-payment-methods-deposit-guide__image-half-width {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-deposit-guide__image-half-width {
  max-width: 70%;
}

/* Guide Section */
.page-payment-methods-deposit-guide__guide-item {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

.page-payment-methods-deposit-guide__guide-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-payment-methods-deposit-guide__guide-intro {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-payment-methods-deposit-guide__step-list {
  list-style-type: decimal;
  margin-left: 20px;
  padding-left: 0;
  color: var(--text-dark);
}

.page-payment-methods-deposit-guide__step-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-payment-methods-deposit-guide__highlight {
  color: #c0392b;
  font-weight: bold;
}

.page-payment-methods-deposit-guide__note {
  font-style: italic;
  margin-top: 20px;
  padding: 15px;
  background-color: rgba(var(--primary-color), 0.1);
  border-left: 5px solid var(--primary-color);
  border-radius: 4px;
  color: var(--text-dark);
}

/* Video Section */
.page-payment-methods-deposit-guide__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-payment-methods-deposit-guide__video,
.page-payment-methods-deposit-guide__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

/* Troubleshooting Section */
.page-payment-methods-deposit-guide__troubleshooting-section {
  background-color: var(--bg-dark);
}

.page-payment-methods-deposit-guide__issue-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
}

.page-payment-methods-deposit-guide__issue-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-payment-methods-deposit-guide__issue-description {
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-payment-methods-deposit-guide__solution-list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
  color: var(--text-light);
}

.page-payment-methods-deposit-guide__solution-list li {
  margin-bottom: 8px;
}

/* Security Section */
.page-payment-methods-deposit-guide__security-section {
  background-color: var(--bg-dark);
}

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

.page-payment-methods-deposit-guide__security-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
}

.page-payment-methods-deposit-guide__security-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-payment-methods-deposit-guide__security-description {
  color: var(--text-light);
}

/* Promotions Section */
.page-payment-methods-deposit-guide__promotions-section {
  background-color: var(--bg-dark);
}

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

.page-payment-methods-deposit-guide__promotion-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
}

.page-payment-methods-deposit-guide__promotion-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-payment-methods-deposit-guide__promotion-description {
  margin-bottom: 25px;
  color: var(--text-light);
}

/* FAQ Section */
.page-payment-methods-deposit-guide__faq-section {
  background-color: var(--bg-light);
}

.page-payment-methods-deposit-guide__faq-list {
  margin-top: 40px;
}

.page-payment-methods-deposit-guide__faq-item {
  background-color: var(--secondary-color);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-payment-methods-deposit-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.15em;
  color: var(--text-dark);
  background-color: var(--secondary-color);
  transition: background-color 0.3s ease;
}

.page-payment-methods-deposit-guide__faq-question:hover {
  background-color: var(--bg-light);
}

.page-payment-methods-deposit-guide__faq-title {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.15em;
}

.page-payment-methods-deposit-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.page-payment-methods-deposit-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-dark);
}

.page-payment-methods-deposit-guide__faq-answer p {
  padding-bottom: 20px;
  margin: 0;
  color: var(--text-dark);
}

.page-payment-methods-deposit-guide__faq-item.active .page-payment-methods-deposit-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px 30px;
}

.page-payment-methods-deposit-guide__faq-item.active .page-payment-methods-deposit-guide__faq-toggle {
  transform: rotate(45deg);
}

/* CTA Section */
.page-payment-methods-deposit-guide__cta-section {
  padding: 80px 0;
}

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

/* General Image Styles (ensure all images are responsive and not small icons) */
.page-payment-methods-deposit-guide img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensure images cover their area without distortion */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-payment-methods-deposit-guide__hero-title {
    font-size: 2.8em;
  }

  .page-payment-methods-deposit-guide__section-title {
    font-size: 2em;
  }

  .page-payment-methods-deposit-guide__image-half-width {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-deposit-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-payment-methods-deposit-guide__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure spacing below fixed header */
    padding-bottom: 40px;
  }

  .page-payment-methods-deposit-guide__hero-title {
    font-size: 2.2em;
  }

  .page-payment-methods-deposit-guide__hero-description {
    font-size: 1.1em;
  }

  .page-payment-methods-deposit-guide__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-payment-methods-deposit-guide__btn-primary,
  .page-payment-methods-deposit-guide__btn-secondary {
    width: 100% !important;
    margin-right: 0 !important;
    padding: 12px 20px;
  }

  .page-payment-methods-deposit-guide__section {
    padding: 40px 0;
  }

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

  .page-payment-methods-deposit-guide__text-block {
    font-size: 1em;
  }

  .page-payment-methods-deposit-guide__features-grid,
  .page-payment-methods-deposit-guide__security-features,
  .page-payment-methods-deposit-guide__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-payment-methods-deposit-guide__guide-item,
  .page-payment-methods-deposit-guide__issue-card,
  .page-payment-methods-deposit-guide__security-item,
  .page-payment-methods-deposit-guide__promotion-card {
    padding: 20px;
  }

  .page-payment-methods-deposit-guide__guide-title,
  .page-payment-methods-deposit-guide__issue-title,
  .page-payment-methods-deposit-guide__security-title,
  .page-payment-methods-deposit-guide__promotion-title {
    font-size: 1.4em;
  }

  .page-payment-methods-deposit-guide__image-full-width,
  .page-payment-methods-deposit-guide__image-half-width,
  .page-payment-methods-deposit-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-payment-methods-deposit-guide__video-section,
  .page-payment-methods-deposit-guide__video-container,
  .page-payment-methods-deposit-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-payment-methods-deposit-guide__container {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-payment-methods-deposit-guide__faq-answer {
    padding: 0 20px;
  }

  .page-payment-methods-deposit-guide__faq-item.active .page-payment-methods-deposit-guide__faq-answer {
    padding: 15px 20px;
  }
}