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

.page-ban-ca__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 20px 16px;
  box-sizing: border-box;
}

.page-ban-ca__section-title {
  font-size: clamp(24px, 4vw, 36px);
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.page-ban-ca__section-description {
  font-size: clamp(16px, 2vw, 18px);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-ban-ca__hero-section {
  padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
  padding-bottom: 60px;
  background-color: #0A0A0A; /* Background */
}

.page-ban-ca__hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
}

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

.page-ban-ca__main-title {
  font-size: clamp(32px, 5vw, 48px);
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.page-ban-ca__hero-description {
  font-size: clamp(18px, 2.5vw, 20px);
  color: #FFF6D6;
  margin-bottom: 30px;
  line-height: 1.5;
}

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

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  text-align: center;
}

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

.page-ban-ca__btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.6);
}

.page-ban-ca__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow */
  border: 2px solid #3A2A12; /* Border */
}

.page-ban-ca__btn-secondary:hover {
  background: #222222;
  color: #FFD86A;
  border-color: #FFD36B;
}

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

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

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

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

.page-ban-ca__feature-item {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-ban-ca__icon-box-media {
  width: 200px;
  height: 200px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #F2C14E; /* Main color */
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

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

.page-ban-ca__feature-title {
  font-size: 22px;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-ban-ca__feature-description {
  font-size: 16px;
  color: #FFF6D6; /* Text Main */
  line-height: 1.6;
}

.page-ban-ca__game-overview-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

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

.page-ban-ca__game-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.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: 24px;
  color: #F2C14E; /* Main color */
  padding: 20px 20px 10px;
  font-weight: 700;
}

.page-ban-ca__game-description {
  font-size: 16px;
  color: #FFF6D6; /* Text Main */
  padding: 0 20px 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.page-ban-ca__game-card .page-ban-ca__btn-primary {
  margin: 0 20px 20px;
  width: auto;
}

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

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

.page-ban-ca__guide-step {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-top: 70px; /* Space for step number */
}

.page-ban-ca__step-number {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 36px;
  font-weight: 800;
  color: #F2C14E; /* Main color */
  line-height: 1;
}

.page-ban-ca__step-title {
  font-size: 20px;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-ban-ca__step-description {
  font-size: 16px;
  color: #FFF6D6; /* Text Main */
  line-height: 1.6;
}

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

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

.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;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #F2C14E; /* Main color */
  transition: background-color 0.3s ease;
}

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

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

.page-ban-ca__faq-qtext {
  flex-grow: 1;
}

.page-ban-ca__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
}

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

.page-ban-ca__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  color: #FFF6D6; /* Text Main */
  line-height: 1.6;
}

.page-ban-ca__faq-answer p {
  margin: 0;
}

.page-ban-ca__cta-final-section {
  padding: 60px 0;
  background-color: #0A0A0A;
  text-align: center;
}

.page-ban-ca__cta-final-section .page-ban-ca__btn-primary {
  margin-top: 30px;
  width: auto;
  padding: 18px 40px;
  font-size: 20px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-ban-ca__hero-container {
    flex-direction: column;
    text-align: center;
  }
  .page-ban-ca__hero-content,
  .page-ban-ca__hero-image {
    flex: 1 1 100%;
  }
  .page-ban-ca__cta-buttons {
    justify-content: center;
  }
  .page-ban-ca__game-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-ban-ca {
    font-size: 16px;
    line-height: 1.6;
  }

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

  /* HERO Section */
  .page-ban-ca__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-ban-ca__hero-container {
    padding: 20px 15px;
    gap: 20px;
  }

  .page-ban-ca__main-title {
    font-size: clamp(28px, 8vw, 38px);
    text-align: center;
  }

  .page-ban-ca__hero-description {
    font-size: 16px;
    text-align: center;
  }

  .page-ban-ca__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-ban-ca__btn-primary,
  .page-ban-ca__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-ban-ca__hero-side-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Module 1: Intro Section (Features Grid) */
  .page-ban-ca__intro-section {
    padding: 40px 0;
  }
  .page-ban-ca__section-title {
    font-size: clamp(22px, 6vw, 30px);
    margin-bottom: 20px;
  }
  .page-ban-ca__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-ban-ca__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-ban-ca__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
    border-width: 2px;
  }
  .page-ban-ca__feature-title {
    font-size: 20px;
  }
  .page-ban-ca__feature-description {
    font-size: 15px;
  }

  /* Game Overview Section */
  .page-ban-ca__game-overview-section {
    padding: 40px 0;
  }
  .page-ban-ca__game-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-ban-ca__game-image {
    height: 160px !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .page-ban-ca__game-title {
    font-size: 20px;
    padding: 15px 15px 8px;
  }
  .page-ban-ca__game-description {
    font-size: 15px;
    padding: 0 15px 15px;
  }
  .page-ban-ca__game-card .page-ban-ca__btn-primary {
    margin: 0 15px 15px;
    padding: 12px 20px !important;
    font-size: 16px !important;
  }

  /* Guide Section */
  .page-ban-ca__guide-section {
    padding: 40px 0;
  }
  .page-ban-ca__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-ban-ca__guide-step {
    padding: 60px 20px 20px;
  }
  .page-ban-ca__step-number {
    font-size: 30px;
    top: 15px;
    left: 20px;
  }
  .page-ban-ca__step-title {
    font-size: 18px;
  }
  .page-ban-ca__step-description {
    font-size: 15px;
  }
  .page-ban-ca__cta-center {
    margin-top: 30px;
  }
  .page-ban-ca__cta-center .page-ban-ca__btn-primary {
    padding: 15px 30px !important;
    font-size: 18px !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* FAQ Section */
  .page-ban-ca__faq-section {
    padding: 40px 0;
  }
  .page-ban-ca__faq-list {
    margin-top: 30px;
  }
  .page-ban-ca__faq-item summary {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-ban-ca__faq-toggle {
    font-size: 20px;
  }
  .page-ban-ca__faq-answer {
    padding: 0 20px 15px;
    font-size: 15px;
  }

  /* Final CTA Section */
  .page-ban-ca__cta-final-section {
    padding: 40px 0;
  }
  .page-ban-ca__cta-final-section .page-ban-ca__btn-primary {
    margin-top: 20px;
    padding: 15px 30px !important;
    font-size: 18px !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* General Image adaptation for mobile */
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !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;
  }

  .page-ban-ca__cta-buttons,
  .page-ban-ca__button-group,
  .page-ban-ca__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-ban-ca__cta-buttons {
    flex-direction: column !important;
  }
}