.page-resources-w88vt-payment-methods {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text on dark background */
  background-color: #0A2342; /* Main deep blue background */
  line-height: 1.6;
}

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

.page-resources-w88vt-payment-methods__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3F6C 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-w88vt-payment-methods__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-w88vt-payment-methods__hero-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-w88vt-payment-methods__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-resources-w88vt-payment-methods__intro p,
.page-resources-w88vt-payment-methods__deposit-methods p,
.page-resources-w88vt-payment-methods__withdrawal-methods p,
.page-resources-w88vt-payment-methods__important-notes p,
.page-resources-w88vt-payment-methods__faq p,
.page-resources-w88vt-payment-methods__cta p {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-w88vt-payment-methods__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  text-align: center;
}

.page-resources-w88vt-payment-methods__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold */
  border: 2px solid #FFD700;
  margin: 0 10px;
}

.page-resources-w88vt-payment-methods__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-resources-w88vt-payment-methods__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
  margin: 0 10px;
}

.page-resources-w88vt-payment-methods__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-3px);
}

.page-resources-w88vt-payment-methods__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-resources-w88vt-payment-methods__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-resources-w88vt-payment-methods__method-card {
  background-color: #1A3F6C; /* Slightly lighter blue for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #FFD700;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-w88vt-payment-methods__method-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-w88vt-payment-methods__method-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-resources-w88vt-payment-methods__method-card ul li {
  margin-bottom: 10px;
  color: #E0E0E0;
  font-size: 1em;
}

.page-resources-w88vt-payment-methods__method-card ul li strong {
  color: #FFD700;
}

.page-resources-w88vt-payment-methods__important-notes ul {
  list-style: disc;
  padding-left: 25px;
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-resources-w88vt-payment-methods__important-notes ul li {
  margin-bottom: 15px;
}

.page-resources-w88vt-payment-methods__important-notes ul li strong {
  color: #FFD700;
}

.page-resources-w88vt-payment-methods__faq {
  padding-bottom: 80px;
}

.page-resources-w88vt-payment-methods__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #1A3F6C;
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-w88vt-payment-methods__accordion-header {
  background-color: #1A3F6C; /* Slightly lighter blue for accordion header */
  color: #FFD700;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-resources-w88vt-payment-methods__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-resources-w88vt-payment-methods__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-w88vt-payment-methods__accordion-header:hover {
  background-color: #2A5080;
}

.page-resources-w88vt-payment-methods__accordion-content {
  background-color: #0A2342;
  color: #E0E0E0;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-resources-w88vt-payment-methods__accordion-content.active {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px;
}

.page-resources-w88vt-payment-methods__accordion-content p {
  margin-bottom: 0;
}

.page-resources-w88vt-payment-methods__link {
  color: #FFD700;
  text-decoration: underline;
}

.page-resources-w88vt-payment-methods__link:hover {
  color: #E6C200;
}

.page-resources-w88vt-payment-methods__cta {
  text-align: center;
  padding: 80px 0;
  background-color: #1A3F6C;
  margin-top: 60px;
  border-top: 3px solid #FFD700;
}

.page-resources-w88vt-payment-methods__cta .page-resources-w88vt-payment-methods__btn {
  margin: 15px;
}

.page-resources-w88vt-payment-methods__floating-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FFD700;
  color: #0A2342;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.page-resources-w88vt-payment-methods__floating-promo.active {
  transform: translateX(0);
  opacity: 1;
}

.page-resources-w88vt-payment-methods__floating-promo a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-resources-w88vt-payment-methods__promo-icon {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}

.page-resources-w88vt-payment-methods__promo-text {
  font-weight: bold;
  font-size: 1.1em;
}

.page-resources-w88vt-payment-methods__close-promo {
  background: none;
  border: none;
  color: #0A2342;
  font-size: 1.5em;
  cursor: pointer;
  padding: 0 5px;
  line-height: 1;
}

@media (max-width: 768px) {
  .page-resources-w88vt-payment-methods__hero-title {
    font-size: 2.5em;
  }

  .page-resources-w88vt-payment-methods__hero-subtitle,
  .page-resources-w88vt-payment-methods__intro p,
  .page-resources-w88vt-payment-methods__deposit-methods p,
  .page-resources-w88vt-payment-methods__withdrawal-methods p,
  .page-resources-w88vt-payment-methods__important-notes p,
  .page-resources-w88vt-payment-methods__faq p,
  .page-resources-w88vt-payment-methods__cta p {
    font-size: 1em;
  }

  .page-resources-w88vt-payment-methods__section-title {
    font-size: 2em;
  }

  .page-resources-w88vt-payment-methods__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 0;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .page-resources-w88vt-payment-methods__method-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-w88vt-payment-methods__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-resources-w88vt-payment-methods__floating-promo {
    bottom: 10px;
    right: 10px;
    padding: 8px 12px;
    font-size: 0.9em;
  }

  .page-resources-w88vt-payment-methods__promo-icon {
    width: 25px;
    height: 25px;
  }
  .page-resources-w88vt-payment-methods__promo-text {
    font-size: 0.9em;
  }
}