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

.page-ban-ca__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0D0E12; /* Background */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
}

.page-ban-ca__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
}

.page-ban-ca__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-ban-ca__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: -80px; /* Overlap slightly for visual effect, but text is below image */
  background: rgba(23, 25, 31, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #A84F0C; /* Border */
}

.page-ban-ca__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.7);
}

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

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

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05rem;
  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: #FFF3E6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

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

.page-ban-ca__btn-secondary {
  background: transparent;
  color: #FF8C1A; /* Main color */
  border: 2px solid #FF8C1A; /* Main color */
}

.page-ban-ca__btn-secondary:hover {
  background: #FF8C1A; /* Main color */
  color: #FFF3E6; /* Text Main */
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-ban-ca__section {
  padding: 60px 0;
  background-color: #0D0E12; /* Background */
}

.page-ban-ca__section.page-ban-ca__light-bg {
  background-color: #17191F; /* Card BG */
}

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

.page-ban-ca__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 176, 77, 0.5);
}

.page-ban-ca__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #FF8C1A; /* Main color */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-ban-ca__article-body {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #FFF3E6; /* Text Main */
}

.page-ban-ca__text-contrast-fix {
  color: #FFF3E6; /* Ensure light text on dark background */
}

.page-ban-ca__text-dark-fix {
  color: #FFF3E6; /* Ensure light text on dark background */
}

.page-ban-ca__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-ban-ca__list-item {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #FF8C1A; /* Main color */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1rem;
  color: #FFF3E6; /* Text Main */
}

.page-ban-ca__list-item strong {
  color: #FFB04D; /* Glow */
}

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

.page-ban-ca__game-card,
.page-ban-ca__step-card,
.page-ban-ca__promo-card {
  background: #17191F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid #A84F0C; /* Border */
  display: flex;
  flex-direction: column;
}

.page-ban-ca__game-image,
.page-ban-ca__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 15px;
}

.page-ban-ca__game-title,
.page-ban-ca__promo-title,
.page-ban-ca__step-title {
  font-size: 1.3rem;
  color: #FFB04D; /* Glow */
  margin-bottom: 10px;
  padding: 0 15px;
  flex-grow: 1;
}

.page-ban-ca__game-title a,
.page-ban-ca__promo-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-ban-ca__game-title a:hover,
.page-ban-ca__promo-title a:hover {
  color: #FFA53A; /* Auxiliary color */
}

.page-ban-ca__game-description,
.page-ban-ca__promo-description,
.page-ban-ca__step-description {
  font-size: 0.95rem;
  color: #FFF3E6; /* Text Main */
  padding: 0 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-ban-ca__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
  margin-top: auto; /* Push button to bottom */
  display: inline-block;
  align-self: center;
}

.page-ban-ca__article-figure {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 800px;
}

.page-ban-ca__download-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page-ban-ca__download-text {
  flex: 1;
}

.page-ban-ca__download-text p {
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: #FFF3E6; /* Text Main */
}

.page-ban-ca__download-image-wrapper {
  flex-shrink: 0;
  width: 40%;
  max-width: 400px;
}

.page-ban-ca__download-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ styles */
details.page-ban-ca__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #A84F0C; /* Border */
  overflow: hidden;
  background: #17191F; /* Card BG */
}
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: #FFB04D; /* Glow */
}
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: rgba(255, 140, 26, 0.1);
}
.page-ban-ca__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: inherit;
}
.page-ban-ca__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FF8C1A; /* Main color */
  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(255, 255, 255, 0.05);
  border-radius: 0 0 5px 5px;
  color: #FFF3E6; /* Text Main */
}

/* Conclusion Section */
.page-ban-ca__conclusion-section {
  padding-top: 40px;
  padding-bottom: 80px;
  text-align: center;
}