.page-payment-methods {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  background: #F4F7FB; /* Background */
  line-height: 1.6;
}

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

/* --- Hero Section --- */
.page-payment-methods__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
  background-color: #F4F7FB;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
}

.page-payment-methods__hero-image {
  width: 100%;
  max-height: 600px; /* Limit height for desktop */
  overflow: hidden;
}

.page-payment-methods__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.page-payment-methods__hero-content {
  max-width: 900px;
  padding: 20px;
  z-index: 1;
}

.page-payment-methods__main-title {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-payment-methods__description {
  font-size: 1.1rem;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.page-payment-methods__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0 15px;
}

.page-payment-methods__btn-primary,
.page-payment-methods__btn-secondary,
.page-payment-methods__btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-payment-methods__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

.page-payment-methods__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-payment-methods__btn-secondary {
  background: #ffffff; /* Card BG */
  color: #2F6BFF; /* Main color */
  border: 2px solid #2F6BFF; /* Main color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__btn-secondary:hover {
  background: #2F6BFF;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.2);
}

.page-payment-methods__btn-text {
  background: none;
  color: #2F6BFF; /* Main color */
  border: 1px solid transparent;
  padding: 8px 15px;
  font-size: 0.95rem;
  font-weight: 500;
}

.page-payment-methods__btn-text:hover {
  border-color: #2F6BFF;
  background-color: rgba(47, 107, 255, 0.05);
}

/* --- General Sections --- */
.page-payment-methods__section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
}

.page-payment-methods__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-payment-methods__section-title--white {
  color: #ffffff;
}

.page-payment-methods__text--white {
  color: #ffffff;
}

.page-payment-methods__overview p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Deposit Methods Grid --- */
.page-payment-methods__deposit-methods {
  background-color: #ffffff; /* Card BG */
}

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

.page-payment-methods__method-card {
  background: #ffffff; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-payment-methods__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__method-card img {
  width: 100%;
  max-width: 400px;
  height: auto;
  min-height: 200px;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block;
}

.page-payment-methods__card-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
}

.page-payment-methods__method-card p {
  font-size: 0.95rem;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
}

/* --- Withdrawal Process --- */
.page-payment-methods__process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-payment-methods__step-item {
  background: #ffffff; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-payment-methods__step-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  min-height: 200px;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__step-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-payment-methods__step-item p {
  font-size: 0.95rem;
  color: #1F2D3D; /* Text Main */
}

.page-payment-methods__note {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-top: 30px;
}

/* --- Security Measures --- */
.page-payment-methods__security-measures {
  background: #2F6BFF; /* Main color */
  color: #ffffff;
  padding: 80px 0;
}

.page-payment-methods__security-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-payment-methods__feature-item {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-payment-methods__feature-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  min-
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__feature-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-payment-methods__feature-item p {
  font-size: 0.95rem;
  color: #f0f0f0;
}

/* --- Tips Section --- */
.page-payment-methods__tips-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
}

.page-payment-methods__tips-list li {
  background: #ffffff; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #1F2D3D; /* Text Main */
  line-height: 1.7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-payment-methods__tips-list li strong {
  color: #000000; /* Custom Color_1776249996415 */
}

/* --- FAQ Section --- */
.page-payment-methods__faq {
  background-color: #F4F7FB; /* Background */
}

.page-payment-methods__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

details.page-payment-methods__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #D6E2FF; /* Border */
  overflow: hidden;
  background: #ffffff; /* Card BG */
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
details.page-payment-methods__faq-item summary.page-payment-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-payment-methods__faq-item summary.page-payment-methods__faq-question::-webkit-details-marker {
  display: none;
}
details.page-payment-methods__faq-item summary.page-payment-methods__faq-question:hover {
  background: #f5f8fc;
}
.page-payment-methods__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #000000; /* Custom Color_1776249996415 */
}
.page-payment-methods__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #2F6BFF; /* Main color */
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
}
details.page-payment-methods__faq-item .page-payment-methods__faq-answer {
  padding: 0 25px 20px;
  background: #f9fcff;
  border-radius: 0 0 8px 8px;
}
.page-payment-methods__faq-answer p {
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
  line-height: 1.6;
}

/* --- Conclusion Section --- */
.page-payment-methods__conclusion {
  text-align: center;
  padding-bottom: 80px;
}
.page-payment-methods__conclusion p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Responsive Styles (Desktop/Tablet) --- */
@media (max-width: 1024px) {
  .page-payment-methods__hero-section {
    padding-bottom: 30px;
  }
  .page-payment-methods__main-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
  }
  .page-payment-methods__description {
    font-size: 1rem;
  }
  .page-payment-methods__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-payment-methods__method-card,
  .page-payment-methods__step-item,
  .page-payment-methods__feature-item {
    padding: 20px;
  }
  .page-payment-methods__method-card img,
  .page-payment-methods__step-item img,
  .page-payment-methods__feature-item img {
    min-
  }
  .page-payment-methods__tips-list {
    margin: 30px auto;
  }
  details.page-payment-methods__faq-item summary.page-payment-methods__faq-question {
    padding: 15px 20px;
  }
  .page-payment-methods__faq-qtext {
    font-size: 1rem;
  }
  .page-payment-methods__faq-toggle {
    font-size: 24px;
    margin-left: 15px;
  }
  details.page-payment-methods__faq-item .page-payment-methods__faq-answer {
    padding: 0 20px 15px;
  }
}

/* --- Responsive Styles (Mobile) --- */
@media (max-width: 768px) {
  .page-payment-methods__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* HERO 主图区域 */
  .page-payment-methods__hero-section {
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .page-payment-methods__hero-image img {
    object-fit: contain !important;
    aspect-ratio: unset !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-payment-methods__hero-content {
    padding: 15px;
  }
  .page-payment-methods__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    text-align: center;
  }
  .page-payment-methods__description {
    font-size: 0.95rem;
    text-align: center;
  }

  /* 按钮与按钮容器 */
  .page-payment-methods__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-payment-methods__btn-primary,
  .page-payment-methods__btn-secondary,
  .page-payment-methods__btn-text {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 通用图片与容器 */
  .page-payment-methods img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-payment-methods__section,
  .page-payment-methods__card,
  .page-payment-methods__container,
  .page-payment-methods__method-card,
  .page-payment-methods__step-item,
  .page-payment-methods__feature-item,
  .page-payment-methods__tips-list li {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-payment-methods__section {
    padding: 40px 0;
  }

  /* 产品展示图区域 (General grid for methods, not gameshow) */
  .page-payment-methods__methods-grid,
  .page-payment-methods__process-steps,
  .page-payment-methods__security-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    overflow-x: hidden;
  }
  .page-payment-methods__method-card img,
  .page-payment-methods__step-item img,
  .page-payment-methods__feature-item img {
    min-height: 200px;
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-payment-methods__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 25px;
    text-align: center;
  }
  .page-payment-methods__overview p,
  .page-payment-methods__conclusion p {
    font-size: 0.9rem;
    text-align: left;
  }
  .page-payment-methods__tips-list {
    margin: 30px 0;
  }
  .page-payment-methods__tips-list li {
    font-size: 0.95rem;
    padding: 15px 20px;
  }

  /* FAQ Mobile */
  details.page-payment-methods__faq-item {
    margin-bottom: 10px;
  }
  details.page-payment-methods__faq-item summary.page-payment-methods__faq-question {
    padding: 15px 15px;
  }
  .page-payment-methods__faq-qtext {
    font-size: 0.95rem;
  }
  .page-payment-methods__faq-toggle {
    font-size: 24px;
    margin-left: 10px;
    width: 24px;
  }
  details.page-payment-methods__faq-item .page-payment-methods__faq-answer {
    padding: 0 15px 15px;
  }
  .page-payment-methods__faq-answer p {
    font-size: 0.9rem;
  }
}