.page-ban-ca {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

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

.page-ban-ca__section-spacing {
  padding: 60px 0;
}

.page-ban-ca__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FF8C1A; /* Primary color */
  text-align: center;
  margin-bottom: 20px;
}

.page-ban-ca__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFF3E6;
}

.page-ban-ca__text-main {
  color: #FFF3E6;
}

.page-ban-ca__dark-bg {
  background-color: #0D0E12; /* Background */
  color: #FFF3E6;
}

.page-ban-ca__card-bg {
  background-color: #17191F; /* Card BG */
}

/* HERO Section */
.page-ban-ca__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background: linear-gradient(180deg, rgba(255,165,58,0.1) 0%, rgba(255,140,26,0.1) 100%), #0D0E12; /* Subtle gradient with background */
  overflow: hidden;
}

.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: 40px 16px;
}

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

.page-ban-ca__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 */
  font-weight: 800;
  line-height: 1.2;
  color: #FF8C1A;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.page-ban-ca__hero-description {
  font-size: 1.25rem;
  color: #FFF3E6;
  margin-bottom: 30px;
}

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

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
  box-sizing: border-box;
  max-width: 100%;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-ban-ca__btn-primary:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #E67800 100%); /* Glow */
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
  transform: translateY(-2px);
}

.page-ban-ca__btn-secondary {
  background-color: transparent;
  color: #FF8C1A;
  border: 2px solid #A84F0C; /* Border color */
  box-shadow: none;
}

.page-ban-ca__btn-secondary:hover {
  background-color: rgba(255, 140, 26, 0.1);
  color: #FFB04D;
  border-color: #FFB04D;
  transform: translateY(-2px);
}

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

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

/* Intro Section (Module 1) */
.page-ban-ca__intro-section {
  background-color: #17191F; /* Card BG */
  color: #FFF3E6;
}

.page-ban-ca__icon-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.page-ban-ca__icon-box {
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  padding: 25px;
  border-radius: 12px;
  background-color: #0D0E12; /* Background */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
}

.page-ban-ca__icon-box-media {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FF8C1A;
  box-shadow: 0 0 0 8px rgba(255, 140, 26, 0.2);
}

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

.page-ban-ca__icon-box-title {
  font-size: 24px;
  font-weight: bold;
  color: #FF8C1A;
  margin-bottom: 10px;
}

.page-ban-ca__icon-box-text {
  font-size: 16px;
  color: #FFF3E6;
}

/* Game Types Section */
.page-ban-ca__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-ban-ca__game-card {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.page-ban-ca__game-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-ban-ca__game-card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-ban-ca__game-card-link {
  color: #FF8C1A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-ban-ca__game-card-link:hover {
  color: #FFA53A;
}

.page-ban-ca__game-card-text {
  font-size: 15px;
  color: #FFF3E6;
  margin-bottom: 20px;
}

.page-ban-ca__btn-small {
  padding: 10px 20px;
  font-size: 16px;
  margin-top: auto; /* Push button to bottom */
}

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

.page-ban-ca__guide-step {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.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: 22px;
  font-weight: bold;
  color: #FF8C1A;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-ban-ca__guide-step-text {
  font-size: 16px;
  color: #FFF3E6;
  margin-bottom: 20px;
  padding: 0 15px;
}

/* Why Choose Section */
.page-ban-ca__advantages-list {
  list-style: none;
  padding: 0;
  margin: 50px auto 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}

.page-ban-ca__advantages-list li {
  font-size: 18px;
  color: #FFF3E6;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.page-ban-ca__list-icon {
  color: #FFA53A;
  font-size: 24px;
  margin-right: 15px;
  line-height: 1;
}

/* Promo Section */
.page-ban-ca__promo-content {
  text-align: center;
  background-color: #17191F; /* Card BG */
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #A84F0C;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

/* FAQ Section */
.page-ban-ca__faq-list {
  max-width: 900px;
  margin: 50px auto 0;
}

.page-ban-ca__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  color: #FF8C1A;
  background-color: #17191F; /* Card BG */
  user-select: none;
  list-style: none;
}

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

.page-ban-ca__faq-qtext {
  flex-grow: 1;
  color: #FFF3E6; /* Ensure text is visible */
}

.page-ban-ca__faq-toggle {
  font-size: 28px;
  line-height: 1;
  margin-left: 15px;
  color: #FFA53A;
  transition: transform 0.3s ease;
}

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

.page-ban-ca__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  color: #FFF3E6;
  background-color: #0D0E12; /* Background for answer */
  border-top: 1px solid #A84F0C;
}

.page-ban-ca__faq-answer p {
  margin-bottom: 0;
}

/* Final CTA Section */
.page-ban-ca__cta-final-section .page-ban-ca__promo-content {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
}

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

.page-ban-ca__cta-final-section .page-ban-ca__btn-primary {
  background: #ffffff;
  color: #D96800;
  border-color: #ffffff;
}

.page-ban-ca__cta-final-section .page-ban-ca__btn-primary:hover {
  background: #f0f0f0;
  color: #B05000;
}

.page-ban-ca__cta-final-section .page-ban-ca__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.page-ban-ca__cta-final-section .page-ban-ca__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

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

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

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

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