.page-ban-ca {
  font-family: 'Arial', sans-serif;
  color: #FFF1E8; /* Default text color for dark background */
  background-color: #140C0C; /* Overall dark background */
}

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

.page-ban-ca__section {
  padding: 40px 0;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.page-ban-ca__dark-bg {
  background-color: #2A1212;
  color: #FFF1E8;
}

.page-ban-ca__light-bg {
  background-color: #140C0C;
  color: #FFF1E8;
}

.page-ban-ca__section-title {
  font-size: 3em;
  color: #F3C54D; /* Gold accent for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-ban-ca__section-description {
  font-size: 1.2em;
  color: #FFF1E8;
  text-align: center;
  max-width: 800px;
  margin: -20px auto 40px auto;
  line-height: 1.6;
}

/* Hero Section */
.page-ban-ca__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  background-color: #140C0C;
}

.page-ban-ca__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-ban-ca__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-ban-ca__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-ban-ca__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size for H1 */
  color: #F3C54D;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-ban-ca__hero-description {
  font-size: 1.2em;
  color: #FFF1E8;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-ban-ca__cta-buttons--center {
  margin-top: 30px;
}

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  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, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 176, 74, 0.4);
}

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

.page-ban-ca__btn-secondary {
  background: transparent;
  color: #F3C54D;
  border: 2px solid #F3C54D;
  box-shadow: 0 0 10px rgba(243, 197, 77, 0.3);
}

.page-ban-ca__btn-secondary:hover {
  background: rgba(243, 197, 77, 0.1);
  transform: translateY(-2px);
}

.page-ban-ca__btn-small {
  padding: 10px 20px;
  font-size: 1em;
}

/* General Content Grid */
.page-ban-ca__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-ban-ca__content-grid:nth-child(even) {
  flex-direction: row-reverse;
}

.page-ban-ca__text-block,
.page-ban-ca__image-block {
  flex: 1;
}

.page-ban-ca__text-block p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #FFF1E8;
}

.page-ban-ca__text-block strong {
  color: #F3C54D;
}

.page-ban-ca__text-link {
  color: #FFB04A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-ban-ca__text-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

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

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

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

.page-ban-ca__feature-card {
  background-color: #140C0C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #6A1E1E;
  text-align: center;
}

.page-ban-ca__feature-title {
  font-size: 1.5em;
  color: #F3C54D;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-ban-ca__feature-card p {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF1E8;
}

/* Guide Section */
.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-card {
  background-color: #2A1212;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #6A1E1E;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.page-ban-ca__step-number {
  background-color: #F3C54D;
  color: #140C0C;
  font-size: 1.8em;
  font-weight: 800;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(243, 197, 77, 0.5);
}

.page-ban-ca__step-title {
  font-size: 1.4em;
  color: #FFB04A;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-ban-ca__step-card p {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF1E8;
  flex-grow: 1;
}

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

.page-ban-ca__tip-card {
  background-color: #140C0C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #6A1E1E;
  text-align: left;
}

.page-ban-ca__tip-title {
  font-size: 1.4em;
  color: #FFB04A;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-ban-ca__tip-card p {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF1E8;
}

/* Game Trial Section */
.page-ban-ca__game-iframe-wrapper {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid #F3C54D;
}

.page-ban-ca__game-trial-frame {
  border: none;
}

/* Promotions Section */
.page-ban-ca__promotions-section .page-ban-ca__content-grid {
  flex-direction: row-reverse; /* Default for promotions, image on right */
}

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

details.page-ban-ca__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #6A1E1E;
  overflow: hidden;
  background: #2A1212; /* Dark background for FAQ items */
  color: #FFF1E8;
}