.page-ban-ca {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f5f5f5;
}

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

.page-ban-ca__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-ban-ca__section:nth-child(odd) {
  background-color: #ffffff;
}

.page-ban-ca__section-title {
  font-size: 38px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-ban-ca__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-ban-ca__hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color-light), var(--secondary-color-dark));
  padding: 80px 0;
}

.page-ban-ca__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-ban-ca__hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  object-fit: cover;
}

.page-ban-ca__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 0 20px;
}

.page-ban-ca__hero-title {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--primary-color-alt);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-ban-ca__hero-description {
  font-size: 22px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-ban-ca__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-color);
  color: var(--secondary-color-dark);
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

.page-ban-ca__cta-button:hover {
  background: var(--primary-color-dark);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* General Button Style */
.page-ban-ca__button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--secondary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  text-align: center;
}

.page-ban-ca__button:hover {
  background: var(--secondary-color-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.page-ban-ca__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-ban-ca__card-title {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-ban-ca__card-description {
  font-size: 16px;
  color: #555555;
  text-align: justify;
}

/* How-To-Play Steps */
.page-ban-ca__steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-ban-ca__steps li {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-left: 80px;
}

.page-ban-ca__steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 30px;
  top: 30px;
  background-color: var(--primary-color);
  color: var(--secondary-color-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
}

.page-ban-ca__step-title {
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-ban-ca__steps p {
  font-size: 16px;
  color: #555555;
}

/* Tips List */
.page-ban-ca__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-ban-ca__list li {
  margin-bottom: 10px;
  font-size: 17px;
  color: #444444;
}

.page-ban-ca__list li strong {
  color: var(--secondary-color);
}

/* Promotions List */
.page-ban-ca__promo-list {
  list-style: none;
  padding: 0;
}

.page-ban-ca__promo-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid var(--primary-color);
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 17px;
  color: #333333;
}

.page-ban-ca__promo-list li strong {
  color: var(--secondary-color);
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: var(--secondary-color-dark);
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: #555555;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-ban-ca__hero-title {
    font-size: 44px;
  }
  .page-ban-ca__hero-description {
    font-size: 20px;
  }
  .page-ban-ca__section-title {
    font-size: 32px;
  }
  .page-ban-ca__cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-ban-ca__section {
    padding: 40px 0;
  }
  .page-ban-ca__hero {
    padding: 60px 0;
  }
  .page-ban-ca__hero-title {
    font-size: 36px;
  }
  .page-ban-ca__hero-description {
    font-size: 18px;
  }
  .page-ban-ca__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-ban-ca__grid {
    grid-template-columns: 1fr;
  }
  .page-ban-ca__feature-card {
    padding: 25px;
  }
  .page-ban-ca__card-title {
    font-size: 20px;
  }
  .page-ban-ca__steps li {
    padding: 20px 20px 20px 70px;
  }
  .page-ban-ca__steps li::before {
    left: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .page-ban-ca__step-title {
    font-size: 20px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-ban-ca__hero-title {
    font-size: 28px;
  }
  .page-ban-ca__hero-description {
    font-size: 16px;
  }
  .page-ban-ca__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-ban-ca__section-title {
    font-size: 24px;
  }
  .page-ban-ca__text-block {
    font-size: 15px;
  }
  .page-ban-ca__button {
    padding: 12px 20px;
    font-size: 16px;
  }
}

/* Color Variables & Contrast */
:root {
  --primary-color: #FFD700; /* Gold */
  --primary-color-dark: #DAA520; /* Darker Gold for hover */
  --primary-color-light: #FFEB80; /* Lighter Gold for subtle effects */
  --primary-color-alt: #FFFFF0; /* Near white for text on dark gold */

  --secondary-color: #000080; /* Dark Blue */
  --secondary-color-dark: #000050; /* Even darker blue */
  --secondary-color-light: #4169E1; /* Royal Blue for accents */

  --text-dark: #333333;
  --text-light: #ffffff;
  --text-gray: #555555;
  --background-light: #f9f9f9;
  --background-white: #ffffff;
}

/* Ensure contrast for specific elements */
.page-ban-ca__hero-title, .page-ban-ca__hero-description {
  color: var(--primary-color-alt); /* Light text on dark blue hero background */
}

.page-ban-ca__cta-button {
  background: var(--primary-color); /* Gold button */
  color: var(--secondary-color-dark); /* Dark blue text on gold */
}

.page-ban-ca__cta-button:hover {
  background: var(--primary-color-dark); /* Darker gold button */
  color: var(--text-light); /* White text on darker gold */
}

.page-ban-ca__section-title {
  color: var(--secondary-color); /* Dark blue title on light background */
}

.page-ban-ca__text-block, .page-ban-ca__card-description, .page-ban-ca__steps p, .page-ban-ca__list li, .page-ban-ca__promo-list li, .faq-answer p {
  color: var(--text-dark); /* Dark text on light backgrounds */
}

.page-ban-ca__feature-card .page-ban-ca__card-title, .page-ban-ca__step-title {
  color: var(--secondary-color); /* Dark blue titles on light cards */
}

.faq-question h3 {
  color: var(--secondary-color-dark); /* Dark blue text on white FAQ question */
}

.faq-toggle {
  color: var(--primary-color); /* Gold icon */
}

.faq-item.active .faq-toggle {
  color: var(--secondary-color); /* Dark blue icon when active */
}

.page-ban-ca__steps li::before {
  background-color: var(--primary-color);
  color: var(--secondary-color-dark);
}

.page-ban-ca__list li strong, .page-ban-ca__promo-list li strong {
  color: var(--secondary-color-dark);
}

.page-ban-ca__button {
  background: var(--secondary-color);
  color: var(--text-light);
}

.page-ban-ca__button:hover {
  background: var(--secondary-color-light);
  color: var(--text-light);
}

.page-ban-ca__promo-list li {
  border-left-color: var(--primary-color);
}

/* Links within text */
.page-ban-ca a {
  color: var(--secondary-color-light);
  text-decoration: underline;
}

.page-ban-ca a:hover {
  color: var(--secondary-color-dark);
  text-decoration: none;
}