.page-ban-ca {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: transparent; /* Body background is handled by shared.css var(--deep-navy) */
}

.page-ban-ca__dark-section {
  background-color: #08162B; /* Deep Navy */
  color: #F3F8FF;
}

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

.page-ban-ca__hero-section {
  padding-top: 10px; /* Small top padding as body handles header offset */
  padding-bottom: 60px;
  background-color: #113B7A; /* Main color as hero background */
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-ban-ca__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  order: 2; /* Content after image for desktop */
}

.page-ban-ca__hero-image-wrapper {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
  order: 1; /* Image before content for desktop */
}

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

.page-ban-ca__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-ban-ca__hero-description {
  font-size: 1.1rem;
  color: #AFC4E8; /* Text Secondary */
  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-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-ban-ca__btn-secondary {
  background: #1D5FD1; /* Auxiliary color */
  color: #F3F8FF;
  border: 2px solid #1D5FD1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__btn-secondary:hover {
  background: transparent;
  border-color: #2B73F6;
  color: #2B73F6;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-ban-ca__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-ban-ca__sub-section-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: bold;
  color: #F3F8FF;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-ban-ca__paragraph {
  font-size: 1rem;
  color: #AFC4E8;
  margin-bottom: 15px;
}

.page-ban-ca__paragraph a {
  color: #2B73F6;
  text-decoration: none;
}

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

.page-ban-ca__text-center {
  text-align: center;
}

.page-ban-ca__card {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #F3F8FF;
}

.page-ban-ca__introduction-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #08162B; /* Deep Navy */
}

.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;
}

.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 #F2C14E; /* Gold */
  box-shadow: 0 0 0 6px rgba(242, 193, 78, 0.3);
}

.page-ban-ca__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Ensure image is also circular */
  display: block;
}

.page-ban-ca__feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F3F8FF;
  margin-bottom: 10px;
}

.page-ban-ca__feature-description {
  font-size: 0.95rem;
  color: #AFC4E8;
}

.page-ban-ca__game-types-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #113B7A;
}

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

.page-ban-ca__game-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page-ban-ca__game-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  display: block;
}

.page-ban-ca__game-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-ban-ca__game-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-ban-ca__game-description {
  font-size: 0.95rem;
  color: #AFC4E8;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-ban-ca__guide-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #08162B;
}

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

.page-ban-ca__step-item {
  display: flex;
  flex-direction: column;
}

.page-ban-ca__step-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #F3F8FF;
  margin-bottom: 15px;
}

.page-ban-ca__step-description {
  font-size: 0.95rem;
  color: #AFC4E8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-ban-ca__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-ban-ca__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #AFC4E8;
}

.page-ban-ca__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F2C14E; /* Gold */
  font-weight: bold;
}

.page-ban-ca__promo-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #113B7A;
}

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

.page-ban-ca__promo-card {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-ban-ca__promo-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-ban-ca__promo-description {
  font-size: 0.95rem;
  color: #AFC4E8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-ban-ca__why-choose-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #08162B;
}

.page-ban-ca__faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #113B7A;
}

.page-ban-ca__faq-list {
  margin-top: 40px;
}

.page-ban-ca__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #244D84; /* Border */
}

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

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

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

.page-ban-ca__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2C14E;
}

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

.page-ban-ca__faq-answer {
  padding: 15px 25px 20px;
  background-color: rgba(16, 35, 63, 0.8); /* Slightly lighter background for answer */
  color: #AFC4E8;
  font-size: 0.95rem;
}

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

.page-ban-ca__conclusion-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #08162B;
  text-align: center;
}

.page-ban-ca__final-cta {
  margin-top: 40px;
}

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

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

  .page-ban-ca__hero-content {
    order: 2;
  }

  .page-ban-ca__hero-image-wrapper {
    order: 1;
    margin-bottom: 30px;
  }

  .page-ban-ca__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-ban-ca__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }

  .page-ban-ca__sub-section-title {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
  }

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

  .page-ban-ca__icon-box-media {
    width: 180px;
    height: 180px;
  }

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

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

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

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

  .page-ban-ca__hero-content {
    order: 2;
    min-width: unset;
  }

  .page-ban-ca__hero-image-wrapper {
    order: 1;
    margin-bottom: 20px;
    min-width: unset;
  }

  .page-ban-ca__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

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

  .page-ban-ca__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

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

  .page-ban-ca__content-area {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }

  /* Module 1: Three-column circular images */
  .page-ban-ca__features-grid {
    gap: 20px;
  }

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

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

  .page-ban-ca__feature-description {
    font-size: 0.9rem;
  }

  /* Game Types Section */
  .page-ban-ca__game-grid {
    gap: 20px;
  }

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

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

  .page-ban-ca__game-description {
    font-size: 0.9rem;
  }

  .page-ban-ca__btn-small {
    padding: 8px 15px;
    font-size: 0.85rem;
  }

  /* Guide Section */
  .page-ban-ca__guide-steps {
    gap: 20px;
  }

  .page-ban-ca__step-title {
    font-size: 1.2rem;
  }

  .page-ban-ca__step-description {
    font-size: 0.9rem;
  }

  .page-ban-ca__list li {
    font-size: 0.95rem;
  }

  /* Promo Section */
  .page-ban-ca__promo-grid {
    gap: 20px;
  }

  .page-ban-ca__promo-title {
    font-size: 1.2rem;
  }

  .page-ban-ca__promo-description {
    font-size: 0.9rem;
  }

  /* FAQ Section */
  .page-ban-ca__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-ban-ca__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.9rem;
  }

  /* General content sections */
  .page-ban-ca__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-ban-ca__sub-section-title {
    font-size: clamp(1.1rem, 5vw, 1.6rem);
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-ban-ca__paragraph {
    font-size: 0.95rem;
  }

  /* Ensure all images within content sections are responsive */
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-ban-ca__section,
  .page-ban-ca__card,
  .page-ban-ca__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}