.page-ban-ca__hero-section {
  padding-top: 10px;
  padding-bottom: 60px;
  background: #140C0C; /* Background color */
  color: #FFF1E8;
}

.page-ban-ca__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  gap: 40px;
  padding: 20px 15px;
}

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

.page-ban-ca__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

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

.page-ban-ca__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF1E8;
}

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

.page-ban-ca__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary,
.page-ban-ca__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C; /* Dark text for light button */
  border: none;
}

.page-ban-ca__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-ban-ca__btn-secondary {
  background: transparent;
  color: #FFF1E8;
  border: 2px solid #6A1E1E; /* Border color */
}

.page-ban-ca__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #F3C54D;
}

.page-ban-ca__intro-section {
  padding: 60px 0;
  background: #140C0C;
  color: #FFF1E8;
}

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

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

.page-ban-ca__section-title--white {
  color: #FFF1E8;
}

.page-ban-ca__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #FFF1E8;
}

.page-ban-ca__section-description--white {
  color: #FFF1E8;
}

.page-ban-ca__features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.page-ban-ca__feature-item {
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: #2A1212; /* Card BG */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF1E8;
}

.page-ban-ca__icon-box-media {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #6A1E1E;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-ban-ca__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.page-ban-ca__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F3C54D;
}

.page-ban-ca__feature-text {
  font-size: 1em;
  line-height: 1.5;
  color: #FFF1E8;
}

.page-ban-ca__game-tabs-section {
  padding: 60px 0;
  background: #2A1212; /* Card BG */
  color: #FFF1E8;
}

.page-ban-ca__dark-section {
  background: #2A1212;
  color: #FFF1E8;
}

.page-ban-ca__tab-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  border-bottom: 2px solid #6A1E1E;
  padding-bottom: 10px;
}

.page-ban-ca__tab-button {
  background: transparent;
  border: none;
  padding: 10px 20px;
  font-size: 1.1em;
  font-weight: 600;
  color: #FFF1E8;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.page-ban-ca__tab-button.is-active {
  color: #F3C54D;
}

.page-ban-ca__tab-button.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 3px;
  background: #F3C54D;
}

.page-ban-ca__tab-button:hover {
  color: #F3C54D;
}

.page-ban-ca__game-panel {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.page-ban-ca__game-panel.is-active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-ban-ca__game-card {
  background: #140C0C;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF1E8;
}

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

.page-ban-ca__game-title {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #F3C54D;
}

.page-ban-ca__game-text {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #FFF1E8;
}

.page-ban-ca__btn-link {
  color: #F3C54D;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

.page-ban-ca__btn-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #F3C54D;
  transition: width 0.3s ease;
}

.page-ban-ca__btn-link:hover::after {
  width: 0;
}

.page-ban-ca__btn-link--light {
  color: #FFF1E8;
}

.page-ban-ca__btn-link--light::after {
  background: #FFF1E8;
}

.page-ban-ca__guide-section {
  padding: 60px 0;
  background: #140C0C;
  color: #FFF1E8;
}

.page-ban-ca__guide-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 800px;
}

.page-ban-ca__guide-item {
  background: #2A1212; /* Card BG */
  border-left: 5px solid #F3C54D;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #FFF1E8;
}

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

.page-ban-ca__guide-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF1E8;
}

.page-ban-ca__promo-section {
  padding: 60px 0;
  background: #2A1212; /* Card BG */
  color: #FFF1E8;
}

.page-ban-ca__promo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.page-ban-ca__promo-card {
  flex: 1 1 350px;
  max-width: 500px;
  background: #140C0C;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF1E8;
}

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

.page-ban-ca__promo-title {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #F3C54D;
}

.page-ban-ca__promo-text {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #FFF1E8;
}

.page-ban-ca__faq-section {
  padding: 60px 0;
  background: #140C0C;
  color: #FFF1E8;
}

.page-ban-ca__faq-list {
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-ban-ca__faq-item {
  background: #2A1212; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #FFF1E8;
}

.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  color: #F3C54D;
  list-style: none;
  position: relative;
}

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

.page-ban-ca__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #F3C54D;
}

.page-ban-ca__faq-item[open] .page-ban-ca__faq-toggle {
  content: '−';
}

.page-ban-ca__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #FFF1E8;
}

.page-ban-ca__final-cta-section {
  padding: 60px 0;
  background: #2A1212; /* Card BG */
  text-align: center;
  color: #FFF1E8;
}

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

.page-ban-ca__section,
.page-ban-ca__card,
.page-ban-ca__container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .page-ban-ca__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }

  .page-ban-ca__hero-container {
    flex-direction: column-reverse;
    gap: 20px;
    padding: 15px;
  }

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

  .page-ban-ca__main-title {
    font-size: 2em !important;
    margin-bottom: 15px !important;
  }

  .page-ban-ca__hero-description {
    font-size: 1em !important;
    margin-bottom: 20px !important;
  }

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

  .page-ban-ca__btn-primary,
  .page-ban-ca__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 10px 15px !important;
    font-size: 0.9em !important;
  }

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

  .page-ban-ca__section-description {
    font-size: 0.95em !important;
    margin-bottom: 30px !important;
  }

  .page-ban-ca__features-grid,
  .page-ban-ca__promo-grid {
    flex-direction: column;
    gap: 20px;
  }

  .page-ban-ca__feature-item,
  .page-ban-ca__promo-card {
    max-width: 100%;
    padding: 15px;
  }

  .page-ban-ca__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
  }

  .page-ban-ca__feature-title {
    font-size: 1.3em !important;
  }

  .page-ban-ca__game-tabs-section,
  .page-ban-ca__guide-section,
  .page-ban-ca__promo-section,
  .page-ban-ca__faq-section,
  .page-ban-ca__final-cta-section {
    padding: 40px 0 !important;
  }

  .page-ban-ca__tab-nav {
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
    border-bottom: none;
    padding-bottom: 0;
  }

  .page-ban-ca__tab-button {
    padding: 8px 12px !important;
    font-size: 0.9em !important;
    flex: 1 1 auto;
    text-align: center;
  }

  .page-ban-ca__tab-button.is-active::after {
    bottom: -5px;
  }

  .page-ban-ca__game-card {
    padding: 20px;
  }

  .page-ban-ca__game-title {
    font-size: 1.5em !important;
  }

  .page-ban-ca__guide-item {
    padding: 15px;
    margin-bottom: 15px;
  }

  .page-ban-ca__guide-step-title {
    font-size: 1.2em !important;
  }

  .page-ban-ca__faq-question {
    padding: 15px 20px !important;
    font-size: 1.1em !important;
  }

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

  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-ban-ca__section,
  .page-ban-ca__card,
  .page-ban-ca__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}