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

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

/* Hero Section */
.page-ban-ca__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #113B7A 0%, #08162B 100%);
  color: #F3F8FF;
}

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

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

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

.page-ban-ca__hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #AFC4E8; /* Text Secondary */
}

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

.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;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

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

.page-ban-ca__btn-secondary {
  background: #10233F; /* Card BG */
  color: #F3F8FF;
  border: 2px solid #2B73F6;
}

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

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

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

/* Section General */
.page-ban-ca__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
}

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

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

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

.page-ban-ca__icon-box {
  text-align: center;
  padding: 30px 20px;
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #244D84; /* Border */
  transition: transform 0.3s ease;
}

.page-ban-ca__icon-box:hover {
  transform: translateY(-5px);
}

.page-ban-ca__icon-box-media {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px 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;
  border-radius: 50%;
  display: block;
}

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

.page-ban-ca__icon-box-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #AFC4E8; /* Text Secondary */
}

/* Game Showcase Section */
.page-ban-ca__game-showcase-section {
  padding: 80px 0;
  background-color: #113B7A; /* Main Color */
}

.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 {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #244D84; /* Border */
  transition: transform 0.3s ease;
}

.page-ban-ca__game-card:hover {
  transform: translateY(-5px);
}

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

.page-ban-ca__game-card-content {
  padding: 25px;
  text-align: center;
}

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

.page-ban-ca__game-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #AFC4E8; /* Text Secondary */
}

.page-ban-ca__btn-play {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  border: none;
  width: 100%;
}

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

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

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

.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 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #244D84; /* Border */
}

.page-ban-ca__guide-step-icon {
  width: 60px;
  height: 60px;
  background-color: #F2C14E; /* Gold */
  color: #113B7A;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-ban-ca__guide-step-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F3F8FF; /* Text Main */
}

.page-ban-ca__guide-step-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #AFC4E8; /* Text Secondary */
}

/* Promo Section */
.page-ban-ca__promo-section {
  padding: 80px 0;
  background-color: #113B7A; /* Main Color */
}

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

.page-ban-ca__promo-card {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #244D84; /* Border */
  transition: transform 0.3s ease;
}

.page-ban-ca__promo-card:hover {
  transform: translateY(-5px);
}

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

.page-ban-ca__promo-card-content {
  padding: 25px;
  text-align: center;
}

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

.page-ban-ca__promo-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #AFC4E8; /* Text Secondary */
}

.page-ban-ca__btn-promo {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  border: none;
  width: 100%;
}

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

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

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

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

.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: #F2C14E; /* Gold */
  list-style: none;
}

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

.page-ban-ca__faq-qtext {
  flex-grow: 1;
}

.page-ban-ca__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 20px;
  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: 1rem;
  line-height: 1.7;
  color: #AFC4E8; /* Text Secondary */
}

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

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-ban-ca__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-ban-ca__hero-description {
    font-size: 1rem;
  }
  .page-ban-ca__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  .page-ban-ca__intro-grid,
  .page-ban-ca__game-grid,
  .page-ban-ca__guide-steps,
  .page-ban-ca__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-ban-ca__icon-box-media {
    width: 140px;
    height: 140px;
  }
  .page-ban-ca__game-card-image {
    height: 180px;
  }
  .page-ban-ca__promo-card-image {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .page-ban-ca__hero-section {
    padding-top: 10px !important; /* Force small top padding */
    padding-bottom: 40px;
  }
  .page-ban-ca__hero-container {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
    gap: 30px;
  }
  .page-ban-ca__hero-content {
    text-align: center;
    min-width: unset;
  }
  .page-ban-ca__hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem) !important;
    margin-bottom: 15px;
  }
  .page-ban-ca__hero-description {
    font-size: 0.95rem !important;
    margin-bottom: 25px;
  }
  .page-ban-ca__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .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;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-ban-ca__hero-image {
    order: -1; /* Image appears above content on mobile */
    min-width: unset;
    width: 100%;
  }
  .page-ban-ca__side-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-ban-ca__section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
    margin-bottom: 15px;
  }
  .page-ban-ca__section-description {
    font-size: 0.9rem !important;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  /* Module 1: Intro Section (3-column circle images) */
  .page-ban-ca__intro-section {
    padding: 50px 0;
  }
  .page-ban-ca__intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-ban-ca__icon-box-media {
    width: 120px; /* Still square */
    height: 120px; /* Still square */
    margin-bottom: 15px;
  }
  .page-ban-ca__icon-box-title {
    font-size: 1.3rem;
  }
  .page-ban-ca__icon-box-text {
    font-size: 0.9rem;
  }

  /* Game Showcase Section */
  .page-ban-ca__game-showcase-section {
    padding: 50px 0;
  }
  .page-ban-ca__game-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-ban-ca__game-card-image {
    height: 160px !important;
  }
  .page-ban-ca__game-card-title {
    font-size: 1.2rem;
  }
  .page-ban-ca__game-card-text {
    font-size: 0.85rem;
  }
  .page-ban-ca__cta-center {
    margin-top: 30px;
  }

  /* Guide Section */
  .page-ban-ca__guide-section {
    padding: 50px 0;
  }
  .page-ban-ca__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-ban-ca__guide-step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .page-ban-ca__guide-step-title {
    font-size: 1.25rem;
  }
  .page-ban-ca__guide-step-text {
    font-size: 0.9rem;
  }

  /* Promo Section */
  .page-ban-ca__promo-section {
    padding: 50px 0;
  }
  .page-ban-ca__promo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-ban-ca__promo-card-image {
    height: 140px !important;
  }
  .page-ban-ca__promo-card-title {
    font-size: 1.2rem;
  }
  .page-ban-ca__promo-card-text {
    font-size: 0.85rem;
  }

  /* FAQ Section */
  .page-ban-ca__faq-section {
    padding: 50px 0;
  }
  .page-ban-ca__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-ban-ca__faq-toggle {
    font-size: 1.5rem;
  }
  .page-ban-ca__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9rem;
  }

  /* General mobile image and container rules */
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-ban-ca__container,
  .page-ban-ca__hero-container,
  .page-ban-ca__cta-buttons,
  .page-ban-ca__intro-grid,
  .page-ban-ca__game-grid,
  .page-ban-ca__guide-steps,
  .page-ban-ca__promo-grid,
  .page-ban-ca__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden;
  }
  .page-ban-ca__game-card,
  .page-ban-ca__promo-card,
  .page-ban-ca__icon-box,
  .page-ban-ca__guide-step,
  .page-ban-ca__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Ensure contrast for dark background */
.page-ban-ca__dark-bg {
  background-color: #113B7A;
  color: #F3F8FF;
}

.page-ban-ca__dark-bg .page-ban-ca__section-description {
  color: #AFC4E8;
}

.page-ban-ca p {
  color: #AFC4E8;
}

.page-ban-ca h1, .page-ban-ca h2, .page-ban-ca h3, .page-ban-ca h4, .page-ban-ca h5, .page-ban-ca h6 {
  color: #F2C14E;
}