.page-payment-methods {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000; /* Body background is black from shared.css */
}

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

.page-payment-methods__dark-bg {
  background-color: #0A2038;
  color: #ffffff;
}

.page-payment-methods__light-bg {
  background-color: #f0f0f0;
  color: #333333;
}

.page-payment-methods__hero-section {
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('[GALLERY:hero_payment:1920x1080:8day8_bet,payment_methods,hero,secure_transactions]');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.page-payment-methods__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.page-payment-methods__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-payment-methods__description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.8;
}

.page-payment-methods__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700;
  color: #0A2038;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-payment-methods__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-payment-methods__cta-button--large {
  padding: 18px 40px;
  font-size: 22px;
}

.page-payment-methods__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700;
}

.page-payment-methods__overview-section, 
.page-payment-methods__deposit-section, 
.page-payment-methods__withdrawal-section, 
.page-payment-methods__security-section, 
.page-payment-methods__support-section, 
.page-payment-methods__cta-bottom-section {
  padding: 60px 0;
}

.page-payment-methods__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-payment-methods__content-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

.page-payment-methods__text-block {
  flex: 1;
}

.page-payment-methods__text-block h3 {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-payment-methods__text-block p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.7;
}

.page-payment-methods__image-block {
  flex: 1;
  text-align: center;
}

.page-payment-methods__image-block img,
.page-payment-methods__image-block-center img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-payment-methods__image-block-center {
  text-align: center;
  margin-top: 40px;
}

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

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

.page-payment-methods__method-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-payment-methods__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__method-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-payment-methods__method-card p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-payment-methods__method-features {
  list-style-type: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.page-payment-methods__method-features li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #cccccc;
  position: relative;
  padding-left: 25px;
}

.page-payment-methods__method-features li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-payment-methods__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-payment-methods__feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-payment-methods__feature-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__feature-item h3 {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-payment-methods__feature-item p {
  font-size: 16px;
  color: #f0f0f0;
}

.page-payment-methods__support-channels {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.page-payment-methods__support-channels li {
  margin-bottom: 10px;
  font-size: 17px;
  color: #333333;
}

.page-payment-methods__support-channels li a {
  color: #0A2038;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-payment-methods__support-channels li a:hover {
  color: #FFD700;
}

.page-payment-methods__cta-bottom-section {
  text-align: center;
  padding: 80px 20px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .page-payment-methods__main-title {
    font-size: 42px;
  }
  .page-payment-methods__section-title {
    font-size: 32px;
  }
  .page-payment-methods__description, .page-payment-methods__section-intro {
    font-size: 17px;
  }
  .page-payment-methods__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-payment-methods__content-wrapper:nth-child(even) {
    flex-direction: column;
  }
  .page-payment-methods__image-block, .page-payment-methods__text-block {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 60px;
  }
  .page-payment-methods__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-payment-methods__description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-payment-methods__cta-button {
    padding: 12px 25px;
    font-size: 18px;
  }
  .page-payment-methods__cta-button--large {
    padding: 15px 30px;
    font-size: 20px;
  }
  .page-payment-methods__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-payment-methods__overview-section, 
  .page-payment-methods__deposit-section, 
  .page-payment-methods__withdrawal-section, 
  .page-payment-methods__security-section, 
  .page-payment-methods__support-section, 
  .page-payment-methods__cta-bottom-section {
    padding: 40px 0;
  }
  .page-payment-methods__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-payment-methods__content-wrapper {
    gap: 30px;
  }
  .page-payment-methods__method-card {
    padding: 25px;
  }
  .page-payment-methods__method-title {
    font-size: 20px;
  }
  .page-payment-methods__method-card p, .page-payment-methods__method-features li {
    font-size: 15px;
  }
  .page-payment-methods__security-features {
    grid-template-columns: 1fr;
  }
  .page-payment-methods__feature-item h3 {
    font-size: 20px;
  }
  .page-payment-methods img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-payment-methods__image-block, .page-payment-methods__text-block, .page-payment-methods__image-block-center {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  .page-payment-methods__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-payment-methods__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-payment-methods__main-title {
    font-size: 28px;
  }
  .page-payment-methods__section-title {
    font-size: 24px;
  }
  .page-payment-methods__cta-button--large {
    font-size: 18px;
  }
  .page-payment-methods__method-card {
    padding: 20px;
  }
  .page-payment-methods__method-title {
    font-size: 18px;
  }
  .page-payment-methods__feature-item {
    padding: 20px;
  }
  .page-payment-methods__feature-item h3 {
    font-size: 18px;
  }
}