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

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

.page-ban-ca__section-title {
  font-size: 3em;
  font-weight: bold;
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 20px;
}

.page-ban-ca__section-description {
  font-size: 1.1em;
  color: #FFF3E6;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-ban-ca__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #0D0E12;
  position: relative;
  overflow: hidden;
}

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

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

.page-ban-ca__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  font-weight: 900;
  line-height: 1.2;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
}

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

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

.page-ban-ca__hero-cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  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: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #ffffff;
  border: none;
}

.page-ban-ca__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  box-shadow: 0 5px 15px rgba(255, 165, 58, 0.4);
}

.page-ban-ca__btn-secondary {
  background: #17191F; /* Card B G */
  color: #FF8C1A;
  border: 2px solid #FF8C1A; /* Border color */
}

.page-ban-ca__btn-secondary:hover {
  background: #FF8C1A;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
}

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

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

.page-ban-ca__intro-item {
  background-color: #17191F; /* Card B G */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C; /* Border color */
}

.page-ban-ca__icon-box-media {
  width: 200px;
  height: 200px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FF8C1A;
  box-shadow: 0 0 15px rgba(255, 140, 26, 0.6);
}

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

.page-ban-ca__intro-title {
  font-size: 1.8em;
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
}

.page-ban-ca__intro-text {
  color: #FFF3E6;
  font-size: 1em;
}

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

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

.page-ban-ca__game-card {
  background-color: #17191F; /* Card B G */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid #A84F0C; /* Border color */
}

.page-ban-ca__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-ban-ca__game-title {
  font-size: 1.5em;
  color: #FFB04D; /* Glow */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-ban-ca__game-text {
  color: #FFF3E6;
  font-size: 0.95em;
  margin-bottom: 20px;
  padding: 0 15px;
}

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

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

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

.page-ban-ca__guide-step {
  background-color: #17191F; /* Card B G */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #A84F0C; /* Border color */
}

.page-ban-ca__guide-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-ban-ca__guide-title {
  font-size: 1.6em;
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
}

.page-ban-ca__guide-text {
  color: #FFF3E6;
  font-size: 1em;
  margin-bottom: 15px;
}

.page-ban-ca__guide-link {
  color: #FFA53A;
  text-decoration: none;
  font-weight: bold;
}

.page-ban-ca__guide-link:hover {
  text-decoration: underline;
}

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

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

.page-ban-ca__promo-card {
  background-color: #17191F; /* Card B G */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid #A84F0C; /* Border color */
}

.page-ban-ca__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-ban-ca__promo-title {
  font-size: 1.5em;
  color: #FFB04D; /* Glow */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-ban-ca__promo-text {
  color: #FFF3E6;
  font-size: 0.95em;
  margin-bottom: 20px;
  padding: 0 15px;
}

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

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

.page-ban-ca__trust-item {
  background-color: #17191F; /* Card B G */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #A84F0C; /* Border color */
}

.page-ban-ca__trust-title {
  font-size: 1.6em;
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
}

.page-ban-ca__trust-text {
  color: #FFF3E6;
  font-size: 1em;
  margin-bottom: 15px;
}

.page-ban-ca__trust-link {
  color: #FFA53A;
  text-decoration: none;
  font-weight: bold;
}

.page-ban-ca__trust-link:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.page-ban-ca__faq-answer p {
  margin-bottom: 10px;
}

.page-ban-ca__faq-link {
  color: #FFA53A;
  text-decoration: none;
  font-weight: bold;
}

.page-ban-ca__faq-link:hover {
  text-decoration: underline;
}

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

.page-ban-ca__cta-container {
  background-color: #17191F; /* Card B G */
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid #D96800; /* Deep Orange */
}

.page-ban-ca__cta-title {
  font-size: 2.8em;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
}

.page-ban-ca__cta-description {
  font-size: 1.2em;
  color: #FFF3E6;
  margin-bottom: 40px;
}

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

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-ban-ca__section-title {
    font-size: 2.5em;
  }
  .page-ban-ca__hero-title {
    font-size: clamp(2.2em, 4.5vw, 3em);
  }
  .page-ban-ca__hero-container {
    padding: 30px 16px;
  }
  .page-ban-ca__cta-container {
    padding: 40px;
  }
  .page-ban-ca__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  /* General mobile container padding */
  .page-ban-ca__container {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Hero Section */
  .page-ban-ca__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    padding-bottom: 40px;
  }
  .page-ban-ca__hero-container {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
    gap: 20px;
  }
  .page-ban-ca__hero-content,
  .page-ban-ca__hero-image {
    flex: 1 1 100%;
    min-width: unset;
  }
  .page-ban-ca__hero-title {
    font-size: clamp(2em, 8vw, 2.5em);
    text-align: center;
  }
  .page-ban-ca__hero-description {
    font-size: 1em;
    text-align: center;
  }
  .page-ban-ca__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Buttons mobile specific */
  .page-ban-ca__btn-primary,
  .page-ban-ca__btn-secondary,
  .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-buttons,
  .page-ban-ca__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Section Titles & Descriptions */
  .page-ban-ca__section-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-ban-ca__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  /* Intro Section */
  .page-ban-ca__intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-ban-ca__icon-box-media {
    width: 150px;
    height: 150px;
    border: 3px solid #FF8C1A;
  }
  .page-ban-ca__intro-title {
    font-size: 1.5em;
  }

  /* Game Showcase Section */
  .page-ban-ca__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-ban-ca__game-title {
    font-size: 1.3em;
  }

  /* Guide Section */
  .page-ban-ca__guide-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-ban-ca__guide-title {
    font-size: 1.4em;
  }

  /* Promo Section */
  .page-ban-ca__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-ban-ca__promo-title {
    font-size: 1.3em;
  }

  /* Trust Section */
  .page-ban-ca__trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-ban-ca__trust-title {
    font-size: 1.4em;
  }

  /* FAQ Section */
  .page-ban-ca__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-ban-ca__faq-answer {
    padding: 0 15px 15px;
  }

  /* CTA Section */
  .page-ban-ca__cta-container {
    padding: 30px 20px;
  }
  .page-ban-ca__cta-title {
    font-size: 2em;
  }
  .page-ban-ca__cta-description {
    font-size: 1em;
  }

  /* General Image responsiveness */
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-ban-ca__game-image,
  .page-ban-ca__guide-image,
  .page-ban-ca__promo-image {
    height: 180px; /* Adjust height for smaller screens */
  }
}