/* style/resources-hi88-deposit-withdrawal-methods.css */
.page-resources-hi88-deposit-withdrawal-methods {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A192F; /* Dark blue background */
}

.page-resources-hi88-deposit-withdrawal-methods .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-hi88-deposit-withdrawal-methods .hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #2a3a5f 100%); /* Dark blue gradient */
  color: #FFD700; /* Gold for hero title */
  padding: 100px 0;
  text-align: center;
}

.page-resources-hi88-deposit-withdrawal-methods .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-hi88-deposit-withdrawal-methods .hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #C0C0C0; /* Lighter grey for description */
}

.page-resources-hi88-deposit-withdrawal-methods .section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-resources-hi88-deposit-withdrawal-methods .sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-hi88-deposit-withdrawal-methods p {
  margin-bottom: 1em;
  color: #E0E0E0; /* Light grey */
}

.page-resources-hi88-deposit-withdrawal-methods .highlight-keyword {
  color: #FFD700; /* Gold to highlight keywords */
  font-weight: bold;
}

.page-resources-hi88-deposit-withdrawal-methods .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-hi88-deposit-withdrawal-methods .btn-primary {
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-resources-hi88-deposit-withdrawal-methods .btn-primary:hover {
  background-color: #e6c200; /* Slightly darker gold */
  color: #0A192F;
}

.page-resources-hi88-deposit-withdrawal-methods .btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-resources-hi88-deposit-withdrawal-methods .btn-secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-resources-hi88-deposit-withdrawal-methods .btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-resources-hi88-deposit-withdrawal-methods .introduction-section, 
.page-resources-hi88-deposit-withdrawal-methods .deposit-methods-section, 
.page-resources-hi88-deposit-withdrawal-methods .deposit-guide-section, 
.page-resources-hi88-deposit-withdrawal-methods .withdrawal-methods-section, 
.page-resources-hi88-deposit-withdrawal-methods .withdrawal-guide-section, 
.page-resources-hi88-deposit-withdrawal-methods .limits-notes-section, 
.page-resources-hi88-deposit-withdrawal-methods .security-section, 
.page-resources-hi88-deposit-withdrawal-methods .faq-section, 
.page-resources-hi88-deposit-withdrawal-methods .cta-section {
  padding: 60px 0;
}

.page-resources-hi88-deposit-withdrawal-methods .content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-hi88-deposit-withdrawal-methods .content-image-small {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.page-resources-hi88-deposit-withdrawal-methods .method-card {
  background-color: #1a2a47; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-resources-hi88-deposit-withdrawal-methods .method-card:hover {
  transform: translateY(-5px);
}

.page-resources-hi88-deposit-withdrawal-methods .method-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-resources-hi88-deposit-withdrawal-methods .method-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-resources-hi88-deposit-withdrawal-methods .guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-hi88-deposit-withdrawal-methods .guide-list li {
  background-color: #1a2a47; /* Slightly lighter dark blue */
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
  padding-left: 70px;
}

.page-resources-hi88-deposit-withdrawal-methods .guide-list li:before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue */
  font-weight: bold;
  font-size: 1.5em;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 20px;
  top: 25px;
}

.page-resources-hi88-deposit-withdrawal-methods .guide-list li p {
  color: #E0E0E0;
  margin-bottom: 0;
}

.page-resources-hi88-deposit-withdrawal-methods .guide-list li strong {
  color: #FFD700;
  font-size: 1.1em;
}

.page-resources-hi88-deposit-withdrawal-methods .info-block {
  background-color: #1a2a47;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-hi88-deposit-withdrawal-methods .info-block ul {
  list-style: disc;
  margin-left: 20px;
  color: #E0E0E0;
}

.page-resources-hi88-deposit-withdrawal-methods .info-block li {
  margin-bottom: 10px;
}

.page-resources-hi88-deposit-withdrawal-methods .faq-section {
  background-color: #0A192F;
}

.page-resources-hi88-deposit-withdrawal-methods .faq-item {
  background-color: #1a2a47;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-resources-hi88-deposit-withdrawal-methods .faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-resources-hi88-deposit-withdrawal-methods .faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-resources-hi88-deposit-withdrawal-methods .faq-question.active::after {
  transform: rotate(45deg);
}

.page-resources-hi88-deposit-withdrawal-methods .faq-answer {
  color: #E0E0E0;
  display: none;
  margin-top: 15px;
}

.page-resources-hi88-deposit-withdrawal-methods .faq-answer.active {
  display: block;
}

.page-resources-hi88-deposit-withdrawal-methods .cta-section {
  background: #0A192F;
  text-align: center;
  padding: 80px 0;
}

.page-resources-hi88-deposit-withdrawal-methods .cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
}

.page-resources-hi88-deposit-withdrawal-methods .cta-description {
  font-size: 1.2em;
  color: #C0C0C0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-hi88-deposit-withdrawal-methods .hero-title {
    font-size: 2.5em;
  }

  .page-resources-hi88-deposit-withdrawal-methods .hero-description {
    font-size: 1em;
  }

  .page-resources-hi88-deposit-withdrawal-methods .section-title {
    font-size: 2em;
  }

  .page-resources-hi88-deposit-withdrawal-methods .method-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-hi88-deposit-withdrawal-methods .guide-list li {
    padding-left: 60px;
  }

  .page-resources-hi88-deposit-withdrawal-methods .guide-list li:before {
    left: 15px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }

  .page-resources-hi88-deposit-withdrawal-methods .cta-title {
    font-size: 2em;
  }

  .page-resources-hi88-deposit-withdrawal-methods .cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-resources-hi88-deposit-withdrawal-methods .hero-section,
  .page-resources-hi88-deposit-withdrawal-methods .introduction-section,
  .page-resources-hi88-deposit-withdrawal-methods .deposit-methods-section,
  .page-resources-hi88-deposit-withdrawal-methods .deposit-guide-section,
  .page-resources-hi88-deposit-withdrawal-methods .withdrawal-methods-section,
  .page-resources-hi88-deposit-withdrawal-methods .withdrawal-guide-section,
  .page-resources-hi88-deposit-withdrawal-methods .limits-notes-section,
  .page-resources-hi88-deposit-withdrawal-methods .security-section,
  .page-resources-hi88-deposit-withdrawal-methods .faq-section,
  .page-resources-hi88-deposit-withdrawal-methods .cta-section {
    padding: 40px 0;
  }

  .page-resources-hi88-deposit-withdrawal-methods .hero-title {
    font-size: 2em;
  }

  .page-resources-hi88-deposit-withdrawal-methods .section-title {
    font-size: 1.8em;
  }

  .page-resources-hi88-deposit-withdrawal-methods .btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-resources-hi88-deposit-withdrawal-methods .btn-large {
    padding: 15px 30px;
    font-size: 1em;
  }
}