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

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

/* Hero Section */
.page-ban-ca__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: #0D0E12;
}

.page-ban-ca__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for desktop hero */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-ban-ca__hero-content {
  text-align: center;
  padding: 40px 15px;
  position: relative; /* Ensure content is above image if any overlap */
  z-index: 2;
}

.page-ban-ca__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #FFF3E6;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255,165,58,0.5);
}

.page-ban-ca__hero-description {
  font-size: 1.15rem;
  color: #FFF3E6;
  max-width: 800px;
  margin: 0 auto 30px;
}

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

.page-ban-ca__cta-buttons--centered {
  margin-top: 40px;
}

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  border: none;
  box-shadow: 0 4px 15px rgba(255,165,58,0.4);
}

.page-ban-ca__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,165,58,0.6);
}

.page-ban-ca__btn-secondary {
  background: transparent;
  color: #FFF3E6;
  border: 2px solid #FFA53A;
  box-shadow: 0 4px 15px rgba(255,165,58,0.2);
}

.page-ban-ca__btn-secondary:hover {
  background: #FFA53A;
  color: #0D0E12;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,165,58,0.4);
}

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

/* General Section Styling */
.page-ban-ca__section {
  padding: 60px 0;
  text-align: center;
}

.page-ban-ca__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFF3E6;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255,165,58,0.3);
}

.page-ban-ca__section-title--light {
  color: #FFF3E6;
}

.page-ban-ca__section-description {
  font-size: 1.1rem;
  color: #FFF3E6;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-ban-ca__dark-section {
  background-color: #17191F; /* Card BG */
}

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

.page-ban-ca__feature-card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF3E6;
}

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

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

.page-ban-ca__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFA53A;
  margin-bottom: 15px;
}

.page-ban-ca__feature-text {
  font-size: 1rem;
  color: #FFF3E6;
}

/* Benefits List */
.page-ban-ca__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-ban-ca__benefit-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  color: #FFF3E6;
}

.page-ban-ca__benefit-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #FFA53A;
  margin-bottom: 15px;
}

/* How To Play Steps */
.page-ban-ca__steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-ban-ca__step-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  color: #FFF3E6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-ban-ca__step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFA53A;
  margin-bottom: 15px;
}

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

.page-ban-ca__game-card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  color: #FFF3E6;
}

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

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

.page-ban-ca__game-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFA53A;
  margin: 20px 20px 10px;
}

.page-ban-ca__game-card p {
  font-size: 1rem;
  color: #FFF3E6;
  margin: 0 20px 20px;
}

.page-ban-ca__game-card .page-ban-ca__btn-secondary {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
}

/* Strategy Section */
.page-ban-ca__article-body {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
  padding: 0 15px;
}

.page-ban-ca__article-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: #FFA53A;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-ban-ca__article-body p {
  font-size: 1.05rem;
  color: #FFF3E6;
  margin-bottom: 20px;
}

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

.page-ban-ca__promo-card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  color: #FFF3E6;
}

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

.page-ban-ca__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-ban-ca__promo-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFA53A;
  margin: 20px 20px 10px;
}

.page-ban-ca__promo-text {
  font-size: 1rem;
  color: #FFF3E6;
  margin: 0 20px 20px;
}

/* FAQ Section */
details.page-ban-ca__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #A84F0C; /* Border */
  overflow: hidden;
  background: #17191F; /* Card BG */
  color: #FFF3E6;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
details.page-ban-ca__faq-item summary.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFA53A;
}
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,165,58,0.1);
}