/* style/payment-methods-deposit-process.css */
.page-payment-methods-deposit-process {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a2e; /* Inherited from body, set explicitly for clarity */
}

.page-payment-methods-deposit-process__section {
  padding: 60px 20px;
  text-align: center;
}

.page-payment-methods-deposit-process__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-payment-methods-deposit-process__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  box-sizing: border-box;
}

.page-payment-methods-deposit-process__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-payment-methods-deposit-process__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-payment-methods-deposit-process__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-payment-methods-deposit-process__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for title */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-payment-methods-deposit-process__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-payment-methods-deposit-process__hero-cta-button,
.page-payment-methods-deposit-process__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1a1a2e; /* Dark text for gold background */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-payment-methods-deposit-process__hero-cta-button:hover,
.page-payment-methods-deposit-process__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-payment-methods-deposit-process__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #FFD700;
  position: relative;
  padding-bottom: 10px;
}

.page-payment-methods-deposit-process__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #4A148C;
  border-radius: 2px;
}

.page-payment-methods-deposit-process__section-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #f0f0f0;
}

.page-payment-methods-deposit-process__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 40px auto;
  background-color: #000;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-payment-methods-deposit-process__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: block;
  z-index: 10;
}

.page-payment-methods-deposit-process__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
}

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

.page-payment-methods-deposit-process__method-card {
  background-color: rgba(74, 20, 140, 0.7); /* Translucent brand color */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-payment-methods-deposit-process__method-card:hover {
  transform: translateY(-8px);
  background-color: #4A148C;
}

.page-payment-methods-deposit-process__method-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-payment-methods-deposit-process__method-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-payment-methods-deposit-process__method-description {
  font-size: 1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-payment-methods-deposit-process__method-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #FFD700;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-payment-methods-deposit-process__method-link:hover {
  background-color: #FFD700;
  color: #1a1a2e;
}

.page-payment-methods-deposit-process__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  background-color: rgba(74, 20, 140, 0.5);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-deposit-process__step-item:nth-child(even) {
  flex-direction: column-reverse;
  background-color: rgba(255, 215, 0, 0.1);
}

.page-payment-methods-deposit-process__step-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-payment-methods-deposit-process__step-description {
  font-size: 1.1em;
  max-width: 800px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-payment-methods-deposit-process__step-description a {
  color: #FFD700;
  text-decoration: underline;
}

.page-payment-methods-deposit-process__step-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-deposit-process__notes-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-payment-methods-deposit-process__notes-item {
  background-color: rgba(74, 20, 140, 0.7);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  font-size: 1.1em;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-deposit-process__notes-item strong {
  color: #FFD700;
}

.page-payment-methods-deposit-process__dark-section {
  background-color: #4A148C; /* Brand primary color for dark section */
  color: #ffffff;
}

.page-payment-methods-deposit-process__dark-section .page-payment-methods-deposit-process__section-title {
  color: #FFD700;
}

.page-payment-methods-deposit-process__dark-section .page-payment-methods-deposit-process__section-title::after {
  background-color: #FFD700;
}

.page-payment-methods-deposit-process__promotion-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-payment-methods-deposit-process__btn-primary {
  background-color: #FFD700;
  color: #1a1a2e;
  border: none;
}

.page-payment-methods-deposit-process__btn-primary:hover {
  background-color: #e6c200;
}

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

.page-payment-methods-deposit-process__btn-secondary:hover {
  background-color: #FFD700;
  color: #1a1a2e;
}

.page-payment-methods-deposit-process__faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-payment-methods-deposit-process__faq-item {
  background-color: rgba(74, 20, 140, 0.7);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-deposit-process__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  background-color: #4A148C;
  transition: background-color 0.3s ease;
}

.page-payment-methods-deposit-process__faq-question:hover {
  background-color: #3a1070;
}

.page-payment-methods-deposit-process__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-payment-methods-deposit-process__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #e0e0e0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-payment-methods-deposit-process__faq-answer p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1em;
}

.page-payment-methods-deposit-process__faq-item.active .page-payment-methods-deposit-process__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px;
}

.page-payment-methods-deposit-process__faq-item.active .page-payment-methods-deposit-process__faq-toggle {
  transform: rotate(45deg);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-payment-methods-deposit-process__hero-title {
    font-size: 2.8em;
  }
  .page-payment-methods-deposit-process__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-deposit-process {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-payment-methods-deposit-process__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-payment-methods-deposit-process__hero-title {
    font-size: 2.2em;
  }
  .page-payment-methods-deposit-process__hero-description {
    font-size: 1em;
  }
  .page-payment-methods-deposit-process__hero-cta-button,
  .page-payment-methods-deposit-process__cta-button,
  .page-payment-methods-deposit-process__btn-primary,
  .page-payment-methods-deposit-process__btn-secondary,
  .page-payment-methods-deposit-process a[class*="button"],
  .page-payment-methods-deposit-process a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 10px;
  }

  .page-payment-methods-deposit-process__cta-buttons,
  .page-payment-methods-deposit-process__button-group,
  .page-payment-methods-deposit-process__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-payment-methods-deposit-process__section {
    padding: 40px 15px;
  }
  .page-payment-methods-deposit-process__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods-deposit-process__section-text {
    font-size: 0.95em;
  }
  .page-payment-methods-deposit-process__method-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods-deposit-process__step-item {
    padding: 20px;
  }
  .page-payment-methods-deposit-process__step-title {
    font-size: 1.5em;
  }
  .page-payment-methods-deposit-process__step-description {
    font-size: 0.95em;
  }
  .page-payment-methods-deposit-process img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-payment-methods-deposit-process__section,
  .page-payment-methods-deposit-process__card,
  .page-payment-methods-deposit-process__container,
  .page-payment-methods-deposit-process__video-section,
  .page-payment-methods-deposit-process__video-container,
  .page-payment-methods-deposit-process__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-payment-methods-deposit-process__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-deposit-process__hero-section {
    height: 400px;
  }
  .page-payment-methods-deposit-process__hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods-deposit-process__hero-description {
    font-size: 0.9em;
  }
  .page-payment-methods-deposit-process__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods-deposit-process__hero-cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-payment-methods-deposit-process__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-payment-methods-deposit-process__faq-answer {
    padding: 0 15px;
  }
  .page-payment-methods-deposit-process__faq-item.active .page-payment-methods-deposit-process__faq-answer {
    padding: 10px 15px;
  }
}