/* style/resources-how-to-deposit-withdraw-game-onbet.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-color: #C30808;
  --login-button-color: #C30808;
  --background-color-page: #FFFFFF;
  --register-login-font-color: #FFFF00;
}

.page-resources-how-to-deposit-withdraw-game-onbet {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--background-color-page); /* Assumed light background from shared.css */
}

/* Hero Section */
.page-resources-how-to-deposit-withdraw-game-onbet__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-align: center;
  overflow: hidden;
}

.page-resources-how-to-deposit-withdraw-game-onbet__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
  overflow: hidden;
}

.page-resources-how-to-deposit-withdraw-game-onbet__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-how-to-deposit-withdraw-game-onbet__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-how-to-deposit-withdraw-game-onbet__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-resources-how-to-deposit-withdraw-game-onbet__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.page-resources-how-to-deposit-withdraw-game-onbet__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-how-to-deposit-withdraw-game-onbet__btn-primary,
.page-resources-how-to-deposit-withdraw-game-onbet__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-resources-how-to-deposit-withdraw-game-onbet__btn-primary {
  background-color: var(--register-button-color); /* Custom color for register */
  color: var(--register-login-font-color); /* Custom font color */
  border: 2px solid var(--register-button-color);
}

.page-resources-how-to-deposit-withdraw-game-onbet__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-resources-how-to-deposit-withdraw-game-onbet__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-resources-how-to-deposit-withdraw-game-onbet__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-resources-how-to-deposit-withdraw-game-onbet__btn-primary--large {
  font-size: 1.2em;
  padding: 18px 35px;
}

/* General Section Styling */
.page-resources-how-to-deposit-withdraw-game-onbet__section {
  padding: 80px 20px;
  text-align: center;
}

.page-resources-how-to-deposit-withdraw-game-onbet__content-area {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-how-to-deposit-withdraw-game-onbet__dark-bg {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-resources-how-to-deposit-withdraw-game-onbet__light-bg {
  background-color: var(--background-color-page);
  color: #333333;
}

.page-resources-how-to-deposit-withdraw-game-onbet__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-resources-how-to-deposit-withdraw-game-onbet__section-title--white {
  color: var(--secondary-color);
}

.page-resources-how-to-deposit-withdraw-game-onbet__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-how-to-deposit-withdraw-game-onbet__text-block--white {
  color: var(--secondary-color);
}

.page-resources-how-to-deposit-withdraw-game-onbet__text-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-resources-how-to-deposit-withdraw-game-onbet__text-link:hover {
  color: #005a2e;
}

/* Grid Container for Cards */
.page-resources-how-to-deposit-withdraw-game-onbet__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-deposit-withdraw-game-onbet__card {
  background-color: var(--secondary-color);
  color: #333333;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-how-to-deposit-withdraw-game-onbet__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-how-to-deposit-withdraw-game-onbet__card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-how-to-deposit-withdraw-game-onbet__card-description {
  font-size: 1em;
  line-height: 1.7;
}

.page-resources-how-to-deposit-withdraw-game-onbet__cta-wrapper {
  margin-top: 50px;
}

/* Steps Container */
.page-resources-how-to-deposit-withdraw-game-onbet__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  color: var(--secondary-color);
}

.page-resources-how-to-deposit-withdraw-game-onbet__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
}

.page-resources-how-to-deposit-withdraw-game-onbet__step-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-how-to-deposit-withdraw-game-onbet__step-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-resources-how-to-deposit-withdraw-game-onbet__step-list {
  list-style-type: disc;
  margin-left: 20px;
  font-size: 1em;
}

.page-resources-how-to-deposit-withdraw-game-onbet__step-list li {
  margin-bottom: 8px;
}

.page-resources-how-to-deposit-withdraw-game-onbet__step-list ol {
  list-style-type: decimal;
  margin-left: 20px;
}

/* Tips List */
.page-resources-how-to-deposit-withdraw-game-onbet__tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-resources-how-to-deposit-withdraw-game-onbet__tips-item {
  background-color: var(--secondary-color);
  color: #333333;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  padding: 25px;
}

.page-resources-how-to-deposit-withdraw-game-onbet__tips-title {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* FAQ Section */
.page-resources-how-to-deposit-withdraw-game-onbet__faq-section {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-resources-how-to-deposit-withdraw-game-onbet__faq-container {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-resources-how-to-deposit-withdraw-game-onbet__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-how-to-deposit-withdraw-game-onbet__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: background-color 0.3s ease;
}

.page-resources-how-to-deposit-withdraw-game-onbet__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-resources-how-to-deposit-withdraw-game-onbet__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-resources-how-to-deposit-withdraw-game-onbet__faq-item.active .page-resources-how-to-deposit-withdraw-game-onbet__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-how-to-deposit-withdraw-game-onbet__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: var(--secondary-color);
  background-color: rgba(0, 0, 0, 0.1); /* Slightly darker for contrast */
}

.page-resources-how-to-deposit-withdraw-game-onbet__faq-item.active .page-resources-how-to-deposit-withdraw-game-onbet__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-resources-how-to-deposit-withdraw-game-onbet__faq-answer p {
  margin-bottom: 0;
  font-size: 0.95em;
}

/* CTA Banner */
.page-resources-how-to-deposit-withdraw-game-onbet__cta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-how-to-deposit-withdraw-game-onbet__cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-how-to-deposit-withdraw-game-onbet__cta-banner-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-resources-how-to-deposit-withdraw-game-onbet__cta-banner-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.page-resources-how-to-deposit-withdraw-game-onbet__cta-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-how-to-deposit-withdraw-game-onbet__hero-title {
    font-size: 2.5em;
  }

  .page-resources-how-to-deposit-withdraw-game-onbet__section-title {
    font-size: 2em;
  }

  .page-resources-how-to-deposit-withdraw-game-onbet__cta-banner-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-deposit-withdraw-game-onbet {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-how-to-deposit-withdraw-game-onbet__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }

  .page-resources-how-to-deposit-withdraw-game-onbet__hero-title {
    font-size: 2em;
  }

  .page-resources-how-to-deposit-withdraw-game-onbet__hero-description {
    font-size: 1em;
  }

  .page-resources-how-to-deposit-withdraw-game-onbet__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-how-to-deposit-withdraw-game-onbet__btn-primary,
  .page-resources-how-to-deposit-withdraw-game-onbet__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-how-to-deposit-withdraw-game-onbet__section,
  .page-resources-how-to-deposit-withdraw-game-onbet__content-area,
  .page-resources-how-to-deposit-withdraw-game-onbet__cta-banner {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Prevent horizontal scrolling */
  }

  .page-resources-how-to-deposit-withdraw-game-onbet__section-title,
  .page-resources-how-to-deposit-withdraw-game-onbet__cta-banner-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-how-to-deposit-withdraw-game-onbet__text-block {
    font-size: 1em;
  }

  .page-resources-how-to-deposit-withdraw-game-onbet__grid-container,
  .page-resources-how-to-deposit-withdraw-game-onbet__steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-how-to-deposit-withdraw-game-onbet__card,
  .page-resources-how-to-deposit-withdraw-game-onbet__step-item,
  .page-resources-how-to-deposit-withdraw-game-onbet__tips-item,
  .page-resources-how-to-deposit-withdraw-game-onbet__faq-item {
    padding: 20px;
  }

  .page-resources-how-to-deposit-withdraw-game-onbet__card-image,
  .page-resources-how-to-deposit-withdraw-game-onbet__step-image,
  .page-resources-how-to-deposit-withdraw-game-onbet__hero-image,
  .page-resources-how-to-deposit-withdraw-game-onbet__cta-banner-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }

  .page-resources-how-to-deposit-withdraw-game-onbet__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-resources-how-to-deposit-withdraw-game-onbet__faq-answer {
    padding: 10px 20px;
  }
  
  /* Ensure content area images are not smaller than 200px */
  .page-resources-how-to-deposit-withdraw-game-onbet img {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px;
    min-height: 200px;
  }
}

/* Contrast Fixes */
.page-resources-how-to-deposit-withdraw-game-onbet__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-resources-how-to-deposit-withdraw-game-onbet__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}