.page-ban-ca {
  font-family: 'Arial', sans-serif;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
}

.page-ban-ca__hero-section {
  padding-top: 10px; /* Minimal top padding as body handles header offset */
  padding-bottom: 60px;
  background-color: #140C0C;
}

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

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

.page-ban-ca__hero-title {
  font-size: 3.2em;
  font-weight: 700;
  line-height: 1.2;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 20px;
  max-width: 600px;
}

.page-ban-ca__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 30px;
  max-width: 600px;
}

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

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

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

.page-ban-ca__btn-primary:hover {
  background: linear-gradient(180deg, #F3C54D 0%, #E53030 100%);
  transform: translateY(-2px);
}

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

.page-ban-ca__btn-secondary:hover {
  background-color: #FFB04A;
  color: #140C0C; /* Background */
  transform: translateY(-2px);
}

.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: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.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-final-section {
  padding: 60px 0;
  background-color: #140C0C; /* Background */
}

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

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

.page-ban-ca__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-ban-ca__icon-box-media {
  width: 180px;
  height: 180px;
  aspect-ratio: 1/1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #FFB04A; /* Gold */
  box-shadow: 0 0 0 5px rgba(255, 176, 74, 0.3);
}

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

.page-ban-ca__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #FFB04A; /* Gold */
  margin-bottom: 15px;
}

.page-ban-ca__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
}

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

.page-ban-ca__game-card {
  background-color: #2A1212; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #6A1E1E; /* Border */
}

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

.page-ban-ca__game-card-title {
  font-size: 1.6em;
  font-weight: 600;
  margin: 20px 15px 10px;
}

.page-ban-ca__game-card-title a {
  color: #FFB04A; /* Gold */
  text-decoration: none;
}

.page-ban-ca__game-card-title a:hover {
  text-decoration: underline;
}

.page-ban-ca__game-card-text {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  padding: 0 15px 20px;
}

.page-ban-ca__btn-play {
  display: inline-block;
  padding: 10px 25px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-ban-ca__btn-play:hover {
  background: linear-gradient(180deg, #F3C54D 0%, #E53030 100%);
}

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

.page-ban-ca__guide-item {
  flex: 1 1 300px;
  max-width: 380px;
  background-color: #2A1212; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #6A1E1E; /* Border */
}

.page-ban-ca__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-ban-ca__guide-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #FFB04A; /* Gold */
  margin-bottom: 15px;
}

.page-ban-ca__guide-text {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
}

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

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

.page-ban-ca__faq-item {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #FFF1E8; /* Text Main */
  cursor: pointer;
  background-color: #2A1212; /* Card BG */
  position: relative;
  list-style: none;
}

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

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

.page-ban-ca__faq-qtext {
  flex-grow: 1;
  color: #FFB04A; /* Gold */
}

.page-ban-ca__faq-toggle {
  font-size: 1.5em;
  font-weight: 700;
  color: #FFB04A; /* Gold */
  margin-left: 15px;
  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;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #1a0d0d;
}

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

.page-ban-ca__cta-final-section {
  background-color: #C61F1F; /* Primary color */
  text-align: center;
  padding: 80px 0;
}

.page-ban-ca__cta-final-content {
  max-width: 800px;
}

.page-ban-ca__cta-final-title {
  font-size: 2.8em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.page-ban-ca__cta-final-description {
  font-size: 1.2em;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 40px;
}

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-ban-ca {
    font-size: 15px;
  }

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

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

  .page-ban-ca__hero-content,
  .page-ban-ca__hero-image {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-ban-ca__hero-title {
    font-size: 2.2em;
    text-align: center;
  }

  .page-ban-ca__hero-description {
    font-size: 1em;
    text-align: center;
  }

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

  .page-ban-ca__btn-primary,
  .page-ban-ca__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* General Section Styles */
  .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-final-section {
    padding: 40px 0;
  }

  .page-ban-ca__content-area {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

  /* Module 1: Feature Grid (Three columns round images) */
  .page-ban-ca__feature-grid {
    flex-direction: column;
    gap: 25px;
  }

  .page-ban-ca__feature-item {
    max-width: 100%;
    padding: 25px;
  }

  .page-ban-ca__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(255, 176, 74, 0.2);
  }

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

  .page-ban-ca__feature-text {
    font-size: 0.95em;
  }

  /* Game List Grid */
  .page-ban-ca__game-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-ban-ca__game-card-image {
    height: 180px;
  }

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

  .page-ban-ca__game-card-text {
    font-size: 0.95em;
  }

  .page-ban-ca__btn-play {
    padding: 10px 20px;
    font-size: 0.95em;
  }

  /* Guide Section */
  .page-ban-ca__guide-steps {
    flex-direction: column;
    gap: 25px;
  }

  .page-ban-ca__guide-item {
    max-width: 100%;
    padding: 25px;
  }

  .page-ban-ca__guide-image {
    margin-bottom: 20px;
  }

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

  .page-ban-ca__guide-text {
    font-size: 0.95em;
  }

  .page-ban-ca__center-button {
    margin-top: 30px;
  }

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

  .page-ban-ca__faq-qtext {
    color: #FFB04A;
  }

  .page-ban-ca__faq-toggle {
    font-size: 1.3em;
  }

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

  /* Final CTA Section */
  .page-ban-ca__cta-final-section {
    padding: 60px 0;
  }

  .page-ban-ca__cta-final-title {
    font-size: 2em;
  }

  .page-ban-ca__cta-final-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  /* Universal Image and Container Mobile Rules */
  .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__feature-item,
  .page-ban-ca__game-card,
  .page-ban-ca__guide-item,
  .page-ban-ca__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button Mobile Rules */
  .page-ban-ca__cta-button,
  .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__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;
    flex-direction: column;
  }
}