.page-ban-ca {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
}

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

.page-ban-ca__section {
  padding: 60px 0;
  text-align: center;
}

.page-ban-ca__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-ban-ca__section-subtitle {
  font-size: 1.2em;
  color: #b39700; /* Darker gold for subtitles */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-ban-ca__keyword {
  color: #FFD700;
  font-weight: bold;
}

.page-ban-ca__btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  border: none;
}

.page-ban-ca__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text for gold button */
}

.page-ban-ca__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-ban-ca__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for transparent button */
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-ban-ca__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-ban-ca__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 10px 25px;
  font-size: 1em;
}

.page-ban-ca__btn--outline:hover {
  background-color: #FFD700;
  color: #1A202C;
}

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

.page-ban-ca__btn--lg {
  padding: 15px 40px;
  font-size: 1.2em;
}

.page-ban-ca__btn--xl {
  padding: 18px 50px;
  font-size: 1.4em;
}

.page-ban-ca__btn--app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  color: #fff;
  padding: 12px 25px;
  margin: 10px;
  font-size: 1em;
  border-radius: 8px;
}

.page-ban-ca__btn--app:hover {
  background-color: #555;
}

.page-ban-ca__app-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: none; /* Ensure no filter changes image color */
}

/* Hero Section */
.page-ban-ca__hero {
  background: linear-gradient(135deg, #1A202C 0%, #000000 100%);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-ban-ca__hero-content {
  flex: 1;
  padding-left: 20px;
  max-width: 60%;
  z-index: 1;
}

.page-ban-ca__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-ban-ca__hero-description {
  font-size: 1.3em;
  color: #e5dfd3;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-ban-ca__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-right: 20px;
  z-index: 0;
}

.page-ban-ca__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  filter: none; /* Ensure no filter changes image color */
}

/* About Section */
.page-ban-ca__about {
  background-color: #2a303d;
  text-align: left;
}

.page-ban-ca__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-ban-ca__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-ban-ca__text-content {
  flex: 1;
}

.page-ban-ca__text-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1.1em;
}

.page-ban-ca__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.page-ban-ca__image {
  max-width: 100%;
  height: auto;
  filter: none; /* Ensure no filter changes image color */
}

.page-ban-ca__image--rounded {
  border-radius: 15px;
}

.page-ban-ca__image--shadow {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Highlights Section */
.page-ban-ca__highlights {
  background-color: #1A202C;
}

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

.page-ban-ca__card {
  background-color: #2a303d;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-ban-ca__card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(10deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

.page-ban-ca__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-ban-ca__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #e5dfd3;
}

/* How-To-Play Section */
.page-ban-ca__how-to-play {
  background-color: #2a303d;
}

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

.page-ban-ca__step-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  position: relative;
  padding-top: 80px;
}

.page-ban-ca__step-number {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  opacity: 0.6;
}

.page-ban-ca__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-ban-ca__step-item p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Game Types Section */
.page-ban-ca__game-types {
  background-color: #1A202C;
}

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

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

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

.page-ban-ca__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: none; /* Ensure no filter changes image color */
}

.page-ban-ca__game-title {
  font-size: 1.4em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page-ban-ca__game-description {
  padding: 0 20px 20px;
  font-size: 0.95em;
  line-height: 1.5;
}

/* Strategies Section */
.page-ban-ca__strategies {
  background-color: #2a303d;
}

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

.page-ban-ca__strategy-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
}

.page-ban-ca__strategy-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-ban-ca__strategy-item p {
  font-size: 1em;
  line-height: 1.6;
}

.page-ban-ca__strategy-cta {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-ban-ca__strategy-cta p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #e5dfd3;
}

/* Promotions Section */
.page-ban-ca__promotions {
  background-color: #1A202C;
}

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

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

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

.page-ban-ca__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: none; /* Ensure no filter changes image color */
}

.page-ban-ca__promo-title {
  font-size: 1.4em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page-ban-ca__promo-description {
  padding: 0 20px 20px;
  font-size: 0.95em;
  line-height: 1.5;
}

/* App Download Section */
.page-ban-ca__app-download {
  background-color: #2a303d;
  text-align: left;
}

.page-ban-ca__app-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* Why Choose Section */
.page-ban-ca__why-choose {
  background-color: #1A202C;
}

.page-ban-ca__why-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  text-align: left;
}

.page-ban-ca__why-list li {
  background-color: #2a303d;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

.page-ban-ca__list-icon {
  color: #FFD700;
  font-size: 1.4em;
  margin-right: 15px;
  line-height: 1;
}

/* FAQ Section */
.page-ban-ca__faq {
  background-color: #2a303d;
}

.page-ban-ca__faq-item {
  background-color: #1A202C;
  margin-bottom: 20px;
  border-radius: 8px;
  text-align: left;
  padding: 25px 30px;
}

.page-ban-ca__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-ban-ca__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #e5dfd3;
}

.page-ban-ca__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-ban-ca__faq-answer a:hover {
  color: #e6c200;
}

/* CTA Bottom Section */
.page-ban-ca__cta-bottom {
  background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%);
  padding: 80px 0;
  color: #1A202C; /* Dark text for gold background */
}

.page-ban-ca__cta-title {
  font-size: 3em;
  color: #1A202C;
  margin-bottom: 20px;
}

.page-ban-ca__cta-description {
  font-size: 1.4em;
  color: #333;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-ban-ca__cta-bottom .page-ban-ca__btn--primary {
  background-color: #1A202C;
  color: #FFD700;
}

.page-ban-ca__cta-bottom .page-ban-ca__btn--primary:hover {
  background-color: #333;
  color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-ban-ca__hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 0;
  }

  .page-ban-ca__hero-content {
    max-width: 90%;
    padding: 0 20px;
  }

  .page-ban-ca__hero-title {
    font-size: 3em;
  }

  .page-ban-ca__hero-description {
    font-size: 1.1em;
  }

  .page-ban-ca__hero-image-wrapper {
    margin-top: 40px;
    padding: 0 20px;
  }

  .page-ban-ca__content-grid {
    flex-direction: column;
  }

  .page-ban-ca__content-grid--reverse {
    flex-direction: column;
  }

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

  .page-ban-ca__section-subtitle {
    font-size: 1em;
  }

  .page-ban-ca__card-grid, .page-ban-ca__step-grid, .page-ban-ca__game-carousel, .page-ban-ca__strategy-grid, .page-ban-ca__promo-grid, .page-ban-ca__why-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-ban-ca__hero-title {
    font-size: 2.5em;
  }

  .page-ban-ca__hero-description {
    font-size: 1em;
  }

  .page-ban-ca__hero-actions .page-ban-ca__btn {
    margin: 10px 0;
    width: 100%;
  }

  .page-ban-ca__hero-actions .page-ban-ca__btn--secondary {
    margin-left: 0;
  }

  .page-ban-ca__section {
    padding: 40px 0;
  }

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

  .page-ban-ca__cta-title {
    font-size: 2.2em;
  }

  .page-ban-ca__cta-description {
    font-size: 1.1em;
  }

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

@media (max-width: 480px) {
  .page-ban-ca__hero-title {
    font-size: 2em;
  }

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

  .page-ban-ca__cta-title {
    font-size: 1.8em;
  }

  .page-ban-ca__btn--xl {
    padding: 15px 30px;
    font-size: 1.2em;
  }
}