.page-ban-ca {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
}

.page-ban-ca__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Primary brand color gradient */
  color: #ffffff;
}

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

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

.page-ban-ca__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-ban-ca__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f0f8ff;
}

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

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

.page-ban-ca__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

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

.page-ban-ca__btn-secondary:hover {
  background: #f0f8ff;
  color: #1a4dcc;
  border-color: #1a4dcc;
}

.page-ban-ca__btn-link {
  display: inline-block;
  padding: 8px 15px;
  background: #2F6BFF;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-ban-ca__btn-link:hover {
  background: #4A8BFF;
}

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

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

.page-ban-ca__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-ban-ca__background-color {
  background-color: #F4F7FB; /* Background */
}

.page-ban-ca__light-bg {
  background-color: #ffffff;
  color: #1F2D3D;
}

.page-ban-ca__dark-bg {
  background-color: #2F6BFF;
  color: #ffffff;
}

.page-ban-ca__text-main {
  color: #1F2D3D;
}

.page-ban-ca__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-ban-ca__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #1F2D3D;
}

.page-ban-ca__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.page-ban-ca__game-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ban-ca__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-ban-ca__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #D6E2FF; /* Border */
}

.page-ban-ca__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 20px 15px 10px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-ban-ca__card-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.page-ban-ca__card-link:hover {
  color: #2F6BFF;
}

.page-ban-ca__card-description {
  font-size: 1rem;
  color: #1F2D3D;
  padding: 0 15px;
  margin-bottom: 20px;
}

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

.page-ban-ca__guide-item {
  background-color: #F4F7FB; /* Background */
  border-left: 5px solid #2F6BFF;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-ban-ca__guide-step {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
  color: #000000; /* Custom Color_1776249996415 */
}

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

.page-ban-ca__tips-item {
  background-color: #FFFFFF; /* Card BG */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF; /* Border */
}

.page-ban-ca__tips-heading {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-ban-ca__promo-section {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Primary brand color gradient */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 12px;
  max-width: 1200px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(47, 107, 255, 0.3);
}

.page-ban-ca__promo-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-ban-ca__promo-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-ban-ca__promo-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f0f8ff;
}

.page-ban-ca__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-ban-ca__faq-section {
  padding: 60px 20px;
  background-color: #F4F7FB; /* Background */
}

.page-ban-ca__faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

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

.page-ban-ca__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-ban-ca__faq-item[open] {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  cursor: pointer;
  background-color: #FFFFFF; /* Card BG */
  border-bottom: 1px solid #D6E2FF;
  list-style: none; /* Hide default marker */
}

.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.8rem;
  line-height: 1;
  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: 15px 25px 20px;
  font-size: 1rem;
  color: #1F2D3D;
  background-color: #fcfdff;
  border-top: 1px solid #D6E2FF;
}

.page-ban-ca__cta-final {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Primary brand color gradient */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-ban-ca__cta-final-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-ban-ca__cta-final-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-ban-ca__cta-final-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #f0f8ff;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-ban-ca__hero-container {
    padding: 30px 15px;
  }

  .page-ban-ca__main-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
  }

  .page-ban-ca__hero-description {
    font-size: 1rem;
  }

  .page-ban-ca__content-area,
  .page-ban-ca__promo-section,
  .page-ban-ca__faq-section {
    padding: 40px 15px;
  }

  .page-ban-ca__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  }

  .page-ban-ca__paragraph,
  .page-ban-ca__card-description,
  .page-ban-ca__guide-item p,
  .page-ban-ca__tips-item p,
  .page-ban-ca__promo-description,
  .page-ban-ca__faq-answer p,
  .page-ban-ca__cta-final-description {
    font-size: 1rem;
  }

  .page-ban-ca__card-title {
    font-size: 1.3rem;
  }

  .page-ban-ca__guide-step,
  .page-ban-ca__tips-heading {
    font-size: 1.2rem;
  }

  .page-ban-ca__faq-question {
    font-size: 1.05rem;
  }
}

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

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

  .page-ban-ca__hero-content {
    order: 2; /* Content below image */
    flex: 1 1 100%;
  }

  .page-ban-ca__hero-image {
    order: 1; /* Image above content */
    flex: 1 1 100%;
  }

  .page-ban-ca__main-title {
    font-size: clamp(2rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-ban-ca__hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

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

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

  .page-ban-ca__content-area,
  .page-ban-ca__promo-section,
  .page-ban-ca__faq-section,
  .page-ban-ca__cta-final {
    padding: 30px 15px !important;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
  }

  .page-ban-ca__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 20px;
  }

  .page-ban-ca__paragraph,
  .page-ban-ca__card-description,
  .page-ban-ca__guide-item p,
  .page-ban-ca__tips-item p,
  .page-ban-ca__promo-description,
  .page-ban-ca__faq-answer p,
  .page-ban-ca__cta-final-description {
    font-size: 0.9rem;
  }

  .page-ban-ca__content-image,
  .page-ban-ca__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  .page-ban-ca__game-list,
  .page-ban-ca__tips-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-ban-ca__game-card {
    padding-bottom: 15px;
  }

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

  .page-ban-ca__card-title {
    font-size: 1.2rem;
    margin: 15px 10px 8px;
  }

  .page-ban-ca__guide-item {
    padding: 20px;
    margin-bottom: 15px;
  }

  .page-ban-ca__guide-step,
  .page-ban-ca__tips-heading {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .page-ban-ca__promo-title,
  .page-ban-ca__cta-final-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 15px;
  }

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

  .page-ban-ca__faq-toggle {
    font-size: 1.5rem;
  }

  .page-ban-ca__faq-answer {
    padding: 10px 20px 15px;
  }

  /* Ensure all img tags are responsive */
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* Ensure all content containers prevent overflow */
  .page-ban-ca__hero-section,
  .page-ban-ca__content-area,
  .page-ban-ca__game-list,
  .page-ban-ca__game-card,
  .page-ban-ca__guide-list,
  .page-ban-ca__tips-list,
  .page-ban-ca__promo-section,
  .page-ban-ca__faq-section,
  .page-ban-ca__cta-final {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  .page-ban-ca__hero-container,
  .page-ban-ca__cta-final-container,
  .page-ban-ca__promo-container,
  .page-ban-ca__faq-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-ban-ca__game-card .page-ban-ca__btn-link {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
}