.page-payment-methods {
  color: #333333; /* Dark text for light body background */
}

.page-payment-methods__hero-section {
  position: relative;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #f8f8f8;
  overflow: hidden;
}

.page-payment-methods__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.page-payment-methods__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__hero-title {
  font-size: 3.2em;
  color: #000000; /* Main color for important titles */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-payment-methods__hero-description {
  font-size: 1.15em;
  line-height: 1.6;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-payment-methods__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

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

.page-payment-methods__button--register {
  background-color: #FCBC45; /* Login color for Register as a primary action */
  color: #000000; /* Dark text for FCBC45 background */
}

.page-payment-methods__button--register:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-payment-methods__button--login {
  background-color: #000000; /* Main color for Login button */
  color: #FFFFFF; /* White text for black background */
  border: 2px solid #FCBC45;
}

.page-payment-methods__button--login:hover {
  background-color: #222222;
  transform: translateY(-2px);
}

.page-payment-methods__intro-section, 
.page-payment-methods__deposit-methods, 
.page-payment-methods__withdrawal-methods, 
.page-payment-methods__security-section, 
.page-payment-methods__tips-section, 
.page-payment-methods__faq-section, 
.page-payment-methods__cta-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #eeeeee;
}

.page-payment-methods__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.page-payment-methods__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-payment-methods__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #666666;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-payment-methods__text-content {
  font-size: 1.05em;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 20px;
  text-align: justify;
}

.page-payment-methods__text-content strong {
  color: #000000;
}

.page-payment-methods__note {
  font-style: italic;
  color: #777777;
  margin-top: 30px;
  text-align: center;
}

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

.page-payment-methods__method-card {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.page-payment-methods__method-icon {
  width: 250px; /* Min size 200px */
  height: auto;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: none; /* Ensure no color filters */
}

.page-payment-methods__method-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-payment-methods__method-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
}

.page-payment-methods__method-details {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 0.9em;
  color: #444444;
}

.page-payment-methods__method-details li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.page-payment-methods__method-details li::before {
  content: '✔';
  color: #FCBC45;
  position: absolute;
  left: 0;
  top: 0;
}

.page-payment-methods__button--deposit-cta, .page-payment-methods__button--withdraw-cta, .page-payment-methods__button--start-playing {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-payment-methods__button--deposit-cta:hover, .page-payment-methods__button--withdraw-cta:hover, .page-payment-methods__button--start-playing:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

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

.page-payment-methods__feature-item {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.page-payment-methods__feature-icon {
  width: 250px; /* Min size 200px */
  height: auto;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: none; /* Ensure no color filters */
}

.page-payment-methods__feature-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-payment-methods__feature-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
}

.page-payment-methods__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 30px;
  font-size: 1.1em;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__button--learn-more:hover {
  background-color: #222222;
  transform: translateY(-2px);
}

.page-payment-methods__tips-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-payment-methods__tips-list li {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-left: 5px solid #FCBC45;
  border-radius: 8px;
  padding: 25px;
  font-size: 1em;
  line-height: 1.6;
  color: #444444;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-payment-methods__tips-list li strong {
  color: #000000;
}

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

.page-payment-methods__faq-item {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-payment-methods__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-payment-methods__faq-answer {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
}

.page-payment-methods__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-payment-methods__cta-section .page-payment-methods__section-title {
  color: #FFFFFF;
}

.page-payment-methods__cta-section .page-payment-methods__section-description {
  color: #f0f0f0;
}

.page-payment-methods__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.page-payment-methods__button--register-large {
  background-color: #FCBC45;
  color: #000000;
  padding: 20px 45px;
  font-size: 1.3em;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__button--register-large:hover {
  background-color: #e0a53b;
  transform: translateY(-4px);
}

.page-payment-methods__button--login-large {
  background-color: #FFFFFF;
  color: #000000;
  padding: 20px 45px;
  font-size: 1.3em;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border: 2px solid #FCBC45;
}

.page-payment-methods__button--login-large:hover {
  background-color: #f0f0f0;
  transform: translateY(-4px);
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-payment-methods__hero-title {
    font-size: 2.8em;
  }

  .page-payment-methods__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-section {
    padding: 40px 15px;
  }

  .page-payment-methods__hero-title {
    font-size: 2.2em;
  }

  .page-payment-methods__hero-description {
    font-size: 1em;
  }

  .page-payment-methods__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-payment-methods__button {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-payment-methods__intro-section, 
  .page-payment-methods__deposit-methods, 
  .page-payment-methods__withdrawal-methods, 
  .page-payment-methods__security-section, 
  .page-payment-methods__tips-section, 
  .page-payment-methods__faq-section, 
  .page-payment-methods__cta-section {
    padding: 40px 15px;
  }

  .page-payment-methods__section-title {
    font-size: 1.8em;
  }

  .page-payment-methods__section-description {
    font-size: 0.95em;
  }

  .page-payment-methods__text-content {
    font-size: 0.95em;
  }

  .page-payment-methods__method-grid,
  .page-payment-methods__security-features,
  .page-payment-methods__faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-payment-methods__method-icon,
  .page-payment-methods__feature-icon {
    width: 200px; /* Min size 200px */
    height: auto;
  }

  .page-payment-methods__button--deposit-cta, 
  .page-payment-methods__button--withdraw-cta, 
  .page-payment-methods__button--start-playing {
    font-size: 1.1em;
    padding: 15px 30px;
    width: 100%;
    max-width: 300px;
  }

  .page-payment-methods__tips-list {
    grid-template-columns: 1fr;
  }

  .page-payment-methods__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-payment-methods__button--register-large, 
  .page-payment-methods__button--login-large {
    font-size: 1.15em;
    padding: 18px 30px;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Ensure all images within .page-payment-methods are responsive and don't overflow */
  .page-payment-methods img {
    max-width: 100%;
    height: auto;
  }
}

/* Content area images must not be smaller than 200px */
.page-payment-methods__content-wrapper img {
  min-width: 200px;
  min-height: 200px;
  object-fit: contain; /* or cover, depending on desired effect */
}

/* Specifically for method/feature icons to ensure they meet the minimum size while being responsive */
.page-payment-methods__method-icon, .page-payment-methods__feature-icon {
  width: 250px;
  height: auto;
  max-width: 100%; /* Ensure responsiveness */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

/* Override for mobile if necessary to ensure minimums are respected */
@media (max-width: 768px) {
  .page-payment-methods__method-icon, .page-payment-methods__feature-icon {
    width: 100%; /* Take full width of parent */
    max-width: 250px; /* But don't grow too large if parent is wider */
    min-width: 200px; /* Still enforce minimum */
    min-height: 200px; /* Still enforce minimum */
    margin-left: auto;
    margin-right: auto;
  }
}