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

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --background-dark: #0a0a0a;
  --text-light: #ffffff;
  --text-dark: #333333;
  --button-register-bg: #C30808;
  --button-login-bg: #C30808;
  --button-text-yellow: #FFFF00;
  --card-bg-light: #ffffff;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
}

.page-payment-methods-deposit-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for the page content, assuming dark body bg */
  background-color: var(--background-dark); /* Should match body background from shared.css */
}

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

.page-payment-methods-deposit-guide__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  padding-bottom: 80px;
  text-align: center;
  background-color: var(--primary-color);
  overflow: hidden;
}

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

.page-payment-methods-deposit-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the background image for text readability */
}

.page-payment-methods-deposit-guide__hero-section .page-payment-methods-deposit-guide__container {
  position: relative;
  z-index: 1;
  color: var(--text-light);
}

.page-payment-methods-deposit-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

.page-payment-methods-deposit-guide__btn-primary {
  background-color: var(--button-register-bg);
  color: var(--button-text-yellow);
  border: 2px solid var(--button-register-bg);
}

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

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

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

.page-payment-methods-deposit-guide__link-in-text {
  color: var(--button-text-yellow);
  text-decoration: underline;
}

.page-payment-methods-deposit-guide__link-in-text:hover {
  color: lighten(var(--button-text-yellow), 10%);
}

.page-payment-methods-deposit-guide__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
}

.page-payment-methods-deposit-guide__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods-deposit-guide__why-choose-us {
  padding: 80px 0;
  background-color: var(--card-bg-light);
  color: var(--text-dark);
}

.page-payment-methods-deposit-guide__why-choose-us .page-payment-methods-deposit-guide__section-title,
.page-payment-methods-deposit-guide__why-choose-us .page-payment-methods-deposit-guide__section-intro {
  color: var(--text-dark);
}

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

.page-payment-methods-deposit-guide__feature-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: var(--text-dark);
}

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

.page-payment-methods-deposit-guide__card-text {
  font-size: 1em;
  color: var(--text-dark);
}

.page-payment-methods-deposit-guide__methods-section {
  padding: 80px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-payment-methods-deposit-guide__methods-section .page-payment-methods-deposit-guide__section-title,
.page-payment-methods-deposit-guide__methods-section .page-payment-methods-deposit-guide__section-intro {
  color: var(--text-light);
}

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

.page-payment-methods-deposit-guide__method-card {
  background-color: var(--card-bg-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
}

.page-payment-methods-deposit-guide__method-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-payment-methods-deposit-guide__method-card .page-payment-methods-deposit-guide__card-title {
  color: var(--secondary-color);
}

.page-payment-methods-deposit-guide__method-steps {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-payment-methods-deposit-guide__method-steps li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: var(--text-light);
}

.page-payment-methods-deposit-guide__method-steps li::before {
  content: '✓';
  color: var(--button-text-yellow);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-payment-methods-deposit-guide__card-advantage {
  font-style: italic;
  margin-top: 20px;
  color: var(--secondary-color);
}

.page-payment-methods-deposit-guide__guide-steps {
  padding: 80px 0;
  background-color: var(--card-bg-light);
  color: var(--text-dark);
}

.page-payment-methods-deposit-guide__guide-steps .page-payment-methods-deposit-guide__section-title,
.page-payment-methods-deposit-guide__guide-steps .page-payment-methods-deposit-guide__section-intro {
  color: var(--text-dark);
}

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

.page-payment-methods-deposit-guide__step-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  color: var(--text-dark);
}

.page-payment-methods-deposit-guide__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--secondary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid var(--secondary-color);
}

.page-payment-methods-deposit-guide__step-card .page-payment-methods-deposit-guide__card-title {
  margin-top: 30px;
  color: var(--primary-color);
}

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

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

.page-payment-methods-deposit-guide__important-notes {
  padding: 80px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-payment-methods-deposit-guide__important-notes .page-payment-methods-deposit-guide__section-title,
.page-payment-methods-deposit-guide__important-notes .page-payment-methods-deposit-guide__section-intro {
  color: var(--text-light);
}

.page-payment-methods-deposit-guide__notes-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-payment-methods-deposit-guide__notes-list li {
  background-color: var(--card-bg-dark);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  padding-left: 50px;
  color: var(--text-light);
}

.page-payment-methods-deposit-guide__notes-list li::before {
  content: '⚠️';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
}

.page-payment-methods-deposit-guide__faq-section {
  padding: 80px 0;
  background-color: var(--card-bg-light);
  color: var(--text-dark);
}

.page-payment-methods-deposit-guide__faq-section .page-payment-methods-deposit-guide__section-title,
.page-payment-methods-deposit-guide__faq-section .page-payment-methods-deposit-guide__section-intro {
  color: var(--text-dark);
}

.page-payment-methods-deposit-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

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

.page-payment-methods-deposit-guide__faq-item.active .page-payment-methods-deposit-guide__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 20px;
}

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

.page-payment-methods-deposit-guide__cta-bottom {
  padding: 80px 0;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-payment-methods-deposit-guide__cta-bottom .page-payment-methods-deposit-guide__section-title,
.page-payment-methods-deposit-guide__cta-bottom .page-payment-methods-deposit-guide__section-intro {
  color: var(--text-light);
}

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

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

@media (max-width: 768px) {
  .page-payment-methods-deposit-guide__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 60px;
  }

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

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

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

  .page-payment-methods-deposit-guide__section-intro {
    font-size: 0.95em;
  }

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

  .page-payment-methods-deposit-guide__btn-primary,
  .page-payment-methods-deposit-guide__btn-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-payment-methods-deposit-guide__why-choose-us,
  .page-payment-methods-deposit-guide__methods-section,
  .page-payment-methods-deposit-guide__guide-steps,
  .page-payment-methods-deposit-guide__important-notes,
  .page-payment-methods-deposit-guide__faq-section,
  .page-payment-methods-deposit-guide__cta-bottom {
    padding: 60px 0;
  }

  .page-payment-methods-deposit-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-payment-methods-deposit-guide__section,
  .page-payment-methods-deposit-guide__card,
  .page-payment-methods-deposit-guide__container,
  .page-payment-methods-deposit-guide__cta-buttons,
  .page-payment-methods-deposit-guide__methods-grid,
  .page-payment-methods-deposit-guide__steps-grid,
  .page-payment-methods-deposit-guide__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  .page-payment-methods-deposit-guide__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .page-payment-methods-deposit-guide__step-number {
    font-size: 1.5em;
    width: 40px;
    height: 40px;
    top: -15px;
  }

  .page-payment-methods-deposit-guide__notes-list li {
    padding-left: 40px;
  }

  .page-payment-methods-deposit-guide__notes-list li::before {
    font-size: 1.2em;
    left: 10px;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-deposit-guide__hero-title {
    font-size: 1.8em;
  }

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

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

  .page-payment-methods-deposit-guide__btn-primary,
  .page-payment-methods-deposit-guide__btn-secondary {
    font-size: 0.9em;
  }

  .page-payment-methods-deposit-guide__card-title {
    font-size: 1.3em;
  }

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