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

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #121212; /* From shared.css body background */
  --btn-login: #EA7C07;
}

/* Base styles for the page */
.page-payment-methods-withdrawal-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Dark body background, so light text */
  background-color: var(--bg-dark);
}

.page-payment-methods-withdrawal-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  color: var(--text-light);
  background-color: var(--primary-color);
  overflow: hidden;
}

.page-payment-methods-withdrawal-guide__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-payment-methods-withdrawal-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-payment-methods-withdrawal-guide__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
}

.page-payment-methods-withdrawal-guide__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-payment-methods-withdrawal-guide__btn-primary,
.page-payment-methods-withdrawal-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-payment-methods-withdrawal-guide__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

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

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

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

.page-payment-methods-withdrawal-guide__btn-text-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
}

.page-payment-methods-withdrawal-guide__btn-text-link:hover {
  color: darken(var(--primary-color), 10%);
}

.page-payment-methods-withdrawal-guide__section {
  padding: 60px 20px;
  text-align: center;
}

.page-payment-methods-withdrawal-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: var(--text-light); /* Ensure light text on dark body background */
}

.page-payment-methods-withdrawal-guide__dark-bg {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter dark background */
  color: var(--text-light);
}

.page-payment-methods-withdrawal-guide__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-light);
}

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

.page-payment-methods-withdrawal-guide__method-card,
.page-payment-methods-withdrawal-guide__contact-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: var(--text-light);
}

.page-payment-methods-withdrawal-guide__method-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods-withdrawal-guide__method-title,
.page-payment-methods-withdrawal-guide__contact-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-payment-methods-withdrawal-guide__method-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.page-payment-methods-withdrawal-guide__method-list li {
  margin-bottom: 8px;
  color: var(--text-light);
}

.page-payment-methods-withdrawal-guide__steps-list,
.page-payment-methods-withdrawal-guide__rules-list,
.page-payment-methods-withdrawal-guide__tips-list,
.page-payment-methods-withdrawal-guide__security-features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-payment-methods-withdrawal-guide__step-item,
.page-payment-methods-withdrawal-guide__rule-item,
.page-payment-methods-withdrawal-guide__tip-item,
.page-payment-methods-withdrawal-guide__security-features li {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-payment-methods-withdrawal-guide__step-title,
.page-payment-methods-withdrawal-guide__rule-title,
.page-payment-methods-withdrawal-guide__tip-title,
.page-payment-methods-withdrawal-guide__feature-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-payment-methods-withdrawal-guide__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

.page-payment-methods-withdrawal-guide__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-payment-methods-withdrawal-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: var(--text-light);
}

.page-payment-methods-withdrawal-guide__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--primary-color);
  list-style: none;
}

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

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

.page-payment-methods-withdrawal-guide__faq-item[open] .page-payment-methods-withdrawal-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-payment-methods-withdrawal-guide__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: var(--text-light);
}

.page-payment-methods-withdrawal-guide__support-note {
  margin-top: 30px;
  font-size: 1.1em;
  color: var(--text-light);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-payment-methods-withdrawal-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-payment-methods-withdrawal-guide__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-payment-methods-withdrawal-guide__main-title {
    font-size: 2em;
  }

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

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

  .page-payment-methods-withdrawal-guide__methods-grid,
  .page-payment-methods-withdrawal-guide__contact-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-payment-methods-withdrawal-guide__content-area {
    padding: 0 15px;
  }

  .page-payment-methods-withdrawal-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-payment-methods-withdrawal-guide__section,
  .page-payment-methods-withdrawal-guide__method-card,
  .page-payment-methods-withdrawal-guide__contact-card,
  .page-payment-methods-withdrawal-guide__faq-item,
  .page-payment-methods-withdrawal-guide__steps-list,
  .page-payment-methods-withdrawal-guide__rules-list,
  .page-payment-methods-withdrawal-guide__tips-list,
  .page-payment-methods-withdrawal-guide__security-features {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-payment-methods-withdrawal-guide__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-payment-methods-withdrawal-guide__faq-answer {
    padding: 10px 20px 15px;
  }
  
  .page-payment-methods-withdrawal-guide__hero-content .page-payment-methods-withdrawal-guide__btn-primary {
    max-width: 100%;
    width: 100%;
  }
}