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

.page-ban-ca__hero-section {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 60px;
  background: linear-gradient(180deg, rgba(255,165,58,0.1) 0%, rgba(217,104,0,0.1) 100%), #0D0E12; /* Subtle gradient over background */
  color: #FFF3E6;
}

.page-ban-ca__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 16px;
  gap: 30px;
}

.page-ban-ca__hero-content {
  flex: 1 1 50%;
  max-width: 550px;
}

.page-ban-ca__hero-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFB04D; /* Glow color for main title */
  line-height: 1.2;
}

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

.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;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

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

.page-ban-ca__btn-secondary {
  background-color: transparent;
  color: #FFA53A;
  border: 2px solid #FFA53A;
}

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

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

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

.page-ban-ca__introduction-section,
.page-ban-ca__how-to-play-section,
.page-ban-ca__promo-section {
  padding: 60px 0;
}

.page-ban-ca__features-section,
.page-ban-ca__tips-section,
.page-ban-ca__faq-section {
  padding: 60px 0;
  background-color: #17191F; /* Card BG for sections */
}

.page-ban-ca__dark-section {
  background-color: #0D0E12;
  color: #FFF3E6;
}

.page-ban-ca__light-bg {
  background-color: #17191F;
  color: #FFF3E6;
}

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

.page-ban-ca__section-title {
  font-size: 2.5em;
  color: #FFB04D;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-ban-ca__introduction-section p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #FFF3E6;
}

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

.page-ban-ca__feature-item,
.page-ban-ca__tip-item {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C; /* Border */
  color: #FFF3E6;
}

.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 #FFA53A;
  box-shadow: 0 0 15px rgba(255, 165, 58, 0.6);
}

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

.page-ban-ca__feature-title,
.page-ban-ca__tip-title {
  font-size: 1.5em;
  color: #FFA53A;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-ban-ca__feature-item p,
.page-ban-ca__tip-item p {
  color: #FFF3E6;
}

.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-item {
  background-color: #17191F;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
  color: #FFF3E6;
}

.page-ban-ca__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-ban-ca__guide-title {
  font-size: 1.6em;
  color: #FFB04D;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-ban-ca__tip-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-ban-ca__promo-section p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #FFF3E6;
}

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

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

.page-ban-ca__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #FFF3E6;
  overflow: hidden;
}

.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2em;
  color: #FFA53A;
  background-color: #1e2029; /* Slightly darker than Card BG */
  position: relative;
  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.5em;
  line-height: 1;
  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: 15px 25px 20px;
  font-size: 1.05em;
  line-height: 1.6;
  color: #FFF3E6;
  border-top: 1px solid #A84F0C;
}

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

/* Responsive styles */
@media (max-width: 1024px) {
  .page-ban-ca__hero-title {
    font-size: 2.8em;
  }

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

@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 {
    flex-direction: column;
    padding: 20px 15px;
    gap: 20px;
  }

  .page-ban-ca__hero-content {
    order: 2;
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
  }

  .page-ban-ca__hero-image {
    order: 1;
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-ban-ca__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

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

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

  .page-ban-ca__btn-primary,
  .page-ban-ca__btn-secondary,
  .page-ban-ca a[class*="button"],
  .page-ban-ca a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-ban-ca__introduction-section,
  .page-ban-ca__how-to-play-section,
  .page-ban-ca__promo-section,
  .page-ban-ca__features-section,
  .page-ban-ca__tips-section,
  .page-ban-ca__faq-section {
    padding: 40px 0;
  }

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

  .page-ban-ca__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

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

  .page-ban-ca__feature-item,
  .page-ban-ca__tip-item,
  .page-ban-ca__guide-item,
  .page-ban-ca__faq-item {
    padding: 25px;
  }

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

  .page-ban-ca__feature-title,
  .page-ban-ca__tip-title {
    font-size: 1.3em;
    margin-bottom: 10px;
  }

  .page-ban-ca__guide-title {
    font-size: 1.4em;
    margin-bottom: 10px;
  }

  .page-ban-ca__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-ban-ca__faq-answer {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .page-ban-ca__hero-side-image,
  .page-ban-ca__guide-image,
  .page-ban-ca__tip-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Ensure icon-box-media img maintains square aspect ratio */
  .page-ban-ca__icon-box-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}