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

.page-ban-ca__hero-section {
  padding-top: 10px; /* Assuming shared.css handles body padding-top */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #F4F7FB 0%, #D6E2FF 100%);
}

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

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

.page-ban-ca__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-ban-ca__description {
  font-size: 1.1rem;
  color: #1F2D3D;
  margin-bottom: 30px;
}

.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: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #FFFFFF;
  border: 2px solid transparent;
}

.page-ban-ca__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(47, 107, 255, 0.3);
}

.page-ban-ca__btn-secondary {
  background: #FFFFFF; /* Card BG */
  color: #2F6BFF; /* Main Color */
  border: 2px solid #2F6BFF; /* Main Color */
}

.page-ban-ca__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(47, 107, 255, 0.1);
}

.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 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.page-ban-ca__section-description {
  font-size: 1.1rem;
  color: #1F2D3D;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

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

.page-ban-ca__feature-item {
  background: #FFFFFF; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-ban-ca__icon-box-media {
  width: 180px;
  height: 180px;
  aspect-ratio: 1/1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 8px #D6E2FF; /* Border */
}

.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.5rem;
  font-weight: 600;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 15px;
}

.page-ban-ca__feature-text {
  font-size: 1rem;
  color: #1F2D3D;
}

.page-ban-ca__game-types-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-ban-ca__tab-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #D6E2FF; /* Border */
  gap: 10px;
  flex-wrap: wrap;
}

.page-ban-ca__tab-button {
  background: none;
  border: none;
  padding: 15px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1F2D3D;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.page-ban-ca__tab-button:hover {
  color: #2F6BFF;
}

.page-ban-ca__tab-button.is-active {
  color: #2F6BFF; /* Main Color */
  border-bottom-color: #2F6BFF; /* Main Color */
}

.page-ban-ca__game-panel {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.page-ban-ca__game-panel.is-active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-ban-ca__game-panel-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  background: #FFFFFF; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-ban-ca__game-image {
  flex: 1 1 45%;
  min-width: 300px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-ban-ca__game-details {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-ban-ca__game-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 15px;
}

.page-ban-ca__game-text {
  font-size: 1rem;
  color: #1F2D3D;
  margin-bottom: 25px;
}

.page-ban-ca__guide-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-ban-ca__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.page-ban-ca__guide-step-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  background: #FFFFFF; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-ban-ca__guide-step-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-ban-ca__step-icon {
  flex: 1 1 40%;
  min-width: 280px;
  text-align: center;
}

.page-ban-ca__step-icon img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-ban-ca__step-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 15px;
}

.page-ban-ca__step-text {
  font-size: 1rem;
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-ban-ca__tips-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-ban-ca__tips-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-ban-ca__tips-list li {
  background: #FFFFFF; /* Card BG */
  border-left: 5px solid #2F6BFF; /* Main Color */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  font-size: 1.1rem;
  color: #1F2D3D;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.page-ban-ca__list-icon {
  font-size: 1.5rem;
  color: #2F6BFF;
  line-height: 1;
}

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

.page-ban-ca__promo-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

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

.page-ban-ca__promo-card {
  background: #FFFFFF; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-ban-ca__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-ban-ca__promo-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 15px;
}

.page-ban-ca__promo-text {
  font-size: 1rem;
  color: #1F2D3D;
  margin-bottom: 25px;
}

.page-ban-ca__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

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

.page-ban-ca__faq-item {
  background: #FFFFFF; /* Card BG */
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.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: #1F2D3D;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.page-ban-ca__faq-toggle {
  font-size: 1.8rem;
  color: #2F6BFF;
  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: 1rem;
  color: #1F2D3D;
}

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

.page-ban-ca__faq-link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 500;
}

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

.page-ban-ca__cta-final-section {
  padding: 60px 0 80px;
  background-color: #F4F7FB;
  text-align: center;
}

.page-ban-ca__cta-final-section .page-ban-ca__cta-buttons {
  justify-content: center;
  margin-top: 40px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-ban-ca__hero-container {
    flex-direction: column;
    text-align: center;
  }
  .page-ban-ca__hero-content {
    order: 2;
    text-align: center;
  }
  .page-ban-ca__hero-image {
    order: 1;
    margin-bottom: 30px;
  }
  .page-ban-ca__cta-buttons {
    justify-content: center;
  }
  .page-ban-ca__guide-step-item:nth-child(even) {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .page-ban-ca__hero-section {
    padding-top: 10px !important; /* Fixed header spacing */
    padding-bottom: 40px;
  }
  .page-ban-ca__hero-container,
  .page-ban-ca__content-area {
    padding: 20px 15px;
  }
  .page-ban-ca__main-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .page-ban-ca__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .page-ban-ca__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .page-ban-ca__btn-primary,
  .page-ban-ca__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-ban-ca__section-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .page-ban-ca__section-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  /* Módul 1: Tính Năng Nổi Bật */
  .page-ban-ca__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-ban-ca__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }
  .page-ban-ca__feature-title {
    font-size: 1.3rem;
  }
  .page-ban-ca__feature-text {
    font-size: 0.95rem;
  }

  /* Tab Game Types */
  .page-ban-ca__tab-nav {
    flex-direction: column;
    gap: 5px;
    border-bottom: none;
  }
  .page-ban-ca__tab-button {
    padding: 12px 15px;
    font-size: 1rem;
    border-bottom: 2px solid #D6E2FF;
  }
  .page-ban-ca__tab-button.is-active {
    border-bottom-color: #2F6BFF;
  }
  .page-ban-ca__game-panel-inner {
    flex-direction: column;
    padding: 20px;
  }
  .page-ban-ca__game-image {
    min-width: unset;
    margin-bottom: 20px;
  }
  .page-ban-ca__game-title {
    font-size: 1.5rem;
  }
  .page-ban-ca__game-text {
    font-size: 0.95rem;
  }

  /* Hướng Dẫn Chơi */
  .page-ban-ca__guide-step-item,
  .page-ban-ca__guide-step-item:nth-child(even) {
    flex-direction: column;
    padding: 20px;
  }
  .page-ban-ca__step-icon {
    min-width: unset;
    margin-bottom: 20px;
  }
  .page-ban-ca__step-icon img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-ban-ca__step-title {
    font-size: 1.4rem;
  }
  .page-ban-ca__step-text {
    font-size: 0.95rem;
  }

  /* Bí Quyết Thắng Lớn */
  .page-ban-ca__tips-list {
    margin-top: 20px;
  }
  .page-ban-ca__tips-list li {
    font-size: 1rem;
    padding: 15px;
    gap: 10px;
  }
  .page-ban-ca__list-icon {
    font-size: 1.2rem;
  }

  /* Ưu Đãi Hấp Dẫn */
  .page-ban-ca__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-ban-ca__promo-card {
    padding: 20px;
  }
  .page-ban-ca__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-ban-ca__promo-title {
    font-size: 1.3rem;
  }
  .page-ban-ca__promo-text {
    font-size: 0.95rem;
  }

  /* Câu Hỏi Thường Gặp */
  .page-ban-ca__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-ban-ca__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }
  .page-ban-ca__faq-toggle {
    font-size: 1.5rem;
  }

  /* General Image & Container Adaptations */
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-ban-ca__hero-side-image, .page-ban-ca__game-image, .page-ban-ca__promo-image {
    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__hero-container,
  .page-ban-ca__content-area,
  .page-ban-ca__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-ban-ca__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}