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

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

.page-ban-ca__section-spacing {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-ban-ca__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Main color for titles */
  line-height: 1.2;
}

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

.page-ban-ca__hero-section {
  padding-top: 10px; /* Small top padding, assuming body has padding-top from shared.css */
  padding-bottom: 40px;
  background: linear-gradient(180deg, #0A0A0A 0%, #111111 100%); /* Dark gradient for hero background */
}

.page-ban-ca__hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 15px;
}

.page-ban-ca__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: left;
}

.page-ban-ca__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #FFD36B; /* Glow color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: left;
}

.page-ban-ca__hero-description {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 30px;
}

.page-ban-ca__hero-cta {
  margin-top: 20px;
}

.page-ban-ca__hero-image-wrapper {
  flex: 1 1 50%;
  text-align: center;
}

.page-ban-ca__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

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

.page-ban-ca__text-block {
  flex: 1;
  min-width: 300px;
}

.page-ban-ca__text-block p {
  margin-bottom: 15px;
  color: #FFF6D6;
}

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

.page-ban-ca__image-block {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.page-ban-ca__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-ban-ca__benefit-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-ban-ca__card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-ban-ca__card-description {
  font-size: 0.95em;
  color: #FFF6D6;
}

.page-ban-ca__dark-section {
  background-color: #111111; /* Card BG, used as section background */
  color: #FFF6D6;
}

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

.page-ban-ca__guide-list li {
  margin-bottom: 25px;
}

.page-ban-ca__guide-list h3 {
  font-size: 1.5em;
  color: #F2C14E;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-ban-ca__guide-list h3::before {
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #FFD36B;
  border-radius: 50%;
  flex-shrink: 0;
}

.page-ban-ca__guide-list li p {
  color: #FFF6D6;
}

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

.page-ban-ca__game-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-ban-ca__game-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #F2C14E;
  padding: 15px;
  margin-bottom: 0;
}

.page-ban-ca__game-description {
  font-size: 0.9em;
  color: #FFF6D6;
  padding: 0 15px 20px;
}

.page-ban-ca__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-ban-ca__promo-list li {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #F2C14E;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: #FFF6D6;
}

.page-ban-ca__promo-list li strong {
  color: #FFD36B;
}

.page-ban-ca__faq-list {
  margin-top: 40px;
}

.page-ban-ca__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  font-size: 1.15em;
  font-weight: 600;
  color: #F2C14E;
  cursor: pointer;
  background-color: #111111;
  list-style: none;
  transition: background-color 0.3s ease;
}

.page-ban-ca__faq-question::-webkit-details-marker, 
.page-ban-ca__faq-question::marker {
  display: none;
}

.page-ban-ca__faq-question:hover {
  background-color: #1a1a1a;
}

.page-ban-ca__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FFD36B;
  transition: transform 0.3s ease;
}

.page-ban-ca__faq-item[open] .page-ban-ca__faq-toggle {
  transform: rotate(45deg);
}

.page-ban-ca__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #FFF6D6;
}

.page-ban-ca__conclusion-cta-section {
  background-color: #0A0A0A; /* Background */
  text-align: center;
  padding: 80px 15px;
}

.page-ban-ca__text-center {
  text-align: center;
}

.page-ban-ca__description-text--light {
  color: #FFF6D6;
  font-size: 1.1em;
  max-width: 800px;
  margin: 20px auto 40px;
}

.page-ban-ca__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for contrast on bright button */
  font-size: 1.1em;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-ban-ca__btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
}

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

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .page-ban-ca__hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .page-ban-ca__hero-content {
    text-align: center;
  }

  .page-ban-ca__hero-title {
    text-align: center;
  }

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

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

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

  .page-ban-ca__card-title {
    font-size: 1.2em;
  }

  .page-ban-ca__game-title {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-ban-ca__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
  }

  .page-ban-ca__section-spacing {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .page-ban-ca__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-ban-ca__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  /* General image and container responsiveness */
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .page-ban-ca__container,
  .page-ban-ca__hero-container,
  .page-ban-ca__introduction-section,
  .page-ban-ca__benefits-section,
  .page-ban-ca__guide-section,
  .page-ban-ca__games-showcase-section,
  .page-ban-ca__promotions-section,
  .page-ban-ca__faq-section,
  .page-ban-ca__conclusion-cta-section,
  .page-ban-ca__benefit-card,
  .page-ban-ca__game-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons and button containers responsiveness */
  .page-ban-ca__btn-primary,
  .page-ban-ca a[class*="button"],
  .page-ban-ca a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-ban-ca__hero-cta,
  .page-ban-ca__cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-ban-ca__game-image {
    height: 180px; /* Adjust fixed height for mobile */
  }

  .page-ban-ca__promo-list li {
    padding: 10px;
  }

  .page-ban-ca__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-ban-ca__faq-answer {
    padding: 0 15px 15px;
  }
}