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

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

.page-ban-ca__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  color: #F3F8FF;
  text-align: center;
  background-color: var(--deep-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-ban-ca__hero-image {
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-ban-ca__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Default cover for desktop */
  border-radius: 10px;
}

.page-ban-ca__hero-content {
  max-width: 900px;
  padding: 0 20px 40px;
  box-sizing: border-box;
}

.page-ban-ca__main-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold */
  line-height: 1.2;
}

.page-ban-ca__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #AFC4E8; /* Text Secondary */
}

.page-ban-ca__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-ban-ca__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  border: none;
  box-shadow: 0 5px 15px rgba(17, 59, 122, 0.4);
}

.page-ban-ca__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 59, 122, 0.6);
}

.page-ban-ca__btn-secondary {
  background: #10233F;
  color: #F3F8FF;
  border: 2px solid #244D84; /* Border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-ban-ca__btn-secondary:hover {
  transform: translateY(-3px);
  background: #113B7A;
  border-color: #4FA8FF;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-ban-ca__section-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Gold */
  line-height: 1.3;
}

.page-ban-ca__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  color: #AFC4E8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-ban-ca__dark-section {
  background-color: #10233F; /* Card BG */
  padding: 60px 0;
}

.page-ban-ca__introduction-section .page-ban-ca__content-wrapper,
.page-ban-ca__guide-section .page-ban-ca__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-ban-ca__introduction-section .page-ban-ca__image-block,
.page-ban-ca__guide-section .page-ban-ca__image-block {
  flex: 1;
  max-width: 50%;
}

.page-ban-ca__introduction-section .page-ban-ca__image-block img,
.page-ban-ca__guide-section .page-ban-ca__image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-ban-ca__introduction-section .page-ban-ca__text-block,
.page-ban-ca__guide-section .page-ban-ca__text-block {
  flex: 1;
  max-width: 50%;
  text-align: left;
}

.page-ban-ca__introduction-section p,
.page-ban-ca__guide-section p {
  margin-bottom: 15px;
  color: #AFC4E8;
}

.page-ban-ca__introduction-section strong {
  color: #F2C14E;
}

.page-ban-ca__sub-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #4FA8FF; /* Glow */
}

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

.page-ban-ca__features-section {
  padding: 60px 0;
  background-color: var(--deep-navy);
}

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

.page-ban-ca__card {
  background: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #F3F8FF;
}

.page-ban-ca__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-ban-ca__card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-ban-ca__card-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2C14E; /* Gold */
  flex-grow: 1;
}

.page-ban-ca__card-description {
  font-size: 0.95em;
  color: #AFC4E8;
  margin-bottom: 15px;
}

.page-ban-ca__strategy-section {
  padding: 60px 0;
  background-color: var(--deep-navy);
}

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

.page-ban-ca__strategy-card {
  text-align: left;
  padding: 30px;
}

.page-ban-ca__strategy-card .page-ban-ca__card-title {
  color: #4FA8FF;
  font-size: 1.4em;
  text-align: left;
}

.page-ban-ca__strategy-card .page-ban-ca__card-description {
  color: #AFC4E8;
  text-align: left;
}

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

.page-ban-ca__game-list-section {
  padding: 60px 0;
}

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

.page-ban-ca__game-card .page-ban-ca__card-title a {
  color: #F2C14E;
  text-decoration: none;
}

.page-ban-ca__game-card .page-ban-ca__card-title a:hover {
  text-decoration: underline;
}

.page-ban-ca__benefits-section {
  padding: 60px 0;
  background-color: var(--deep-navy);
}

.page-ban-ca__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 800px;
  text-align: left;
}

.page-ban-ca__benefits-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #AFC4E8;
}

.page-ban-ca__benefits-list li a {
  color: #4FA8FF;
  text-decoration: none;
}

.page-ban-ca__benefits-list li a:hover {
  text-decoration: underline;
}

.page-ban-ca__list-icon {
  color: #4FA8FF; /* Glow */
  font-size: 1.5em;
  margin-right: 15px;
  line-height: 1;
}

.page-ban-ca__faq-section {
  padding: 60px 0;
}

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

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

details.page-ban-ca__faq-item summary.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F2C14E; /* Gold */
}

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

details.page-ban-ca__faq-item summary.page-ban-ca__faq-question:hover {
  background: #113B7A;
}

.page-ban-ca__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.page-ban-ca__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #4FA8FF; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-ban-ca__faq-item .page-ban-ca__faq-answer {
  padding: 0 20px 20px;
  background: rgba(17, 59, 122, 0.5); /* Slightly lighter than Card BG */
  border-radius: 0 0 5px 5px;
  color: #AFC4E8;
}

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

details.page-ban-ca__faq-item .page-ban-ca__faq-answer a {
  color: #4FA8FF;
  text-decoration: none;
}

details.page-ban-ca__faq-item .page-ban-ca__faq-answer a:hover {
  text-decoration: underline;
}

.page-ban-ca__contact-cta-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #113B7A 0%, #08162B 100%);
  text-align: center;
}

.page-ban-ca__contact-cta-section .page-ban-ca__main-title,
.page-ban-ca__contact-cta-section .page-ban-ca__subtitle {
  color: #F3F8FF;
}

.page-ban-ca__contact-cta-section .page-ban-ca__section-title {
  color: #F2C14E;
}

.page-ban-ca__contact-cta-section .page-ban-ca__subtitle a {
  color: #4FA8FF;
  text-decoration: none;
}

.page-ban-ca__contact-cta-section .page-ban-ca__subtitle a:hover {
  text-decoration: underline;
}

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

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

  .page-ban-ca__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-ban-ca__introduction-section .page-ban-ca__content-wrapper,
  .page-ban-ca__guide-section .page-ban-ca__content-wrapper {
    flex-direction: column;
  }

  .page-ban-ca__introduction-section .page-ban-ca__image-block,
  .page-ban-ca__guide-section .page-ban-ca__image-block,
  .page-ban-ca__introduction-section .page-ban-ca__text-block,
  .page-ban-ca__guide-section .page-ban-ca__text-block {
    max-width: 100%;
    padding: 0 15px;
  }

  .page-ban-ca__game-grid,
  .page-ban-ca__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-ban-ca__strategy-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 849px) {
  .page-ban-ca__hero-image img {
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }
}

@media (max-width: 768px) {
  .page-ban-ca {
    font-size: 15px;
  }

  .page-ban-ca__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-ban-ca__hero-content {
    padding: 0 15px 30px;
  }

  .page-ban-ca__main-title {
    font-size: clamp(1.8em, 7vw, 2.2em);
    margin-bottom: 10px;
  }

  .page-ban-ca__subtitle {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

  .page-ban-ca__btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }

  .page-ban-ca__section-title {
    font-size: clamp(1.5em, 6vw, 1.8em);
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .page-ban-ca__section-description {
    font-size: 0.95em;
    padding: 0 15px;
  }

  .page-ban-ca__dark-section,
  .page-ban-ca__features-section,
  .page-ban-ca__strategy-section,
  .page-ban-ca__game-list-section,
  .page-ban-ca__benefits-section,
  .page-ban-ca__faq-section,
  .page-ban-ca__contact-cta-section {
    padding: 40px 0;
  }

  .page-ban-ca__introduction-section .page-ban-ca__content-wrapper,
  .page-ban-ca__guide-section .page-ban-ca__content-wrapper {
    flex-direction: column;
    gap: 25px;
  }

  .page-ban-ca__introduction-section .page-ban-ca__image-block,
  .page-ban-ca__guide-section .page-ban-ca__image-block,
  .page-ban-ca__introduction-section .page-ban-ca__text-block,
  .page-ban-ca__guide-section .page-ban-ca__text-block {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0;
  }

  .page-ban-ca__introduction-section .page-ban-ca__image-block img,
  .page-ban-ca__guide-section .page-ban-ca__image-block img,
  .page-ban-ca__features-grid img,
  .page-ban-ca__game-grid img,
  .page-ban-ca__card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }

  .page-ban-ca__sub-title {
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .page-ban-ca__features-grid,
  .page-ban-ca__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-ban-ca__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .page-ban-ca__card {
    padding: 20px;
  }

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

  .page-ban-ca__benefits-list {
    padding: 0 15px;
  }

  .page-ban-ca__benefits-list li {
    font-size: 1em;
    margin-bottom: 10px;
  }

  .page-ban-ca__list-icon {
    font-size: 1.3em;
    margin-right: 10px;
  }

  details.page-ban-ca__faq-item summary.page-ban-ca__faq-question {
    padding: 15px;
  }

  .page-ban-ca__faq-qtext {
    font-size: 1em;
  }

  details.page-ban-ca__faq-item .page-ban-ca__faq-answer {
    padding: 0 15px 15px;
  }

  .page-ban-ca__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

  .page-ban-ca__content-area,
  .page-ban-ca__text-block,
  .page-ban-ca__card,
  .page-ban-ca__section,
  .page-ban-ca__container,
  .page-ban-ca__hero-image,
  .page-ban-ca__image-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
  .page-ban-ca__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-ban-ca__cta-buttons a {
    width: 100% !important;
  }
  .page-ban-ca__game-list-section .page-ban-ca__game-grid {
    grid-template-columns: 1fr;
  }
  .page-ban-ca__products-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* For product grids, 2 cols */
  }
  .page-ban-ca__products-grid > *:nth-child(n+5) { /* Ensure no single item on last row if 6 items */
    grid-column: span 1;
  }
}