/* style/resources-deposit-withdrawal-guide.css */

:root {
  --primary-color: #FFD700;
  --secondary-color: #2F4F4F;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #121212;
  --bg-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-resources-deposit-withdrawal-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark (#121212), so main text is light */
  background-color: var(--bg-dark); /* Ensure consistency if body background is not inherited */
}

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

.page-resources-deposit-withdrawal-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-deposit-withdrawal-guide__hero-section {
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2a3a 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.page-resources-deposit-withdrawal-guide__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:1920x1080:alo 789,abstract,geometric,background]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-resources-deposit-withdrawal-guide__hero-section .page-resources-deposit-withdrawal-guide__container {
  position: relative;
  z-index: 1;
}

.page-resources-deposit-withdrawal-guide__main-title {
  font-size: 48px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-resources-deposit-withdrawal-guide__description {
  font-size: 18px;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-resources-deposit-withdrawal-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-deposit-withdrawal-guide__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: nowrap; /* Prevent text wrapping on desktop */
}

.page-resources-deposit-withdrawal-guide__btn-primary {
  background: var(--primary-color);
  color: var(--secondary-color); /* Dark text on bright gold for contrast */
}

.page-resources-deposit-withdrawal-guide__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

.page-resources-deposit-withdrawal-guide__btn-secondary:hover {
  background: #1a2a3a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-deposit-withdrawal-guide__heading {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-resources-deposit-withdrawal-guide__paragraph {
  font-size: 17px;
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto 30px auto;
}

/* Why Choose Section */
.page-resources-deposit-withdrawal-guide__why-choose {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

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

.page-resources-deposit-withdrawal-guide__feature-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-resources-deposit-withdrawal-guide__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-deposit-withdrawal-guide__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}

.page-resources-deposit-withdrawal-guide__feature-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-deposit-withdrawal-guide__feature-text {
  font-size: 16px;
  color: var(--text-light);
}

/* Card general style */
.page-resources-deposit-withdrawal-guide__card {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark body */
  color: var(--text-light);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 25px;
  text-align: left;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-resources-deposit-withdrawal-guide__card h3 {
  color: var(--primary-color);
  font-size: 22px;
  margin-bottom: 15px;
}

.page-resources-deposit-withdrawal-guide__card p,
.page-resources-deposit-withdrawal-guide__card li {
  color: var(--text-light);
  font-size: 16px;
}

/* Deposit Guide Section */
.page-resources-deposit-withdrawal-guide__deposit-guide {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-resources-deposit-withdrawal-guide__method-card {
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.08);
}

.page-resources-deposit-withdrawal-guide__method-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-deposit-withdrawal-guide__method-description {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 25px;
}

.page-resources-deposit-withdrawal-guide__steps-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-resources-deposit-withdrawal-guide__steps-list li {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}

.page-resources-deposit-withdrawal-guide__steps-list li strong {
  color: var(--primary-color);
}

.page-resources-deposit-withdrawal-guide__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.page-resources-deposit-withdrawal-guide__method-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-deposit-withdrawal-guide__note {
  font-size: 15px;
  color: var(--primary-color);
  font-style: italic;
  margin-top: 20px;
}

.page-resources-deposit-withdrawal-guide__highlight {
  color: var(--primary-color);
  font-weight: bold;
}

/* Withdrawal Guide Section */
.page-resources-deposit-withdrawal-guide__withdrawal-guide {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.page-resources-deposit-withdrawal-guide__withdrawal-guide .page-resources-deposit-withdrawal-guide__heading {
  color: var(--primary-color);
}

.page-resources-deposit-withdrawal-guide__withdrawal-guide .page-resources-deposit-withdrawal-guide__paragraph {
  color: var(--text-light);
}

.page-resources-deposit-withdrawal-guide__tips-card {
  background: var(--bg-light);
  color: var(--text-dark);
}

.page-resources-deposit-withdrawal-guide__tips-card h3 {
  color: var(--secondary-color);
}

.page-resources-deposit-withdrawal-guide__tips-card p,
.page-resources-deposit-withdrawal-guide__tips-card li {
  color: var(--text-dark);
}

.page-resources-deposit-withdrawal-guide__tips-list {
  list-style-type: disc;
  padding-left: 25px;
  text-align: left;
}

.page-resources-deposit-withdrawal-guide__tips-list li {
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 16px;
}

/* Security Measures Section */
.page-resources-deposit-withdrawal-guide__security-measures {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-resources-deposit-withdrawal-guide__security-list {
  list-style-type: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-deposit-withdrawal-guide__security-list li {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
}

.page-resources-deposit-withdrawal-guide__security-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 20px;
}

.page-resources-deposit-withdrawal-guide__security-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-resources-deposit-withdrawal-guide__faq-section {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.page-resources-deposit-withdrawal-guide__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-resources-deposit-withdrawal-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.page-resources-deposit-withdrawal-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--secondary-color);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-deposit-withdrawal-guide__faq-question:hover {
  background: #1a2a3a;
  border-color: var(--primary-color);
}

.page-resources-deposit-withdrawal-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary-color);
  pointer-events: none;
}

.page-resources-deposit-withdrawal-guide__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-resources-deposit-withdrawal-guide__faq-item.active .page-resources-deposit-withdrawal-guide__faq-toggle {
  transform: rotate(180deg);
  color: var(--text-light);
}

.page-resources-deposit-withdrawal-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: var(--text-light);
  text-align: left;
}

.page-resources-deposit-withdrawal-guide__faq-item.active .page-resources-deposit-withdrawal-guide__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: #1a2a3a;
  border-radius: 0 0 8px 8px;
}

.page-resources-deposit-withdrawal-guide__faq-answer p {
  margin: 0;
  color: var(--text-light);
}

/* Call to Action Section */
.page-resources-deposit-withdrawal-guide__call-to-action {
  background: linear-gradient(90deg, var(--primary-color) 0%, #e6c200 100%);
  color: var(--secondary-color);
  padding: 80px 0;
}

.page-resources-deposit-withdrawal-guide__call-to-action .page-resources-deposit-withdrawal-guide__heading {
  color: var(--secondary-color);
  text-shadow: none;
}

.page-resources-deposit-withdrawal-guide__call-to-action .page-resources-deposit-withdrawal-guide__paragraph {
  color: var(--secondary-color);
  font-weight: 500;
}

.page-resources-deposit-withdrawal-guide__call-to-action .page-resources-deposit-withdrawal-guide__cta-button {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-deposit-withdrawal-guide__call-to-action .page-resources-deposit-withdrawal-guide__cta-button:hover {
  background: #1a2a3a;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-deposit-withdrawal-guide__main-title {
    font-size: 40px;
  }
  .page-resources-deposit-withdrawal-guide__heading {
    font-size: 30px;
  }
  .page-resources-deposit-withdrawal-guide__feature-icon {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .page-resources-deposit-withdrawal-guide__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-deposit-withdrawal-guide__section {
    padding: 40px 0 !important;
  }

  .page-resources-deposit-withdrawal-guide__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 60px !important;
  }

  .page-resources-deposit-withdrawal-guide__main-title {
    font-size: 32px !important;
    margin-bottom: 15px !important;
  }

  .page-resources-deposit-withdrawal-guide__description {
    font-size: 16px !important;
    margin-bottom: 30px !important;
  }

  .page-resources-deposit-withdrawal-guide__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px !important;
  }

  .page-resources-deposit-withdrawal-guide__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-deposit-withdrawal-guide__heading {
    font-size: 26px !important;
    margin-bottom: 20px !important;
  }

  .page-resources-deposit-withdrawal-guide__paragraph {
    font-size: 15px !important;
    margin-bottom: 25px !important;
  }

  .page-resources-deposit-withdrawal-guide__feature-item {
    padding: 25px !important;
  }

  .page-resources-deposit-withdrawal-guide__feature-icon {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 15px !important;
  }

  .page-resources-deposit-withdrawal-guide__feature-title {
    font-size: 20px !important;
  }

  .page-resources-deposit-withdrawal-guide__card {
    padding: 25px !important;
    margin-bottom: 20px !important;
  }

  .page-resources-deposit-withdrawal-guide__card h3 {
    font-size: 20px !important;
  }

  .page-resources-deposit-withdrawal-guide__card p,
  .page-resources-deposit-withdrawal-guide__card li {
    font-size: 15px !important;
  }

  .page-resources-deposit-withdrawal-guide__method-title {
    font-size: 24px !important;
  }

  .page-resources-deposit-withdrawal-guide__method-description {
    font-size: 16px !important;
  }

  .page-resources-deposit-withdrawal-guide__steps-list li {
    font-size: 15px !important;
    padding-left: 25px !important;
  }

  .page-resources-deposit-withdrawal-guide__steps-list li::before {
    width: 20px !important;
    height: 20px !important;
    font-size: 12px !important;
  }

  .page-resources-deposit-withdrawal-guide__method-image,
  .page-resources-deposit-withdrawal-guide__security-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 6px !important;
  }

  .page-resources-deposit-withdrawal-guide__note {
    font-size: 14px !important;
  }

  .page-resources-deposit-withdrawal-guide__security-list li {
    font-size: 15px !important;
    padding-left: 30px !important;
  }

  .page-resources-deposit-withdrawal-guide__security-list li::before {
    font-size: 18px !important;
  }

  .page-resources-deposit-withdrawal-guide__faq-question {
    padding: 15px 20px !important;
  }

  .page-resources-deposit-withdrawal-guide__faq-question h3 {
    font-size: 16px !important;
  }

  .page-resources-deposit-withdrawal-guide__faq-toggle {
    font-size: 24px !important;
    width: 28px !important;
    height: 28px !important;
  }

  .page-resources-deposit-withdrawal-guide__faq-answer {
    padding: 0 20px !important;
  }

  .page-resources-deposit-withdrawal-guide__faq-item.active .page-resources-deposit-withdrawal-guide__faq-answer {
    padding: 15px 20px !important;
  }

  .page-resources-deposit-withdrawal-guide__call-to-action {
    padding: 60px 0 !important;
  }
}