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

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

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

.page-ban-ca__main-heading {
  font-size: 3.2em;
  color: #FFF3E6;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-ban-ca__sub-heading {
  font-size: 1.2em;
  color: #FFF3E6;
  margin-bottom: 30px;
}

.page-ban-ca__text-block {
  font-size: 1em;
  color: #FFF3E6;
  margin-bottom: 20px;
  text-align: center;
}

.page-ban-ca__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-ban-ca__cta-button:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

/* Title Section */
.page-ban-ca__title-section {
  padding-top: 10px; /* Aligns with common padding-top for body */
  padding-bottom: 60px;
  background-color: #0D0E12;
}

.page-ban-ca__title-section .page-ban-ca__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.page-ban-ca__title-image {
  flex: 1 1 40%;
  min-width: 250px;
  text-align: center;
}

.page-ban-ca__main-visual {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.page-ban-ca__intro-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

.page-ban-ca__intro-section .page-ban-ca__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.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: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid #A84F0C; /* Border */
}

.page-ban-ca__feature-item:hover {
  transform: translateY(-5px);
}

.page-ban-ca__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 5px rgba(255, 140, 26, 0.3);
}

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

.page-ban-ca__feature-description {
  font-size: 0.95em;
  color: #FFF3E6;
}

/* Game List Section */
.page-ban-ca__game-list-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

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

.page-ban-ca__game-card {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid #A84F0C; /* Border */
  display: flex;
  flex-direction: column;
}

.page-ban-ca__game-card:hover {
  transform: translateY(-5px);
}

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

.page-ban-ca__game-title {
  font-size: 1.4em;
  color: #FFF3E6;
  padding: 15px 20px 5px;
  font-weight: bold;
}

.page-ban-ca__game-title a {
  color: #FFF3E6;
  text-decoration: none;
}

.page-ban-ca__game-title a:hover {
  color: #FFA53A;
}

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

.page-ban-ca__game-button {
  display: block;
  margin: 0 20px 20px;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.95em;
  transition: all 0.3s ease;
}

.page-ban-ca__game-button:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
}

.page-ban-ca__game-trial-wrapper {
    background-color: #17191F;
    border: 1px solid #A84F0C;
    border-radius: 12px;
    padding: 30px;
    margin-top: 60px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__game-trial-title {
    font-size: 1.8em;
    color: #FFF3E6;
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-ban-ca__game-trial-frame {
    border: none;
    border-radius: 8px;
    display: block;
    width: 100%;
    height: 600px;
    background-color: #0D0E12; /* Fallback for loading */
}

/* Guide Section */
.page-ban-ca__guide-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

.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-item {
  background-color: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-ban-ca__guide-step-number {
  width: 50px;
  height: 50px;
  background-color: #FF8C1A;
  color: #FFF3E6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 0 5px rgba(255, 140, 26, 0.3);
}

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

.page-ban-ca__guide-step-description {
  font-size: 0.95em;
  color: #FFF3E6;
}

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

/* FAQ Section */
.page-ban-ca__faq-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

.page-ban-ca__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-ban-ca__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15em;
  color: #FFF3E6;
  font-weight: bold;
  background-color: #17191F;
  list-style: none;
}

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

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

.page-ban-ca__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #FFA53A;
  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 25px 20px;
  font-size: 1em;
  color: #FFF3E6;
  line-height: 1.5;
}

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

/* Final CTA Section */
.page-ban-ca__cta-section {
  padding: 60px 0 80px;
  background-color: #FF8C1A; /* Main color */
  text-align: center;
}

.page-ban-ca__cta-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.page-ban-ca__cta-section .page-ban-ca__section-title {
  color: #FFF3E6;
  margin-bottom: 0;
}

.page-ban-ca__cta-section .page-ban-ca__text-block {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  color: #FFF3E6;
}

.page-ban-ca__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

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

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .page-ban-ca__main-heading {
    font-size: 2.8em;
  }

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

  .page-ban-ca__title-section .page-ban-ca__container {
    gap: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .page-ban-ca__game-trial-frame {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .page-ban-ca__title-section {
    padding-top: 10px !important;
  }

  .page-ban-ca__container {
    padding: 15px;
  }

  .page-ban-ca__main-heading {
    font-size: 2.2em;
    text-align: center;
  }

  .page-ban-ca__sub-heading {
    font-size: 1em;
    text-align: center;
  }

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

  .page-ban-ca__text-block {
    font-size: 0.95em;
  }

  .page-ban-ca__title-content {
    flex: 1 1 100%;
    text-align: center;
  }

  .page-ban-ca__title-image {
    flex: 1 1 100%;
  }

  .page-ban-ca__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-ban-ca__features-grid,
  .page-ban-ca__game-cards-grid,
  .page-ban-ca__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-ban-ca__feature-item,
  .page-ban-ca__game-card,
  .page-ban-ca__guide-step-item {
    padding: 25px;
  }

  .page-ban-ca__feature-icon {
    width: 80px;
    height: 80px;
  }

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

  .page-ban-ca__game-description {
    font-size: 0.85em;
  }

  .page-ban-ca__game-button {
    margin-left: 15px;
    margin-right: 15px;
  }

  .page-ban-ca__game-trial-wrapper {
    padding: 20px;
    margin-top: 40px;
  }

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

  .page-ban-ca__game-trial-frame {
    height: 400px;
  }

  .page-ban-ca__guide-step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }

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

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

  .page-ban-ca__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9em;
  }

  .page-ban-ca__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  /* General image responsiveness for all content images */
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* All containers with images */
  .page-ban-ca__title-section,
  .page-ban-ca__intro-section,
  .page-ban-ca__game-list-section,
  .page-ban-ca__guide-section,
  .page-ban-ca__faq-section,
  .page-ban-ca__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-ban-ca__features-grid,
  .page-ban-ca__game-cards-grid,
  .page-ban-ca__guide-steps {
    margin-left: 0;
    margin-right: 0;
  }

  .page-ban-ca__game-card .page-ban-ca__game-button {
    max-width: calc(100% - 40px) !important; /* Adjust for card padding */
    width: calc(100% - 40px) !important;
  }
}