.page-payment-withdrawal {
  color: #ffffff; /* Light text on dark body background */
  background-color: #1a1a1a; /* Inherited from body, but ensures consistency */
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-payment-withdrawal__hero-section {
  background-color: #8B0000; /* Auxiliary color for hero background */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-payment-withdrawal__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-payment-withdrawal__hero-title {
  font-size: 3.5rem;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-payment-withdrawal__hero-description {
  font-size: 1.25rem;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-withdrawal__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-payment-withdrawal__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-withdrawal__hero-button--deposit {
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text */
}

.page-payment-withdrawal__hero-button--deposit:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-payment-withdrawal__hero-button--register {
  background-color: #f0f0f0; /* Light button */
  color: #8B0000; /* Dark red text */
  border: 2px solid #FFD700;
}

.page-payment-withdrawal__hero-button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-payment-withdrawal__section-title {
  font-size: 2.5rem;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
  position: relative;
}

.page-payment-withdrawal__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #8B0000; /* Red underline */
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-payment-withdrawal__section-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #cccccc;
}

.page-payment-withdrawal__overview-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

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

.page-payment-withdrawal__overview-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-payment-withdrawal__overview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-payment-withdrawal__overview-card-icon {
  width: 250px; /* Min 200px */
  height: 167px; /* Min 200px (proportionally scaled) */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-payment-withdrawal__overview-card-title {
  font-size: 1.6rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-payment-withdrawal__overview-card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
}

.page-payment-withdrawal__deposit-methods,
.page-payment-withdrawal__withdrawal-process,
.page-payment-withdrawal__verification-section,
.page-payment-withdrawal__faqs-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-payment-withdrawal__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-payment-withdrawal__method-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-payment-withdrawal__method-image {
  width: 300px; /* Min 200px */
  height: 225px; /* Min 200px (proportionally scaled) */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-payment-withdrawal__method-title {
  font-size: 1.8rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-payment-withdrawal__method-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-payment-withdrawal__method-details {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
  width: 100%;
  max-width: 300px;
}

.page-payment-withdrawal__method-details li {
  margin-bottom: 8px;
  color: #f0f0f0;
  font-size: 0.95rem;
}

.page-payment-withdrawal__method-details li strong {
  color: #FFD700;
}

.page-payment-withdrawal__method-button {
  display: inline-block;
  background-color: #8B0000; /* Red button */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-payment-withdrawal__method-button:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
}

.page-payment-withdrawal__deposit-steps,
.page-payment-withdrawal__withdrawal-steps {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-payment-withdrawal__sub-title {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 25px;
  text-align: center;
}

.page-payment-withdrawal__step-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-payment-withdrawal__step-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-payment-withdrawal__step-number {
  background-color: #FFD700;
  color: #8B0000;
  border-radius: 50%;
  min-width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-payment-withdrawal__step-list li a {
  color: #FFD700;
  text-decoration: none;
}

.page-payment-withdrawal__step-list li a:hover {
  text-decoration: underline;
}

.page-payment-withdrawal__note {
  font-style: italic;
  text-align: center;
  margin-top: 30px;
  color: #aaaaaa;
  font-size: 0.95rem;
}

.page-payment-withdrawal__verification-section {
  background-color: #1a1a1a;
}

.page-payment-withdrawal__verification-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.page-payment-withdrawal__verification-text {
  flex: 1;
  min-width: 300px;
}

.page-payment-withdrawal__verification-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-payment-withdrawal__verification-image {
  width: 100%;
  max-width: 600px; /* Min 200px */
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-payment-withdrawal__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-payment-withdrawal__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-payment-withdrawal__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: bold;
}

.page-payment-withdrawal__button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-withdrawal__button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-payment-withdrawal__faqs-section {
  background-color: #1a1a1a;
}

.page-payment-withdrawal__faq-list {
  margin-top: 50px;
}

.page-payment-withdrawal__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-payment-withdrawal__faq-question {
  font-size: 1.4rem;
  color: #FFD700;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-payment-withdrawal__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.page-payment-withdrawal__faq-item.active .page-payment-withdrawal__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-payment-withdrawal__faq-answer {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
  display: none; /* Hidden by default, toggled by JS */
}

.page-payment-withdrawal__faq-item.active .page-payment-withdrawal__faq-answer {
  display: block;
}

.page-payment-withdrawal__cta-section {
  background-color: #8B0000; /* Auxiliary color for CTA background */
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-payment-withdrawal__cta-title {
  font-size: 2.8rem;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-payment-withdrawal__cta-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-withdrawal__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-payment-withdrawal__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-payment-withdrawal__cta-subtext {
  margin-top: 25px;
  font-size: 1rem;
  color: #f0f0f0;
}

.page-payment-withdrawal__cta-subtext a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-payment-withdrawal__cta-subtext a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-payment-withdrawal__hero-title {
    font-size: 3rem;
  }
  .page-payment-withdrawal__section-title {
    font-size: 2.2rem;
  }
  .page-payment-withdrawal__method-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-payment-withdrawal__hero-section {
    padding: 60px 15px;
  }
  .page-payment-withdrawal__hero-title {
    font-size: 2.5rem;
  }
  .page-payment-withdrawal__hero-description {
    font-size: 1.1rem;
  }
  .page-payment-withdrawal__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-withdrawal__hero-button {
    width: 100%;
    max-width: 300px;
  }
  .page-payment-withdrawal__section-title {
    font-size: 2rem;
  }
  .page-payment-withdrawal__section-intro {
    font-size: 1rem;
  }
  .page-payment-withdrawal__overview-grid,
  .page-payment-withdrawal__method-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-withdrawal__overview-card-icon,
  .page-payment-withdrawal__method-image {
    width: 100%;
    max-width: 300px;
    height: auto; /* Ensure images scale responsively */
  }
  .page-payment-withdrawal__verification-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-payment-withdrawal__cta-title {
    font-size: 2.2rem;
  }
  .page-payment-withdrawal__cta-description {
    font-size: 1.1rem;
  }
  .page-payment-withdrawal__cta-button {
    padding: 15px 30px;
    font-size: 1.2rem;
  }

  /* Mobile content image constraint */
  .page-payment-withdrawal img {
    max-width: 100%;
    height: auto;
  }
  .page-payment-withdrawal {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-payment-withdrawal__hero-title {
    font-size: 2rem;
  }
  .page-payment-withdrawal__section-title {
    font-size: 1.8rem;
  }
  .page-payment-withdrawal__sub-title {
    font-size: 1.6rem;
  }
  .page-payment-withdrawal__faq-question {
    font-size: 1.2rem;
  }
  .page-payment-withdrawal__step-list li {
    font-size: 1rem;
  }
  .page-payment-withdrawal__cta-title {
    font-size: 1.8rem;
  }
}