.page-w88-deposit-withdrawal {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

/* Hero Section */
.page-w88-deposit-withdrawal__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  overflow: hidden;
  padding-top: 0; /* Assumes shared.css handles body padding-top */
  padding-bottom: 80px;
}

.page-w88-deposit-withdrawal__dark-bg {
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-w88-deposit-withdrawal__light-bg {
  background-color: #f8f9fa;
  color: #333333;
}

.page-w88-deposit-withdrawal__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

.page-w88-deposit-withdrawal__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-w88-deposit-withdrawal__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-w88-deposit-withdrawal__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-w88-deposit-withdrawal__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Section Styling */
.page-w88-deposit-withdrawal__section {
  padding: 80px 0;
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-w88-deposit-withdrawal__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-w88-deposit-withdrawal__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #f0f0f0;
}

/* Feature Grid */
.page-w88-deposit-withdrawal__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-w88-deposit-withdrawal__feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-w88-deposit-withdrawal__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-w88-deposit-withdrawal__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-w88-deposit-withdrawal__feature-text {
  font-size: 1em;
  line-height: 1.5;
  color: #f0f0f0;
}

/* Methods Grid (Deposit/Withdrawal) */
.page-w88-deposit-withdrawal__methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-w88-deposit-withdrawal__method-card {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-w88-deposit-withdrawal__method-icon {
  width: 150px;
  height: 90px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-w88-deposit-withdrawal__method-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-w88-deposit-withdrawal__method-text {
  font-size: 0.95em;
  line-height: 1.5;
  color: #f0f0f0;
}

/* Steps List (How-to Guides) */
.page-w88-deposit-withdrawal__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-w88-deposit-withdrawal__step-item {
  padding: 30px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-w88-deposit-withdrawal__step-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-w88-deposit-withdrawal__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-w88-deposit-withdrawal__btn-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-w88-deposit-withdrawal__btn-link:hover {
  background-color: #d46f06;
}

/* Important Notes */
.page-w88-deposit-withdrawal__notes-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-w88-deposit-withdrawal__note-item {
  padding: 30px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-w88-deposit-withdrawal__note-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-w88-deposit-withdrawal__note-text {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
}

/* FAQ Section */
.page-w88-deposit-withdrawal__faq-section {
  background-color: #f8f9fa;
  color: #333333;
}

.page-w88-deposit-withdrawal__faq-section .page-w88-deposit-withdrawal__section-title {
  color: #26A9E0;
}

.page-w88-deposit-withdrawal__faq-section .page-w88-deposit-withdrawal__section-description {
  color: #555555;
}

.page-w88-deposit-withdrawal__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-w88-deposit-withdrawal__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-w88-deposit-withdrawal__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.page-w88-deposit-withdrawal__faq-question h3 {
  margin: 0;
  font-size: 1.1em;
  color: #333333;
}

.page-w88-deposit-withdrawal__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-w88-deposit-withdrawal__faq-item.active .page-w88-deposit-withdrawal__faq-toggle {
  transform: rotate(45deg);
}

.page-w88-deposit-withdrawal__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #555555;
}

.page-w88-deposit-withdrawal__faq-item.active .page-w88-deposit-withdrawal__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px;
}

/* Call to Action Section */
.page-w88-deposit-withdrawal__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #26A9E0; /* Brand color as background */
  color: #ffffff;
}

.page-w88-deposit-withdrawal__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-w88-deposit-withdrawal__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-w88-deposit-withdrawal__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-w88-deposit-withdrawal__btn-primary,
.page-w88-deposit-withdrawal__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-w88-deposit-withdrawal__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-w88-deposit-withdrawal__btn-primary:hover {
  background-color: #d46f06;
  border-color: #d46f06;
}

.page-w88-deposit-withdrawal__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-w88-deposit-withdrawal__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-w88-deposit-withdrawal__button-group {
  margin-top: 40px;
  text-align: center;
}

/* General image styling */
.page-w88-deposit-withdrawal img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-w88-deposit-withdrawal__hero-title {
    font-size: 3em;
  }
  .page-w88-deposit-withdrawal__section-title,
  .page-w88-deposit-withdrawal__cta-title {
    font-size: 2em;
  }
  .page-w88-deposit-withdrawal__hero-content {
    padding: 30px;
  }
  .page-w88-deposit-withdrawal__features-grid,
  .page-w88-deposit-withdrawal__methods-grid,
  .page-w88-deposit-withdrawal__steps-list,
  .page-w88-deposit-withdrawal__notes-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-w88-deposit-withdrawal__hero-section {
    min-height: 450px;
    padding-top: 0 !important; /* Ensure no double padding if shared.css sets body padding */
    padding-bottom: 60px;
  }
  .page-w88-deposit-withdrawal__hero-title {
    font-size: 2.2em;
  }
  .page-w88-deposit-withdrawal__hero-description {
    font-size: 1em;
  }
  .page-w88-deposit-withdrawal__hero-content {
    padding: 20px;
    margin: 0 15px;
  }
  .page-w88-deposit-withdrawal__hero-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  /* 其他内容模块 - 通用 Section */
  .page-w88-deposit-withdrawal__section {
    padding: 60px 0;
  }
  .page-w88-deposit-withdrawal__container {
    padding: 0 15px;
  }
  .page-w88-deposit-withdrawal__section-title,
  .page-w88-deposit-withdrawal__cta-title {
    font-size: 1.8em;
  }
  .page-w88-deposit-withdrawal__section-description,
  .page-w88-deposit-withdrawal__cta-description {
    font-size: 0.95em;
    margin: 0 auto 30px auto;
  }

  /* 产品展示图区域 - methods-grid (deposit/withdrawal methods) */
  .page-w88-deposit-withdrawal__methods-grid {
    grid-template-columns: 1fr; /* Stack cards vertically */
    gap: 20px;
    margin-top: 30px;
  }
  .page-w88-deposit-withdrawal__method-card {
    padding: 20px;
  }
  .page-w88-deposit-withdrawal__method-icon {
    width: 120px;
    height: 70px;
  }

  /* 通用图片与容器 */
  .page-w88-deposit-withdrawal img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-w88-deposit-withdrawal__section,
  .page-w88-deposit-withdrawal__card,
  .page-w88-deposit-withdrawal__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 按钮与按钮容器 */
  .page-w88-deposit-withdrawal__btn-primary,
  .page-w88-deposit-withdrawal__btn-secondary,
  .page-w88-deposit-withdrawal__btn-link,
  .page-w88-deposit-withdrawal a[class*="button"],
  .page-w88-deposit-withdrawal a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    font-size: 1em;
  }
  .page-w88-deposit-withdrawal__cta-buttons,
  .page-w88-deposit-withdrawal__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px;
  }

  /* 其他内容模块 - Features, Steps, Notes */
  .page-w88-deposit-withdrawal__features-grid,
  .page-w88-deposit-withdrawal__steps-list,
  .page-w88-deposit-withdrawal__notes-list {
    grid-template-columns: 1fr; /* Stack items vertically */
    gap: 20px;
    margin-top: 30px;
  }
  .page-w88-deposit-withdrawal__feature-item,
  .page-w88-deposit-withdrawal__step-item,
  .page-w88-deposit-withdrawal__note-item {
    padding: 20px;
  }
  .page-w88-deposit-withdrawal__feature-title,
  .page-w88-deposit-withdrawal__note-title {
    font-size: 1.3em;
  }
  .page-w88-deposit-withdrawal__step-title {
    font-size: 1.4em;
  }
  .page-w88-deposit-withdrawal__faq-question h3 {
    font-size: 1em;
  }
  .page-w88-deposit-withdrawal__faq-item.active .page-w88-deposit-withdrawal__faq-answer {
    padding: 10px 20px;
  }
}