.page-ban-ca {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D;
  background-color: #F4F7FB;
}

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

/* Hero Section */
.page-ban-ca__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  margin-bottom: 40px;
}

.page-ban-ca__hero-image-wrapper {
  width: 100%;
  height: 500px; /* Adjust height as needed */
  position: relative;
}

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

.page-ban-ca__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  z-index: 10;
  box-sizing: border-box;
}

.page-ban-ca__main-title {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-ban-ca__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

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

/* General Section Styles */
.page-ban-ca__section {
  padding: 60px 0;
  margin-bottom: 30px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-ban-ca__dark-bg {
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #ffffff;
}

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

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

.page-ban-ca__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #1F2D3D;
}

.page-ban-ca__text-block--light {
  color: #f0f0f0;
}

.page-ban-ca__text-link--light {
  color: #A5C4FF;
  text-decoration: underline;
}

.page-ban-ca__text-link--light:hover {
  color: #FFFFFF;
}

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

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
}

.page-ban-ca__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.6);
}

.page-ban-ca__btn-secondary {
  background: #FFFFFF;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-ban-ca__btn-secondary:hover {
  background: #F4F7FB;
  color: #4A8BFF;
  border-color: #4A8BFF;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-ban-ca__btn-primary--large,
.page-ban-ca__btn-secondary--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

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

.page-ban-ca__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-ban-ca__game-card:hover {
  transform: translateY(-5px);
}

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

.page-ban-ca__game-card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin: 20px 15px 10px;
  color: #2F6BFF;
}

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

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

.page-ban-ca__game-card-description {
  font-size: 0.95em;
  color: #1F2D3D;
  padding: 0 15px 20px;
  line-height: 1.6;
}

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

.page-ban-ca__benefit-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding: 25px;
  transition: transform 0.3s ease;
}

.page-ban-ca__benefit-card:hover {
  transform: translateY(-5px);
}

.page-ban-ca__benefit-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-ban-ca__benefit-card-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-ban-ca__benefit-card-description {
  font-size: 0.95em;
  color: #1F2D3D;
  line-height: 1.6;
}

/* Step List (How to Play) */
.page-ban-ca__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-ban-ca__step-item {
  background-color: #F4F7FB;
  border-left: 5px solid #2F6BFF;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-ban-ca__step-title {
  font-size: 1.3em;
  color: #2F6BFF;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-ban-ca__step-title a {
  color: #2F6BFF;
  text-decoration: none;
}

.page-ban-ca__step-title a:hover {
  text-decoration: underline;
}

.page-ban-ca__step-description {
  font-size: 1em;
  line-height: 1.7;
  color: #1F2D3D;
}

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

.page-ban-ca__strategy-card {
  background-color: #F4F7FB;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.page-ban-ca__strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-ban-ca__strategy-title {
  font-size: 1.3em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-ban-ca__strategy-description {
  font-size: 1em;
  line-height: 1.7;
  color: #1F2D3D;
}

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

.page-ban-ca__promo-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-ban-ca__promo-card:hover {
  transform: translateY(-5px);
}

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

.page-ban-ca__promo-card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin: 20px 15px 10px;
  color: #2F6BFF;
}

.page-ban-ca__promo-card-title a {
  color: #2F6BFF;
  text-decoration: none;
}

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

.page-ban-ca__promo-card-description {
  font-size: 0.95em;
  color: #1F2D3D;
  padding: 0 15px 20px;
  line-height: 1.6;
}

/* FAQ Section */
details.page-ban-ca__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #D6E2FF;
  overflow: hidden;
  background: #fff;
  color: #1F2D3D;
}