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

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

.page-ban-ca__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

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

.page-ban-ca__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-ban-ca__btn-secondary {
  background: #ffffff; /* Card B G */
  color: #2F6BFF; /* Primary Color */
  border: 2px solid #2F6BFF;
}

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

/* HERO Section */
.page-ban-ca__hero-section {
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  background-color: #F4F7FB; /* Background */
}

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

.page-ban-ca__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: #1F2D3D; /* Text Main */
}

.page-ban-ca__hero-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 */
  font-weight: bold;
  color: #2F6BFF; /* Primary Color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-ban-ca__hero-description {
  font-size: 1.15em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.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(47, 107, 255, 0.2);
}

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

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

.page-ban-ca__feature-item {
  background: #F4F7FB; /* Background */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px 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: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #D6E2FF; /* Border */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px #A5C4FF; /* Glow */
}

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

.page-ban-ca__feature-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #2F6BFF; /* Primary Color */
  margin-bottom: 10px;
}

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

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

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

.page-ban-ca__game-card {
  background: #ffffff; /* Card B G */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

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

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

.page-ban-ca__game-card-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #2F6BFF; /* Primary Color */
  padding: 15px 20px 5px;
}

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

.page-ban-ca__game-card-button {
  margin: 0 20px 20px;
  padding: 10px 15px;
  font-size: 1em;
}

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

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

.page-ban-ca__guide-step {
  text-align: center;
  background: #F4F7FB; /* Background */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.page-ban-ca__guide-step-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #2F6BFF; /* Primary Color */
  margin-bottom: 10px;
}

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

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

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

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

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

.page-ban-ca__tip-item {
  background: #ffffff; /* Card B G */
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.page-ban-ca__tip-item:last-child {
  margin-bottom: 0;
}

.page-ban-ca__tip-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-ban-ca__tip-text {
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
  line-height: 1.5;
}

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

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

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

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

.page-ban-ca__faq-item {
  background: #F4F7FB; /* Background */
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #000000; /* Custom Color_1776249996415 */
  cursor: pointer;
  background-color: #D6E2FF; /* Border as background for summary */
  border-radius: 10px;
  list-style: none;
}

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

.page-ban-ca__faq-item[open] .page-ban-ca__faq-question {
  background-color: #2F6BFF; /* Primary Color */
  color: #ffffff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-ban-ca__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  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: 1em;
  color: #1F2D3D; /* Text Main */
  line-height: 1.6;
  background-color: #F4F7FB; /* Background */
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* CTA Banner */
.page-ban-ca__cta-banner {
  background: linear-gradient(135deg, #2F6BFF, #6FA3FF);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-ban-ca__cta-banner-content {
  max-width: 900px;
}

.page-ban-ca__cta-banner-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

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

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

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .page-ban-ca__hero-title {
    font-size: clamp(2em, 5vw, 3em);
  }

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

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

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

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

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

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

  .page-ban-ca__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-ban-ca__btn-primary,
  .page-ban-ca__btn-secondary {
    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;
  }

  /* Intro Section Mobile (Circular Images) */
  .page-ban-ca__intro-section {
    padding: 40px 0;
  }

  .page-ban-ca__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-ban-ca__icon-box-media {
    width: 120px;
    height: 120px;
    border: 3px solid #D6E2FF;
    box-shadow: 0 0 0 4px #A5C4FF;
  }

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

  /* Popular Games Section Mobile */
  .page-ban-ca__popular-games-section {
    padding: 40px 0;
  }

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

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

  /* Guide Section Mobile */
  .page-ban-ca__guide-section {
    padding: 40px 0;
  }

  .page-ban-ca__guide-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  /* Tips Section Mobile */
  .page-ban-ca__tips-section {
    padding: 40px 0;
  }

  .page-ban-ca__tips-content {
    flex-direction: column-reverse; /* Image above text */
    gap: 30px;
  }

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

  /* FAQ Section Mobile */
  .page-ban-ca__faq-section {
    padding: 40px 0;
  }

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

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

  /* CTA Banner Mobile */
  .page-ban-ca__cta-banner {
    padding: 50px 0;
  }

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

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

  /* General content and image handling for mobile */
  .page-ban-ca__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !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;
  }
}