.page-payment-methods {
  color: #ffffff; /* Default text color for dark background */
  background-color: #000000; /* Main background color */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Space for fixed header */
}

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

.page-payment-methods__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  color: #ffffff;
}

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

.page-payment-methods__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-payment-methods__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

.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, color 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.page-payment-methods__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-payment-methods__button--register:hover {
  background-color: #e0e0e0;
}

.page-payment-methods__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-payment-methods__button--login:hover {
  background-color: #e6a73c;
}

.page-payment-methods__section {
  padding: 60px 0;
  text-align: center;
}

.page-payment-methods__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #FCBC45;
}

.page-payment-methods__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

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

.page-payment-methods__method-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-payment-methods__method-image {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #FCBC45;
}

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

.page-payment-methods__method-description {
  color: #cccccc;
  font-size: 1em;
  text-align: left;
}

.page-payment-methods__button--deposit, .page-payment-methods__button--withdraw {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 30px;
}

.page-payment-methods__button--deposit:hover, .page-payment-methods__button--withdraw:hover {
  background-color: #e6a73c;
}

.page-payment-methods__security-image {
  width: 800px;
  height: 600px;
  object-fit: contain;
  margin-top: 40px;
  border-radius: 12px;
  border: 1px solid #FCBC45;
}

.page-payment-methods__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 15px;
  text-align: left;
}

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

.page-payment-methods__faq-answer {
  color: #cccccc;
  font-size: 1em;
}

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

.page-payment-methods__button--register-cta {
  background-color: #FFFFFF;
  color: #000000;
}

.page-payment-methods__button--register-cta:hover {
  background-color: #e0e0e0;
}

.page-payment-methods__button--explore-games {
  background-color: transparent;
  border: 2px solid #FCBC45;
  color: #FCBC45;
}

.page-payment-methods__button--explore-games:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-payment-methods__cta-image {
  width: 1200px;
  height: 675px;
  object-fit: cover;
  margin-top: 50px;
  border-radius: 12px;
}

/* Responsive Design */
@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: 2em;
  }
  .page-payment-methods__security-image,
  .page-payment-methods__cta-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-section {
    padding: 60px 15px;
  }
  .page-payment-methods__hero-title {
    font-size: 2.5em;
  }
  .page-payment-methods__hero-description {
    font-size: 1em;
  }
  .page-payment-methods__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods__button {
    width: 100%;
    min-width: unset;
  }
  .page-payment-methods__section {
    padding: 40px 0;
  }
  .page-payment-methods__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods__text {
    text-align: center;
  }
  .page-payment-methods__method-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods__method-image {
    max-width: 100%;
    height: auto;
  }
  .page-payment-methods__security-image,
  .page-payment-methods__cta-image {
    max-width: 100%;
    height: auto;
  }
  .page-payment-methods__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods__container {
    padding: 0 15px;
  }
  .page-payment-methods img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-payment-methods__hero-title {
    font-size: 2em;
  }
  .page-payment-methods__hero-description {
    font-size: 0.9em;
  }
  .page-payment-methods__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-payment-methods__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods__method-title {
    font-size: 1.5em;
  }
  .page-payment-methods__faq-question {
    font-size: 1.1em;
  }
}