.page-ban-ca {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* 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: 2.5em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-ban-ca__section-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

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

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

.page-ban-ca__main-title {
  font-size: 3.2em;
  font-weight: 900;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-ban-ca__hero-description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

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

/* Buttons */
.page-ban-ca__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-ban-ca__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(17, 168, 78, 0.4);
}

.page-ban-ca__btn-secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-ban-ca__btn-secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
  transform: translateY(-2px);
}

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

.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: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-ban-ca__icon-box-media {
  width: 240px;
  height: 240px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #2AD16F;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-ban-ca__feature-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-ban-ca__feature-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

/* Advantages Section */
.page-ban-ca__advantages-section {
  background-color: #08160F; /* Background */
  padding: 60px 0;
}

.page-ban-ca__advantage-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-ban-ca__advantage-item {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-ban-ca__advantage-heading {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-ban-ca__advantage-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

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

.page-ban-ca__guide-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  align-items: center;
}

.page-ban-ca__guide-text {
  flex: 1 1 55%;
  min-width: 300px;
}

.page-ban-ca__guide-text p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-ban-ca__guide-steps {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-ban-ca__guide-steps li {
  background-color: #11271B; /* Card BG */
  border-left: 5px solid #2AD16F;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-ban-ca__step-title {
  font-size: 1.3em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 5px;
}

.page-ban-ca__guide-steps p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  margin-bottom: 0;
}

.page-ban-ca__guide-image-wrapper {
  flex: 1 1 35%;
  min-width: 300px;
  text-align: center;
}

.page-ban-ca__guide-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Popular Games Section */
.page-ban-ca__popular-games-section {
  background-color: #08160F; /* Background */
  padding: 60px 0;
}

.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: #11271B; /* Card BG */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
}

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

.page-ban-ca__game-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-ban-ca__game-card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-ban-ca__game-card-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-ban-ca__game-card-title a:hover {
  color: #2AD16F; /* Primary color hover */
}

.page-ban-ca__game-card-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-ban-ca__game-card .page-ban-ca__btn-secondary {
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 0.9em;
}

/* Promo Section */
.page-ban-ca__promo-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 0;
  text-align: center;
}

/* Tips Section */
.page-ban-ca__tips-section {
  background-color: #08160F; /* Background */
  padding: 60px 0;
}

.page-ban-ca__tips-content {
  display: flex;
  flex-wrap: wrap-reverse; /* Text first on mobile */
  gap: 40px;
  margin-top: 40px;
  align-items: center;
}

.page-ban-ca__tips-text {
  flex: 1 1 55%;
  min-width: 300px;
}

.page-ban-ca__tips-text p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-ban-ca__tips-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-ban-ca__tips-list li {
  background-color: #11271B; /* Card BG */
  border-right: 5px solid #2AD16F;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-ban-ca__tip-heading {
  font-size: 1.3em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 5px;
}

.page-ban-ca__tips-list p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  margin-bottom: 0;
}

.page-ban-ca__tips-image-wrapper {
  flex: 1 1 35%;
  min-width: 300px;
  text-align: center;
}

.page-ban-ca__tips-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-ban-ca__faq-list {
  margin-top: 40px;
}

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

.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B;
  list-style: none; /* Remove default marker for details summary */
}

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

.page-ban-ca__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-ban-ca__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

.page-ban-ca__faq-answer {
  padding: 0 20px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  line-height: 1.6;
}

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

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

.page-ban-ca__cta-title {
  font-size: 2.8em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 0;
}

.page-ban-ca__cta-description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  max-width: 700px;
  margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-ban-ca__main-title {
    font-size: 2.8em;
  }

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

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

  .page-ban-ca__hero-container,
  .page-ban-ca__guide-content,
  .page-ban-ca__tips-content {
    flex-direction: column;
    text-align: center;
  }

  .page-ban-ca__hero-content,
  .page-ban-ca__guide-text,
  .page-ban-ca__tips-text {
    text-align: center;
  }

  .page-ban-ca__hero-image-wrapper,
  .page-ban-ca__guide-image-wrapper,
  .page-ban-ca__tips-image-wrapper {
    order: -1; /* Image above text on smaller screens */
  }

  .page-ban-ca__hero-image,
  .page-ban-ca__guide-image,
  .page-ban-ca__tips-image {
    max-width: 100%;
    height: auto;
  }

  .page-ban-ca__cta-button {
    width: auto;
    max-width: 80%;
  }
}

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

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

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

  .page-ban-ca__main-title {
    font-size: 2.2em !important;
    margin-bottom: 15px !important;
  }

  .page-ban-ca__hero-description {
    font-size: 1em !important;
    margin-bottom: 25px !important;
  }

  .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: 12px 15px !important;
    font-size: 1em !important;
  }

  .page-ban-ca__hero-content .page-ban-ca__cta-button {
    max-width: 100% !important;
    width: 100% !important;
  }

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

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

  .page-ban-ca__features-grid,
  .page-ban-ca__advantage-list,
  .page-ban-ca__game-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-ban-ca__feature-item,
  .page-ban-ca__advantage-item,
  .page-ban-ca__game-card {
    padding: 20px !important;
  }

  .page-ban-ca__icon-box-media {
    width: 200px !important;
    height: 200px !important;
    margin-bottom: 15px !important;
  }

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

  .page-ban-ca__guide-content,
  .page-ban-ca__tips-content {
    gap: 20px !important;
  }

  .page-ban-ca__guide-steps li,
  .page-ban-ca__tips-list li {
    padding: 15px !important;
    margin-bottom: 10px !important;
  }

  .page-ban-ca__step-title,
  .page-ban-ca__tip-heading {
    font-size: 1.1em !important;
  }

  .page-ban-ca__guide-text p,
  .page-ban-ca__tips-text p {
    font-size: 1em !important;
  }

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

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

  .page-ban-ca__game-card-text {
    font-size: 0.9em !important;
  }

  .page-ban-ca__game-card .page-ban-ca__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 15px !important;
    font-size: 0.9em !important;
  }

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

  .page-ban-ca__faq-toggle {
    font-size: 1.2em !important;
  }

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

  .page-ban-ca__cta-title {
    font-size: 1.8em !important;
  }

  .page-ban-ca__cta-description {
    font-size: 1em !important;
  }

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

  /* All containers with images or content */
  .page-ban-ca__hero-container,
  .page-ban-ca__intro-section .page-ban-ca__container,
  .page-ban-ca__advantages-section .page-ban-ca__container,
  .page-ban-ca__guide-section .page-ban-ca__container,
  .page-ban-ca__popular-games-section .page-ban-ca__container,
  .page-ban-ca__promo-section .page-ban-ca__container,
  .page-ban-ca__tips-section .page-ban-ca__container,
  .page-ban-ca__faq-section .page-ban-ca__container,
  .page-ban-ca__cta-section .page-ban-ca__container,
  .page-ban-ca__feature-item,
  .page-ban-ca__advantage-item,
  .page-ban-ca__game-card,
  .page-ban-ca__guide-steps li,
  .page-ban-ca__tips-list li,
  .page-ban-ca__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-ban-ca__cta-flex-container {
    flex-wrap: wrap !important;
    gap: 15px !important;
  }
}