.page-ban-ca__hero-section {
  padding-top: 10px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
}

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

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

.page-ban-ca__main-title {
  font-size: 3.2em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  max-width: 600px;
}

.page-ban-ca__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 600px;
}

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

.page-ban-ca__side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-ban-ca__btn-primary:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  transform: translateY(-2px);
}

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

.page-ban-ca__btn-secondary:hover {
  background: #f0f0f0;
  color: #E53935;
  transform: translateY(-2px);
}

/* General Section Styles */
.page-ban-ca__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 60px 16px;
}

.page-ban-ca__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #E53935;
  text-align: center;
  margin-bottom: 20px;
}

.page-ban-ca__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333333;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-ban-ca__dark-bg {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
}

.page-ban-ca__dark-bg .page-ban-ca__section-title,
.page-ban-ca__dark-bg .page-ban-ca__description {
  color: #ffffff;
}

.page-ban-ca__light-bg {
  background-color: #F5F7FA;
  color: #333333;
}

.page-ban-ca__medium-bg {
  background-color: #FF5A4F;
  color: #ffffff;
}

.page-ban-ca__medium-bg .page-ban-ca__section-title,
.page-ban-ca__medium-bg .page-ban-ca__section-description,
.page-ban-ca__medium-bg .page-ban-ca__guide-steps li h3,
.page-ban-ca__medium-bg .page-ban-ca__guide-steps li p {
  color: #ffffff;
}

/* Intro Section */
.page-ban-ca__intro-section {
  padding-bottom: 30px;
}

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

.page-ban-ca__feature-item {
  text-align: center;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-ban-ca__feature-item:hover {
  transform: translateY(-5px);
}

.page-ban-ca__icon-box-media {
  width: 200px;
  height: 200px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #E53935;
}

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

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

.page-ban-ca__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #333333;
}

/* Gameplay Section */
.page-ban-ca__game-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-ban-ca__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.page-ban-ca__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-ban-ca__game-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #E53935;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-ban-ca__game-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-ban-ca__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-ban-ca__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Guide Section */
.page-ban-ca__guide-section {
  padding-bottom: 30px;
}

.page-ban-ca__guide-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-ban-ca__guide-steps {
  flex: 1 1 50%;
  min-width: 300px;
}

.page-ban-ca__guide-steps ol {
  list-style: none;
  counter-reset: guide-step;
  padding: 0;
}

.page-ban-ca__guide-steps li {
  counter-increment: guide-step;
  margin-bottom: 25px;
  position: relative;
  padding-left: 50px;
}

.page-ban-ca__guide-steps li::before {
  content: counter(guide-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background-color: #ffffff;
  color: #E53935;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2em;
  border: 2px solid #E53935;
}

.page-ban-ca__guide-steps li h3 {
  font-size: 1.4em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.page-ban-ca__guide-steps li p {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-ban-ca__guide-cta {
  margin-top: 30px;
  display: inline-block;
}

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

.page-ban-ca__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Tips Section */
.page-ban-ca__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-ban-ca__tip-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-ban-ca__tip-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #E53935;
  margin-bottom: 10px;
}

.page-ban-ca__tip-text {
  font-size: 1em;
  line-height: 1.6;
  color: #333333;
}

.page-ban-ca__image-center {
  text-align: center;
  margin-top: 40px;
}

.page-ban-ca__responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.page-ban-ca__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-ban-ca__faq-item {
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-ban-ca__faq-item summary {
  display: block;
  padding: 20px 25px;
  cursor: pointer;
  outline: none;
  font-size: 1.1em;
  font-weight: 600;
  color: #333333;
  position: relative;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.page-ban-ca__faq-question {
  font-size: 1.1em;
  font-weight: 600;
  color: #333333;
  padding-right: 40px; /* Space for toggle icon */
}

.page-ban-ca__faq-toggle {
  font-size: 1.5em;
  font-weight: 600;
  color: #E53935;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.page-ban-ca__faq-item[open] .page-ban-ca__faq-toggle {
  transform: translateY(-50%) rotate(45deg);
}

.page-ban-ca__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

/* Final CTA Section */
.page-ban-ca__cta-final-section {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

.page-ban-ca__cta-final-content .page-ban-ca__section-title,
.page-ban-ca__cta-final-content .page-ban-ca__section-description {
  color: #ffffff;
}

.page-ban-ca__cta-final-content .page-ban-ca__section-description {
  margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-ban-ca__main-title {
    font-size: 2.8em;
  }

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

  .page-ban-ca__hero-container,
  .page-ban-ca__guide-content {
    flex-direction: column;
    text-align: center;
  }

  .page-ban-ca__hero-content,
  .page-ban-ca__hero-image,
  .page-ban-ca__guide-steps,
  .page-ban-ca__guide-image-wrapper {
    flex: 1 1 100%;
  }

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

  .page-ban-ca__cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-ban-ca__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-ban-ca__hero-container {
    padding: 30px 15px;
    gap: 30px;
  }

  .page-ban-ca__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-ban-ca__description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-ban-ca__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-ban-ca__btn-primary,
  .page-ban-ca__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Section Titles & Descriptions */
  .page-ban-ca__container {
    padding: 40px 15px;
  }

  .page-ban-ca__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-ban-ca__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  /* Module 1 (Intro Section with circular images) */
  .page-ban-ca__features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-ban-ca__feature-item {
    padding: 25px 15px;
  }

  .page-ban-ca__icon-box-media {
    width: 160px;
    height: 160px;
    margin-bottom: 15px;
  }

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

  /* Gameplay Section */
  .page-ban-ca__game-showcase {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .page-ban-ca__game-title {
    font-size: 1.2em;
  }

  .page-ban-ca__game-text {
    font-size: 0.9em;
  }

  .page-ban-ca__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Guide Section */
  .page-ban-ca__guide-content {
    gap: 30px;
    margin-top: 30px;
  }

  .page-ban-ca__guide-steps li {
    padding-left: 40px;
    margin-bottom: 20px;
  }

  .page-ban-ca__guide-steps li::before {
    width: 30px;
    height: 30px;
    font-size: 1.1em;
  }

  .page-ban-ca__guide-steps li h3 {
    font-size: 1.2em;
  }

  .page-ban-ca__guide-steps li p {
    font-size: 0.95em;
  }

  .page-ban-ca__guide-cta {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* Tips Section */
  .page-ban-ca__tips-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-ban-ca__tip-item {
    padding: 20px;
  }

  .page-ban-ca__tip-title {
    font-size: 1.2em;
  }

  .page-ban-ca__tip-text {
    font-size: 0.95em;
  }

  /* FAQ Section */
  .page-ban-ca__faq-list {
    margin-top: 30px;
  }

  .page-ban-ca__faq-item summary {
    padding: 18px 20px;
    font-size: 1em;
  }

  .page-ban-ca__faq-toggle {
    right: 20px;
  }

  .page-ban-ca__faq-answer {
    padding: 0 20px 18px;
    font-size: 0.95em;
  }

  /* Final CTA Section */
  .page-ban-ca__cta-final-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Generic Image & Container Responsiveness */
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-ban-ca__section,
  .page-ban-ca__card,
  .page-ban-ca__container,
  .page-ban-ca__hero-container,
  .page-ban-ca__guide-content,
  .page-ban-ca__game-showcase,
  .page-ban-ca__features-grid,
  .page-ban-ca__tips-grid,
  .page-ban-ca__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-ban-ca__hero-image,
  .page-ban-ca__guide-image-wrapper,
  .page-ban-ca__image-center {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Ensure all content areas have appropriate padding and max-width */
.page-ban-ca__content-area, .page-ban-ca__text-block {
  color: #333333; /* Default text color for light backgrounds */
  background: #F5F7FA; /* Default light background */
}

.page-ban-ca p, .page-ban-ca li {
  color: #333333;
}

.page-ban-ca__card {
  background: #ffffff;
  color: #333333;
  border: 1px solid #E0E0E0;
}

.page-ban-ca__dark-section {
  background: #E53935;
  color: #ffffff;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

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