.page-payment-methods {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #1A1A1A; /* Auxiliary color as background for consistency */
}

.page-payment-methods__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A1A1A, #333333);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #FFD700;
}

.page-payment-methods__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
  margin-bottom: 40px;
}

.page-payment-methods__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  line-height: 1.2;
}

.page-payment-methods__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-payment-methods__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-payment-methods__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A1A1A;
  border: none;
}

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

.page-payment-methods__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-payment-methods__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-2px);
}

.page-payment-methods__hero-image {
  margin-top: 40px;
  max-width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-payment-methods__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-payment-methods__section {
  padding: 80px 20px;
  background-color: #1A1A1A;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-payment-methods__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.page-payment-methods__section-intro {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
}

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

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

.page-payment-methods__feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-payment-methods__feature-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

.page-payment-methods__method-card {
  background-color: rgba(255, 215, 0, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.page-payment-methods__method-card:hover {
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
  transform: translateY(-5px);
}

.page-payment-methods__method-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 25px;
  border-radius: 8px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-payment-methods__method-features {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #cccccc;
  text-align: left;
}

.page-payment-methods__method-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

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

.page-payment-methods__cta-row {
  text-align: center;
  margin-top: 40px;
}

.page-payment-methods__withdrawal-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-payment-methods__step-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 4px solid #FFD700;
  transition: background-color 0.3s ease;
}

.page-payment-methods__step-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-payment-methods__step-title {
  font-size: 1.7em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-payment-methods__step-description {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.6;
}

.page-payment-methods__security-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.page-payment-methods__security-text-block {
  flex: 2;
  min-width: 300px;
}

.page-payment-methods__security-image {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-payment-methods__security-image img {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-payment-methods__security-subtitle {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-payment-methods__security-description {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.page-payment-methods__troubleshooting-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid #FFD700;
  transition: transform 0.3s ease;
}

.page-payment-methods__troubleshooting-card:hover {
  transform: translateY(-5px);
}

.page-payment-methods__troubleshooting-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-payment-methods__troubleshooting-text {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.6;
}

.page-payment-methods__troubleshooting-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-payment-methods__bonus-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.page-payment-methods__bonus-text-block {
  flex: 2;
  min-width: 300px;
}

.page-payment-methods__bonus-image {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-payment-methods__bonus-image img {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-payment-methods__bonus-subtitle {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-payment-methods__bonus-description {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-payment-methods__detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-payment-methods__detail-card {
  background-color: rgba(255, 215, 0, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.page-payment-methods__detail-card:hover {
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
  transform: translateY(-5px);
}

.page-payment-methods__detail-card-title {
  font-size: 1.7em;
  margin-bottom: 15px;
}

.page-payment-methods__detail-card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-payment-methods__detail-card-title a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-payment-methods__detail-card-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-payment-methods__final-cta-section {
  text-align: center;
  padding-bottom: 100px;
}

.page-payment-methods__final-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-payment-methods__hero-title {
    font-size: 3em;
  }
  .page-payment-methods__hero-description {
    font-size: 1.2em;
  }
  .page-payment-methods__section-title {
    font-size: 2.5em;
  }
  .page-payment-methods__security-content,
  .page-payment-methods__bonus-content {
    flex-direction: column;
    align-items: center;
  }
  .page-payment-methods__security-image,
  .page-payment-methods__bonus-image {
    max-width: 600px;
  }
}

@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__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-payment-methods__section {
    padding: 60px 15px;
  }
  .page-payment-methods__section-title {
    font-size: 2em;
  }
  .page-payment-methods__section-intro {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-payment-methods__feature-grid,
  .page-payment-methods__method-grid,
  .page-payment-methods__withdrawal-steps,
  .page-payment-methods__troubleshooting-grid,
  .page-payment-methods__detail-list {
    grid-template-columns: 1fr;
  }
  .page-payment-methods__security-image,
  .page-payment-methods__bonus-image {
    max-width: 100%;
  }
  .page-payment-methods__security-image img,
  .page-payment-methods__bonus-image img,
  .page-payment-methods__troubleshooting-image img,
  .page-payment-methods__method-card img,
  .page-payment-methods__hero-image img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
  }
  .page-payment-methods__security-subtitle,
  .page-payment-methods__bonus-subtitle {
    font-size: 1.5em;
  }
  .page-payment-methods__troubleshooting-card {
    text-align: left;
  }
  .page-payment-methods__troubleshooting-image {
    width: 100%; /* Ensure image fits */
    height: auto;
  }
  .page-payment-methods__cta-row {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods__final-cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}