/* style/payment-methods-cryptocurrency.css */

/* Base styles for the page content */
.page-payment-methods-cryptocurrency {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Ensure this matches body background */
}

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

/* Section spacing and background */
.page-payment-methods-cryptocurrency__section {
  padding: 60px 0;
  background-color: #000000; /* Dark background for all sections */
}

.page-payment-methods-cryptocurrency__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFD700; /* Gold color for titles */
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-cryptocurrency__section-description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* HERO Section */
.page-payment-methods-cryptocurrency__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px; /* Fixed navigation bar spacing */
  margin-top: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero */
}

.page-payment-methods-cryptocurrency__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  z-index: 1;
}

.page-payment-methods-cryptocurrency__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-payment-methods-cryptocurrency__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.4); /* Darken image for better text readability */
}

.page-payment-methods-cryptocurrency__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 900px;
}

.page-payment-methods-cryptocurrency__hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.page-payment-methods-cryptocurrency__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-payment-methods-cryptocurrency__btn-primary,
.page-payment-methods-cryptocurrency__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  min-width: 200px;
}

.page-payment-methods-cryptocurrency__btn-primary {
  background-color: #FFD700;
  color: #000000; /* Black text for gold button */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-payment-methods-cryptocurrency__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-payment-methods-cryptocurrency__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-payment-methods-cryptocurrency__btn-secondary:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-payment-methods-cryptocurrency__btn-center {
  display: block;
  margin: 40px auto 0 auto;
}

/* Intro Section Grid */
.page-payment-methods-cryptocurrency__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-payment-methods-cryptocurrency__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
  border: 1px solid rgba(255, 215, 0, 0.2); /* Gold border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff; /* White text on dark card */
}

.page-payment-methods-cryptocurrency__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-payment-methods-cryptocurrency__card-text {
  font-size: 16px;
  color: #f0f0f0;
}

.page-payment-methods-cryptocurrency__cta-box {
  text-align: center;
  padding: 40px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  margin-top: 40px;
  border: 1px solid #FFD700;
}

.page-payment-methods-cryptocurrency__cta-text {
  font-size: 22px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 25px;
}

/* Supported Crypto Section */
.page-payment-methods-cryptocurrency__crypto-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-payment-methods-cryptocurrency__crypto-item {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  width: 280px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

.page-payment-methods-cryptocurrency__crypto-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-payment-methods-cryptocurrency__crypto-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods-cryptocurrency__crypto-name {
  font-size: 24px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-payment-methods-cryptocurrency__crypto-info {
  font-size: 16px;
  color: #f0f0f0;
}

/* Deposit/Withdraw Guide Steps */
.page-payment-methods-cryptocurrency__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods-cryptocurrency__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  text-align: center;
}

.page-payment-methods-cryptocurrency__step-icon {
  background-color: #FFD700;
  color: #000000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

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

.page-payment-methods-cryptocurrency__step-text {
  font-size: 16px;
  color: #f0f0f0;
}

.page-payment-methods-cryptocurrency__step-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 20px auto 0 auto;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Full width image */
.page-payment-methods-cryptocurrency__full-width-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

/* FAQ Section */
.page-payment-methods-cryptocurrency__faq-list {
  margin-top: 40px;
}

.page-payment-methods-cryptocurrency__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-payment-methods-cryptocurrency__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-payment-methods-cryptocurrency__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page-payment-methods-cryptocurrency__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700; /* Gold color for questions */
  pointer-events: none;
}

.page-payment-methods-cryptocurrency__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-payment-methods-cryptocurrency__faq-item.active .page-payment-methods-cryptocurrency__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Plus to X for active */
}

.page-payment-methods-cryptocurrency__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #f0f0f0;
}

.page-payment-methods-cryptocurrency__faq-item.active .page-payment-methods-cryptocurrency__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 215, 0, 0.05);
}

.page-payment-methods-cryptocurrency__faq-answer p {
  margin: 0;
  font-size: 16px;
}

/* Support Section */
.page-payment-methods-cryptocurrency__contact-info {
  text-align: center;
  margin-top: 30px;
  font-size: 18px;
  color: #f0f0f0;
}

.page-payment-methods-cryptocurrency__contact-info p {
  margin-bottom: 10px;
}

.page-payment-methods-cryptocurrency__contact-info a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-payment-methods-cryptocurrency__contact-info a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-payment-methods-cryptocurrency__section-title {
    font-size: 32px;
  }
  .page-payment-methods-cryptocurrency__hero-title {
    font-size: 42px;
  }
  .page-payment-methods-cryptocurrency__hero-description {
    font-size: 18px;
  }
  .page-payment-methods-cryptocurrency__crypto-list {
    gap: 20px;
  }
  .page-payment-methods-cryptocurrency__crypto-item {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-cryptocurrency__hero-section {
    padding-top: 10px;
    min-height: 400px;
  }
  .page-payment-methods-cryptocurrency__hero-title {
    font-size: 32px;
  }
  .page-payment-methods-cryptocurrency__hero-description {
    font-size: 16px;
  }
  .page-payment-methods-cryptocurrency__btn-primary,
  .page-payment-methods-cryptocurrency__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
    min-width: unset;
    width: 100%;
  }
  .page-payment-methods-cryptocurrency__section {
    padding: 40px 0;
  }
  .page-payment-methods-cryptocurrency__section-title {
    font-size: 28px;
  }
  .page-payment-methods-cryptocurrency__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-payment-methods-cryptocurrency__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-payment-methods-cryptocurrency__card {
    padding: 25px;
  }
  .page-payment-methods-cryptocurrency__card-title {
    font-size: 20px;
  }
  .page-payment-methods-cryptocurrency__card-text {
    font-size: 15px;
  }
  .page-payment-methods-cryptocurrency__cta-box {
    padding: 30px;
  }
  .page-payment-methods-cryptocurrency__cta-text {
    font-size: 18px;
  }
  .page-payment-methods-cryptocurrency__crypto-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .page-payment-methods-cryptocurrency__crypto-item {
    width: 100%;
    max-width: 350px;
  }
  .page-payment-methods-cryptocurrency__crypto-logo {
    width: 100px;
    height: 100px;
  }
  .page-payment-methods-cryptocurrency__crypto-name {
    font-size: 20px;
  }
  .page-payment-methods-cryptocurrency__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-payment-methods-cryptocurrency__step-item {
    padding: 25px;
  }
  .page-payment-methods-cryptocurrency__step-title {
    font-size: 20px;
  }
  .page-payment-methods-cryptocurrency__step-text {
    font-size: 15px;
  }
  .page-payment-methods-cryptocurrency__step-image {
    max-width: 100%;
  }
  .page-payment-methods-cryptocurrency__faq-question {
    padding: 15px 20px;
  }
  .page-payment-methods-cryptocurrency__faq-question h3 {
    font-size: 16px;
  }
  .page-payment-methods-cryptocurrency__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-payment-methods-cryptocurrency__faq-answer {
    padding: 0 20px;
  }
  .page-payment-methods-cryptocurrency__faq-item.active .page-payment-methods-cryptocurrency__faq-answer {
    padding: 15px 20px !important;
  }
  .page-payment-methods-cryptocurrency__faq-answer p {
    font-size: 15px;
  }
  .page-payment-methods-cryptocurrency__contact-info {
    font-size: 16px;
  }
  .page-payment-methods-cryptocurrency img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-payment-methods-cryptocurrency__section,
  .page-payment-methods-cryptocurrency__card,
  .page-payment-methods-cryptocurrency__container,
  .page-payment-methods-cryptocurrency__hero-container,
  .page-payment-methods-cryptocurrency__crypto-item,
  .page-payment-methods-cryptocurrency__step-item,
  .page-payment-methods-cryptocurrency__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-payment-methods-cryptocurrency__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Ensure all images are responsive by default */
.page-payment-methods-cryptocurrency img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Contrast Fixes - Ensure text is visible on various backgrounds */
.page-payment-methods-cryptocurrency__dark-bg {
  color: #ffffff; /* Dark background needs light text */
}

.page-payment-methods-cryptocurrency__card {
  color: #ffffff;
}

.page-payment-methods-cryptocurrency__cta-text {
  color: #FFD700;
}

.page-payment-methods-cryptocurrency__btn-primary {
  color: #000000; /* Gold button needs black text */
}

.page-payment-methods-cryptocurrency__btn-secondary {
  color: #FFD700;
}

.page-payment-methods-cryptocurrency__faq-question h3 {
  color: #FFD700;
}

.page-payment-methods-cryptocurrency__faq-toggle {
  color: #FFD700;
}

.page-payment-methods-cryptocurrency__faq-item.active .page-payment-methods-cryptocurrency__faq-toggle {
  color: #ffffff;
}

.page-payment-methods-cryptocurrency__faq-answer {
  color: #f0f0f0;
}

.page-payment-methods-cryptocurrency__contact-info a {
  color: #FFD700;
}

.page-payment-methods-cryptocurrency__contact-info a:hover {
  color: #ffffff;
}