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

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

.page-ban-ca__section-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow color for titles */
  position: relative;
  padding-bottom: 10px;
}

.page-ban-ca__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #F2C14E, transparent);
  border-radius: 2px;
}

.page-ban-ca__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFF6D6;
}

.page-ban-ca__card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #FFF6D6;
}

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

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

.page-ban-ca__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-ban-ca__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Primary color text */
  border: 2px solid #F2C14E;
}

.page-ban-ca__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
}

.page-ban-ca__btn-play,
.page-ban-ca__btn-link,
.page-ban-ca__btn-view-promo {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #111111;
  border: none;
  margin-top: 15px;
}

.page-ban-ca__btn-play:hover,
.page-ban-ca__btn-link:hover,
.page-ban-ca__btn-view-promo:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* HERO SECTION */
.page-ban-ca__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-ban-ca__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

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

.page-ban-ca__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 15px;
}

.page-ban-ca__main-title {
  font-size: 52px;
  font-weight: 800;
  color: #FFF6D6;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-ban-ca__description {
  font-size: 20px;
  color: #F0E6D6;
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-ban-ca__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* WHY CHOOSE SECTION */
.page-ban-ca__why-choose-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-ban-ca__feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-ban-ca__feature-icon {
  width: 100%;
  height: auto;
  max-width: 300px;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-ban-ca__feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #F2C14E;
}

.page-ban-ca__feature-text {
  font-size: 16px;
  color: #F0E6D6;
}

/* GAME SHOWCASE SECTION */
.page-ban-ca__game-showcase-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-ban-ca__game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-ban-ca__game-thumbnail {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-ban-ca__game-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #FFD36B;
}

.page-ban-ca__game-description {
  font-size: 16px;
  color: #F0E6D6;
  margin-bottom: 20px;
}

/* HOW TO PLAY SECTION */
.page-ban-ca__how-to-play-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-ban-ca__step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  position: relative;
}

.page-ban-ca__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  border: 3px solid #3A2A12;
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-ban-ca__step-title {
  font-size: 24px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 10px;
  color: #F2C14E;
}

.page-ban-ca__step-text {
  font-size: 16px;
  color: #F0E6D6;
  margin-bottom: 20px;
}

/* PROMOTIONS SECTION */
.page-ban-ca__promotions-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-ban-ca__promo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-ban-ca__promo-thumbnail {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

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

.page-ban-ca__promo-text {
  font-size: 16px;
  color: #F0E6D6;
  margin-bottom: 20px;
}

.page-ban-ca__full-promo-cta {
  text-align: center;
}

/* DOWNLOAD APP SECTION */
.page-ban-ca__download-app-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-ban-ca__download-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-ban-ca__download-text {
  flex: 1;
  text-align: left;
}

.page-ban-ca__download-text p {
  font-size: 18px;
  color: #F0E6D6;
  margin-bottom: 30px;
}

.page-ban-ca__download-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-ban-ca__download-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-ban-ca__download-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

/* FAQ SECTION */
.page-ban-ca__faq-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

details.page-ban-ca__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

details.page-ban-ca__faq-item summary.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF6D6;
}

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

details.page-ban-ca__faq-item summary.page-ban-ca__faq-question:hover {
  background: rgba(242, 193, 78, 0.1);
}

.page-ban-ca__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF6D6;
}

.page-ban-ca__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F2C14E; /* Primary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 32px;
  text-align: center;
}

details.page-ban-ca__faq-item .page-ban-ca__faq-answer {
  padding: 0 20px 20px;
  background: rgba(17, 17, 17, 0.8); /* Slightly lighter card BG */
  border-radius: 0 0 10px 10px;
  color: #F0E6D6;
}

.page-ban-ca__faq-answer p {
  margin: 0;
  padding-top: 10px;
}

/* Global Image Styles for Responsiveness */
.page-ban-ca img {
  max-width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}

/* MEDIA QUERIES */

@media (max-width: 1024px) {
  .page-ban-ca__main-title {
    font-size: 44px;
  }
  .page-ban-ca__section-title {
    font-size: 34px;
  }
  .page-ban-ca__description,
  .page-ban-ca__section-description {
    font-size: 18px;
  }
  .page-ban-ca__download-content {
    flex-direction: column;
  }
  .page-ban-ca__download-text,
  .page-ban-ca__download-image-wrapper {
    width: 100%;
  }
  .page-ban-ca__download-text {
    text-align: center;
  }
  .page-ban-ca__download-buttons {
    justify-content: center;
  }
}

@media (max-width: 849px) {
  .page-ban-ca__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }
}

@media (max-width: 768px) {
  .page-ban-ca__container {
    padding: 15px;
  }
  .page-ban-ca__hero-section {
    padding-top: 10px; /* Consistent small top padding */
  }
  .page-ban-ca__main-title {
    font-size: clamp(32px, 8vw, 40px);
    margin-bottom: 15px;
  }
  .page-ban-ca__description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-ban-ca__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-ban-ca__btn-primary,
  .page-ban-ca__btn-secondary,
  .page-ban-ca__btn-play,
  .page-ban-ca__btn-link,
  .page-ban-ca__btn-view-promo {
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }

  .page-ban-ca__section-title {
    font-size: clamp(28px, 7vw, 32px);
    margin-bottom: 15px;
  }
  .page-ban-ca__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-ban-ca__features-grid,
  .page-ban-ca__game-cards-grid,
  .page-ban-ca__steps-grid,
  .page-ban-ca__promo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-ban-ca__feature-title,
  .page-ban-ca__game-title,
  .page-ban-ca__step-title,
  .page-ban-ca__promo-title {
    font-size: 20px;
  }
  .page-ban-ca__feature-text,
  .page-ban-ca__game-description,
  .page-ban-ca__step-text,
  .page-ban-ca__promo-text {
    font-size: 15px;
  }

  .page-ban-ca__download-app-section .page-ban-ca__download-text p {
    font-size: 16px;
  }
  .page-ban-ca__download-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  details.page-ban-ca__faq-item summary.page-ban-ca__faq-question {
    padding: 15px;
  }
  .page-ban-ca__faq-qtext {
    font-size: 16px;
  }
  .page-ban-ca__faq-toggle {
    font-size: 24px;
    width: 28px;
  }
  details.page-ban-ca__faq-item .page-ban-ca__faq-answer {
    padding: 0 15px 15px;
  }

  /* General image and container responsiveness */
  .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,
  .page-ban-ca__hero-section,
  .page-ban-ca__why-choose-section,
  .page-ban-ca__game-showcase-section,
  .page-ban-ca__how-to-play-section,
  .page-ban-ca__promotions-section,
  .page-ban-ca__download-app-section,
  .page-ban-ca__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-ban-ca__hero-content {
    padding: 20px 15px;
  }
  .page-ban-ca__why-choose-section,
  .page-ban-ca__game-showcase-section,
  .page-ban-ca__how-to-play-section,
  .page-ban-ca__promotions-section,
  .page-ban-ca__download-app-section,
  .page-ban-ca__faq-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Ensure no horizontal overflow from product grid (gameshow is not used here, but for other products) */
  .page-ban-ca__game-cards-grid {
    overflow-x: hidden;
  }
}