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

/* Custom Colors */
:root {
  --qh87-win-primary: #11A84E;
  --qh87-win-secondary: #22C768;
  --qh87-win-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --qh87-win-card-bg: #11271B;
  --qh87-win-background: #08160F;
  --qh87-win-text-main: #F2FFF6;
  --qh87-win-text-secondary: #A7D9B8;
  --qh87-win-border: #2E7A4E;
  --qh87-win-glow: #57E38D;
  --qh87-win-gold: #F2C14E;
  --qh87-win-divider: #1E3A2A;
  --qh87-win-deep-green: #0A4B2C;
}

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-payment-methods-quick-deposit-guide {
  color: var(--qh87-win-text-main);
  background-color: var(--qh87-win-background);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

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

.page-payment-methods-quick-deposit-guide__dark-bg {
  background-color: var(--qh87-win-background);
  color: var(--qh87-win-text-main);
}

.page-payment-methods-quick-deposit-guide__light-bg {
  background-color: #f8f9fa; /* A very light background to contrast with dark text */
  color: #333333; /* Dark text for light background */
}

.page-payment-methods-quick-deposit-guide__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--qh87-win-gold);
  line-height: 1.2;
}

.page-payment-methods-quick-deposit-guide__dark-bg .page-payment-methods-quick-deposit-guide__section-title {
  color: var(--qh87-win-gold);
}

.page-payment-methods-quick-deposit-guide__light-bg .page-payment-methods-quick-deposit-guide__section-title {
  color: var(--qh87-win-deep-green);
}

.page-payment-methods-quick-deposit-guide__sub-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--qh87-win-gold);
}

.page-payment-methods-quick-deposit-guide__light-bg .page-payment-methods-quick-deposit-guide__sub-title {
  color: var(--qh87-win-deep-green);
}

.page-payment-methods-quick-deposit-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--qh87-win-text-secondary);
}

.page-payment-methods-quick-deposit-guide__light-bg .page-payment-methods-quick-deposit-guide__text-block {
  color: #555555;
}

.page-payment-methods-quick-deposit-guide p {
  margin-bottom: 15px;
}

.page-payment-methods-quick-deposit-guide ol, .page-payment-methods-quick-deposit-guide ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-payment-methods-quick-deposit-guide li {
  margin-bottom: 10px;
}

/* Hero Section */
.page-payment-methods-quick-deposit-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more at bottom */
  overflow: hidden;
}

.page-payment-methods-quick-deposit-guide__hero-image-wrapper {
  width: 100%;
  position: relative;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-payment-methods-quick-deposit-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-payment-methods-quick-deposit-guide__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content up slightly over the image if image is full height */
  background-color: rgba(8, 22, 15, 0.9); /* Dark background with slight transparency */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.page-payment-methods-quick-deposit-guide__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 900;
  color: var(--qh87-win-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-payment-methods-quick-deposit-guide__description {
  font-size: 1.2em;
  color: var(--qh87-win-text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-payment-methods-quick-deposit-guide__btn-primary {
  background: var(--qh87-win-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-payment-methods-quick-deposit-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 255, 0, 0.3);
}

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

.page-payment-methods-quick-deposit-guide__btn-secondary:hover {
  background-color: var(--qh87-win-gold);
  color: var(--qh87-win-background);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(242, 193, 78, 0.3);
}

/* Features Grid */
.page-payment-methods-quick-deposit-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods-quick-deposit-guide__feature-card {
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--qh87-win-border);
  background-color: var(--qh87-win-card-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-quick-deposit-guide__light-bg .page-payment-methods-quick-deposit-guide__feature-card {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-payment-methods-quick-deposit-guide__card-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--qh87-win-gold);
}

.page-payment-methods-quick-deposit-guide__light-bg .page-payment-methods-quick-deposit-guide__card-title {
  color: var(--qh87-win-deep-green);
}

/* Images */
.page-payment-methods-quick-deposit-guide img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-payment-methods-quick-deposit-guide__image-full-width {
  width: 100%;
  max-width: 100%;
  margin-bottom: 40px;
}

.page-payment-methods-quick-deposit-guide__image-content {
  width: 100%;
  max-width: 700px;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--qh87-win-border);
}

/* Method List */
.page-payment-methods-quick-deposit-guide__method-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-payment-methods-quick-deposit-guide__note {
  font-style: italic;
  color: var(--qh87-win-text-secondary);
  font-size: 0.95em;
  margin-top: 20px;
  border-left: 3px solid var(--qh87-win-gold);
  padding-left: 15px;
}

/* Step List */
.page-payment-methods-quick-deposit-guide__step-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 40px;
}

.page-payment-methods-quick-deposit-guide__step-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 30px;
}

.page-payment-methods-quick-deposit-guide__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--qh87-win-button-gradient);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-payment-methods-quick-deposit-guide__step-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--qh87-win-deep-green);
}

/* Promo Card */
.page-payment-methods-quick-deposit-guide__promo-card {
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
  border: 1px solid var(--qh87-win-border);
  background-color: var(--qh87-win-card-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-quick-deposit-guide__light-bg .page-payment-methods-quick-deposit-guide__promo-card {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-payment-methods-quick-deposit-guide__promo-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

/* FAQ Section */
.page-payment-methods-quick-deposit-guide__faq-list {
  margin-top: 40px;
}

.page-payment-methods-quick-deposit-guide__faq-item {
  background-color: var(--qh87-win-card-bg);
  border: 1px solid var(--qh87-win-border);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-payment-methods-quick-deposit-guide__light-bg .page-payment-methods-quick-deposit-guide__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
}

.page-payment-methods-quick-deposit-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2em;
  color: var(--qh87-win-gold);
  background-color: var(--qh87-win-deep-green);
}

.page-payment-methods-quick-deposit-guide__light-bg .page-payment-methods-quick-deposit-guide__faq-question {
  color: var(--qh87-win-deep-green);
  background-color: #f0f0f0;
}

.page-payment-methods-quick-deposit-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-payment-methods-quick-deposit-guide__faq-answer {
  padding: 0 20px 20px 20px;
  color: var(--qh87-win-text-secondary);
  font-size: 1.1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-payment-methods-quick-deposit-guide__light-bg .page-payment-methods-quick-deposit-guide__faq-answer {
  color: #555555;
}

/* For <details> tag, native handling for content display */
.page-payment-methods-quick-deposit-guide__faq-item[open] .page-payment-methods-quick-deposit-guide__faq-answer {
  max-height: 1000px; /* Sufficiently large to show content */
  transition: max-height 0.5s ease-in;
}

.page-payment-methods-quick-deposit-guide__faq-item summary {
  list-style: none;
}

.page-payment-methods-quick-deposit-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

/* Final CTA Section */
.page-payment-methods-quick-deposit-guide__cta-final {
  text-align: center;
  padding: 80px 0;
  background-color: var(--qh87-win-deep-green);
  color: var(--qh87-win-text-main);
}

.page-payment-methods-quick-deposit-guide__cta-final .page-payment-methods-quick-deposit-guide__section-title {
  color: var(--qh87-win-gold);
}

.page-payment-methods-quick-deposit-guide__cta-final .page-payment-methods-quick-deposit-guide__text-block {
  color: var(--qh87-win-text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-payment-methods-quick-deposit-guide__hero-content {
    margin-top: -50px;
  }

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

@media (max-width: 768px) {
  .page-payment-methods-quick-deposit-guide__section {
    padding: 40px 0;
  }

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

  .page-payment-methods-quick-deposit-guide__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-payment-methods-quick-deposit-guide__description {
    font-size: 1em;
  }

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

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

  .page-payment-methods-quick-deposit-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-payment-methods-quick-deposit-guide__section,
  .page-payment-methods-quick-deposit-guide__card,
  .page-payment-methods-quick-deposit-guide__container,
  .page-payment-methods-quick-deposit-guide__hero-section,
  .page-payment-methods-quick-deposit-guide__hero-image-wrapper,
  .page-payment-methods-quick-deposit-guide__hero-content,
  .page-payment-methods-quick-deposit-guide__features-grid,
  .page-payment-methods-quick-deposit-guide__method-list,
  .page-payment-methods-quick-deposit-guide__promo-card,
  .page-payment-methods-quick-deposit-guide__faq-list,
  .page-payment-methods-quick-deposit-guide__cta-final {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-payment-methods-quick-deposit-guide__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-payment-methods-quick-deposit-guide__step-item {
    padding-left: 50px;
  }

  .page-payment-methods-quick-deposit-guide__step-item::before {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }

  .page-payment-methods-quick-deposit-guide__step-title {
    font-size: 1.4em;
  }
}

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

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

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