.page-ban-ca {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
}

.page-ban-ca__content-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}

.page-ban-ca__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-ban-ca__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #FFF1E8;
}

.page-ban-ca__link-text {
  color: #FFB04A;
  text-decoration: none;
}

.page-ban-ca__link-text:hover {
  text-decoration: underline;
}

/* HERO Section */
.page-ban-ca__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background: linear-gradient(to bottom, #7E0D0D, #140C0C);
}

.page-ban-ca__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px 16px;
}

.page-ban-ca__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  text-align: left;
}

.page-ban-ca__hero-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Use clamp for H1 */
  font-weight: 900;
  color: #FFF1E8;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-ban-ca__hero-description {
  font-size: 1.2em;
  color: #FFF1E8;
  margin-bottom: 30px;
  max-width: 600px;
}

.page-ban-ca__hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-ban-ca__hero-image {
  flex: 1 1 40%;
  min-width: 300px;
  text-align: center;
}

.page-ban-ca__hero-side-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-ban-ca__cta-button,
.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C; /* Dark text for bright button */
  border: none;
}

.page-ban-ca__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 176, 74, 0.4);
}

.page-ban-ca__btn-secondary {
  background: transparent;
  color: #FFB04A;
  border: 2px solid #FFB04A;
}

.page-ban-ca__btn-secondary:hover {
  background: #FFB04A;
  color: #140C0C; /* Dark text for bright button */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 176, 74, 0.2);
}

/* Intro Section */
.page-ban-ca__intro-section {
  background-color: #140C0C;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Features Section */
.page-ban-ca__features-section {
  background-color: #2A1212; /* Card BG */
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.page-ban-ca__feature-item {
  background-color: #140C0C;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__icon-box-media {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F3C54D;
  box-shadow: 0 0 15px rgba(243, 197, 77, 0.5);
}

.page-ban-ca__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.page-ban-ca__feature-title {
  font-size: 1.5em;
  color: #F3C54D;
  margin-bottom: 10px;
}

.page-ban-ca__feature-description {
  color: #FFF1E8;
  font-size: 1em;
}

/* Games List Section */
.page-ban-ca__games-list-section {
  background-color: #140C0C;
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-ban-ca__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-ban-ca__game-card {
  background-color: #2A1212;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-ban-ca__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-ban-ca__game-card-title {
  font-size: 1.4em;
  color: #F3C54D;
  margin: 20px 15px 10px;
}

.page-ban-ca__game-card-description {
  color: #FFF1E8;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-ban-ca__game-card-button {
  margin: 0 15px 20px;
  padding: 10px 20px;
}

/* Guide Section */
.page-ban-ca__guide-section {
  background-color: #2A1212;
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-ban-ca__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-ban-ca__guide-step {
  background-color: #140C0C;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
}

.page-ban-ca__guide-step-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-ban-ca__guide-step-title {
  font-size: 1.3em;
  color: #F3C54D;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-ban-ca__guide-step-description {
  color: #FFF1E8;
  padding: 0 15px;
}

.page-ban-ca__guide-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

/* Tips Section */
.page-ban-ca__tips-section {
  background-color: #140C0C;
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-ban-ca__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-ban-ca__tip-item {
  background-color: #2A1212;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
}

.page-ban-ca__tip-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-ban-ca__tip-title {
  font-size: 1.4em;
  color: #F3C54D;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-ban-ca__tip-description {
  color: #FFF1E8;
  padding: 0 15px;
}

/* Promo Section */
.page-ban-ca__promo-section {
  background-color: #2A1212;
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-ban-ca__promo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-ban-ca__promo-item {
  background-color: #140C0C;
  border-left: 5px solid #FFB04A;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #FFF1E8;
  font-size: 1.1em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-ban-ca__promo-item strong {
  color: #F3C54D;
}

.page-ban-ca__promo-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

/* FAQ Section */
.page-ban-ca__faq-section {
  background-color: #140C0C;
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-ban-ca__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-ban-ca__faq-item {
  background-color: #2A1212;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F3C54D;
  cursor: pointer;
  background-color: #2A1212;
  border-bottom: 1px solid #6A1E1E;
  list-style: none;
}

.page-ban-ca__faq-question::-webkit-details-marker {
  display: none;
}

.page-ban-ca__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-ban-ca__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-ban-ca__faq-item[open] .page-ban-ca__faq-question {
  border-bottom: 1px solid #6A1E1E;
}

.page-ban-ca__faq-answer {
  padding: 0 20px 20px;
  font-size: 1.1em;
  color: #FFF1E8;
}

/* Conclusion Section */
.page-ban-ca__conclusion-section {
  background-color: #140C0C;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

.page-ban-ca__conclusion-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-ban-ca__hero-container {
    flex-direction: column;
    text-align: center;
  }

  .page-ban-ca__hero-content {
    text-align: center;
  }

  .page-ban-ca__hero-ctas {
    justify-content: center;
  }

  .page-ban-ca__hero-side-image {
    max-width: 500px;
  }

  .page-ban-ca__section-title {
    font-size: 2em;
  }

  .page-ban-ca__feature-item,
  .page-ban-ca__game-card,
  .page-ban-ca__guide-step,
  .page-ban-ca__tip-item {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .page-ban-ca {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-ban-ca__content-container {
    padding: 20px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* HERO Section */
  .page-ban-ca__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }

  .page-ban-ca__hero-container {
    flex-direction: column;
    gap: 20px;
    padding: 10px 15px;
  }

  .page-ban-ca__hero-title {
    font-size: 2.2em; /* Smaller H1 for mobile */
    margin-bottom: 15px;
  }

  .page-ban-ca__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-ban-ca__hero-ctas {
    flex-direction: column;
    gap: 10px;
  }

  /* Buttons */
  .page-ban-ca__cta-button,
  .page-ban-ca__btn-primary,
  .page-ban-ca__btn-secondary,
  .page-ban-ca a[class*="button"],
  .page-ban-ca 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;
  }
  
  .page-ban-ca__hero-ctas,
  .page-ban-ca__guide-ctas,
  .page-ban-ca__promo-ctas,
  .page-ban-ca__conclusion-ctas {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important;
    gap: 10px;
  }

  /* Section Titles */
  .page-ban-ca__section-title {
    font-size: 1.8em !important;
    margin-bottom: 30px !important;
  }

  /* Intro Section */
  .page-ban-ca__intro-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Features Section (Module 1) */
  .page-ban-ca__features-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .page-ban-ca__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-ban-ca__icon-box-media {
    width: 180px !important;
    height: 180px !important;
    border-width: 3px;
  }

  .page-ban-ca__feature-title {
    font-size: 1.3em;
  }

  /* Games List Section */
  .page-ban-ca__games-list-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .page-ban-ca__games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-ban-ca__game-card-image {
    height: 180px;
  }

  /* Guide Section */
  .page-ban-ca__guide-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .page-ban-ca__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-ban-ca__guide-step-image {
    height: 180px;
  }

  /* Tips Section */
  .page-ban-ca__tips-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .page-ban-ca__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-ban-ca__tip-image {
    height: 160px;
  }

  /* Promo Section */
  .page-ban-ca__promo-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .page-ban-ca__promo-item {
    font-size: 1em;
    padding: 12px 15px;
  }

  /* FAQ Section */
  .page-ban-ca__faq-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .page-ban-ca__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-ban-ca__faq-answer {
    font-size: 1em;
    padding: 0 15px 15px;
  }

  /* Conclusion Section */
  .page-ban-ca__conclusion-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* General Images */
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All containers with images or content */
  .page-ban-ca__section,
  .page-ban-ca__card,
  .page-ban-ca__container,
  .page-ban-ca__feature-item,
  .page-ban-ca__game-card,
  .page-ban-ca__guide-step,
  .page-ban-ca__tip-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}