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

.page-ban-ca__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #08162B; /* Deep Navy */
}

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

.page-ban-ca__hero-image {
  flex: 1 1 500px;
  text-align: center;
}

.page-ban-ca__hero-main-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-ban-ca__hero-content {
  flex: 1 1 400px;
  text-align: left;
}

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

.page-ban-ca__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #AFC4E8; /* Text Secondary */
}

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

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

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(43, 115, 246, 0.4);
}

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

.page-ban-ca__btn-secondary {
  background-color: transparent;
  color: #2B73F6; /* Primary Blue from Button Gradient */
  border: 2px solid #2B73F6; /* Primary Blue from Button Gradient */
}

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

.page-ban-ca__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

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

.page-ban-ca__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

.page-ban-ca__intro-section .page-ban-ca__section-title {
  color: #F2C14E; /* Gold */
}

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

.page-ban-ca__icon-box {
  flex: 1 1 300px;
  background-color: #10233F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #244D84; /* Border */
}

.page-ban-ca__icon-box-media {
  width: 240px;
  height: 240px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F2C14E; /* Gold */
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

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

.page-ban-ca__icon-box-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold */
}

.page-ban-ca__icon-box-text {
  font-size: 1rem;
  color: #AFC4E8;
}

/* Game List Section */
.page-ban-ca__game-list-section {
  background-color: #113B7A; /* Main color */
  color: #F3F8FF;
  padding-bottom: 60px;
}

.page-ban-ca__game-list-section .page-ban-ca__section-title {
  color: #F2C14E; /* Gold */
}

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

.page-ban-ca__game-card {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #244D84; /* Border */
  display: flex;
  flex-direction: column;
}

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

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

.page-ban-ca__game-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2C14E; /* Gold */
}

.page-ban-ca__game-link {
  color: inherit;
  text-decoration: none;
}

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

.page-ban-ca__game-card-text {
  font-size: 0.95rem;
  color: #AFC4E8;
  margin-bottom: 20px;
}

.page-ban-ca__btn-play {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 6px;
  margin-top: auto; /* Push button to bottom */
}

.page-ban-ca__btn-play:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-1px);
}

/* Guide Section */
.page-ban-ca__guide-section {
  background-color: #08162B; /* Deep Navy */
  color: #F3F8FF;
  padding-bottom: 60px;
}

.page-ban-ca__guide-section .page-ban-ca__section-title {
  color: #F2C14E; /* Gold */
}

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

.page-ban-ca__guide-step {
  background-color: #10233F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #244D84; /* Border */
}

.page-ban-ca__guide-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #F2C14E; /* Gold */
  color: #113B7A; /* Main color */
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 0 10px rgba(242, 193, 78, 0.6);
}

.page-ban-ca__guide-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2C14E; /* Gold */
}

.page-ban-ca__guide-text {
  font-size: 1rem;
  color: #AFC4E8;
}

.page-ban-ca__guide-cta {
  text-align: center;
  margin-top: 50px;
}

/* Promo Section */
.page-ban-ca__promo-section {
  background-color: #113B7A; /* Main color */
  color: #F3F8FF;
  padding-bottom: 60px;
}

.page-ban-ca__promo-section .page-ban-ca__section-title {
  color: #F2C14E; /* Gold */
}

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

.page-ban-ca__promo-card {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #244D84; /* Border */
  display: flex;
  flex-direction: column;
}

.page-ban-ca__promo-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.page-ban-ca__promo-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2C14E; /* Gold */
}

.page-ban-ca__promo-card-text {
  font-size: 0.95rem;
  color: #AFC4E8;
  margin-bottom: 20px;
}

.page-ban-ca__btn-promo {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 6px;
  margin-top: auto; /* Push button to bottom */
}

.page-ban-ca__btn-promo:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-1px);
}

/* FAQ Section */
.page-ban-ca__faq-section {
  background-color: #08162B; /* Deep Navy */
  color: #F3F8FF;
  padding-bottom: 60px;
}

.page-ban-ca__faq-section .page-ban-ca__section-title {
  color: #F2C14E; /* Gold */
}

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

.page-ban-ca__faq-item {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  color: #F3F8FF;
  list-style: none;
  position: relative;
  user-select: none;
}

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

.page-ban-ca__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #F2C14E; /* Gold */
  transition: transform 0.3s ease;
  pointer-events: none; /* Ensure click on summary opens/closes */
}

.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: 1rem;
  color: #AFC4E8;
  line-height: 1.7;
}

/* Final CTA Section */
.page-ban-ca__cta-final-section {
  background-color: #113B7A; /* Main color */
  color: #F3F8FF;
  padding-top: 60px;
  padding-bottom: 80px;
  text-align: center;
}

.page-ban-ca__cta-final-section .page-ban-ca__section-title {
  color: #F2C14E; /* Gold */
}

.page-ban-ca__cta-final-section .page-ban-ca__cta-buttons {
  justify-content: center;
  margin-top: 40px;
}

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

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

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

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

  .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: 2rem;
  }

  .page-ban-ca__description {
    font-size: 1rem;
  }

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

  .page-ban-ca__btn-primary,
  .page-ban-ca__btn-secondary,
  .page-ban-ca__btn-play,
  .page-ban-ca__btn-promo {
    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__content-area {
    padding: 30px 15px;
  }

  .page-ban-ca__section-title {
    font-size: 1.8rem;
  }

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

  /* Intro Section */
  .page-ban-ca__icon-boxes {
    flex-direction: column;
    gap: 20px;
  }

  .page-ban-ca__icon-box {
    padding: 25px;
  }

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

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

  /* Game List Section */
  .page-ban-ca__game-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-ban-ca__game-card-img {
    
  }

  .page-ban-ca__game-card-content {
    padding: 20px;
  }

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

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

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

  .page-ban-ca__guide-step {
    padding: 25px;
  }

  .page-ban-ca__guide-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

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

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

  .page-ban-ca__guide-cta {
    margin-top: 30px;
    padding: 0 15px;
  }

  /* Promo Section */
  .page-ban-ca__promo-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-ban-ca__promo-card-img {
    
  }

  .page-ban-ca__promo-card-content {
    padding: 20px;
  }

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

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

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

  .page-ban-ca__faq-question {
    padding: 18px 20px;
    font-size: 1.05rem;
  }

  .page-ban-ca__faq-toggle {
    font-size: 1.6rem;
  }

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

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

  .page-ban-ca__cta-final-section .page-ban-ca__cta-buttons {
    margin-top: 30px;
    padding: 0 15px;
  }

  /* General image responsiveness for content images */
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-ban-ca__hero-main-img {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-ban-ca__section,
  .page-ban-ca__card,
  .page-ban-ca__container,
  .page-ban-ca__icon-box,
  .page-ban-ca__game-card,
  .page-ban-ca__promo-card,
  .page-ban-ca__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  /* Specific override for circular images to maintain aspect ratio */
  .page-ban-ca__icon-box-media img {
    height: 100% !important; /* Keep height 100% of parent circular container */
    width: 100% !important;
    object-fit: cover !important;
  }
}