.page-ban-ca {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
}

.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: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #26A9E0;
  line-height: 1.2;
}

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

.page-ban-ca__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-ban-ca__cta-button--primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-ban-ca__cta-button--primary:hover {
  background-color: #1a8cc2;
  border-color: #1a8cc2;
}

.page-ban-ca__cta-button--secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-ban-ca__cta-button--secondary:hover {
  background-color: #f0f8ff;
  color: #1a8cc2;
  border-color: #1a8cc2;
}

.page-ban-ca__cta-button--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-ban-ca__dark-section {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-ban-ca__dark-section .page-ban-ca__section-title,
.page-ban-ca__dark-section .page-ban-ca__section-description,
.page-ban-ca__dark-section .page-ban-ca__feature-title,
.page-ban-ca__dark-section .page-ban-ca__feature-text {
  color: #FFFFFF;
}

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

.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 45%;
  min-width: 300px;
}

.page-ban-ca__hero-title {
  font-size: 3.2em;
  font-weight: 800;
  margin-bottom: 20px;
  color: #26A9E0;
  line-height: 1.1;
}

.page-ban-ca__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #555555;
}

.page-ban-ca__hero-image {
  flex: 1 1 45%;
  text-align: center;
}

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

.page-ban-ca__hero-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Intro Section (Features Grid) */
.page-ban-ca__intro-section {
  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 {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-ban-ca__icon-box-media {
  width: 240px;
  height: 240px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FFFFFF;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.3);
}

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

.page-ban-ca__feature-title {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.page-ban-ca__feature-text {
  font-size: 1em;
  color: #e0f2f7;
}

/* Game Showcase Section */
.page-ban-ca__game-showcase {
  padding: 60px 0;
}

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

.page-ban-ca__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-ban-ca__game-title {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #26A9E0;
  padding: 0 15px;
}

.page-ban-ca__game-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}

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

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

.page-ban-ca__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-ban-ca__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #26A9E0;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: 700;
  border: 4px solid #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__step-title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-ban-ca__step-text {
  font-size: 1em;
  color: #555555;
}

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

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

.page-ban-ca__tip-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding-bottom: 20px;
}

.page-ban-ca__tip-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}

.page-ban-ca__tip-title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #FFFFFF;
  padding: 0 15px;
}

.page-ban-ca__tip-text {
  font-size: 0.95em;
  color: #e0f2f7;
  padding: 0 15px;
}

/* Promo Section */
.page-ban-ca__promo-section {
  padding: 60px 0;
}

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

.page-ban-ca__promo-image {
  flex: 1 1 45%;
  min-width: 300px;
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: block;
}

.page-ban-ca__promo-text-block {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-ban-ca__promo-subtitle {
  font-size: 1.8em;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
}

.page-ban-ca__promo-text-block ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #555555;
  font-size: 1.05em;
}

.page-ban-ca__promo-text-block ul li {
  margin-bottom: 10px;
}

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

.page-ban-ca__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-ban-ca__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.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.5em;
  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;
  color: #e0f2f7;
}

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

/* Contact Section */
.page-ban-ca__contact-section {
  padding: 60px 0;
  text-align: center;
}

/* Conclusion Section */
.page-ban-ca__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

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

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

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

@media (max-width: 768px) {
  /* General Mobile Adaptations */
  .page-ban-ca {
    font-size: 16px;
    line-height: 1.6;
  }

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

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

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

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

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

  .page-ban-ca__hero-content {
    order: 2;
    text-align: center;
    min-width: unset;
  }

  .page-ban-ca__hero-image {
    order: 1;
    min-width: unset;
  }

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

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

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

  .page-ban-ca__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 15px !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Intro Section (Features Grid) */
  .page-ban-ca__intro-section {
    padding: 30px 0 !important;
  }

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

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

  .page-ban-ca__feature-title {
    font-size: 1.4em !important;
  }

  /* Game Showcase Section */
  .page-ban-ca__game-showcase {
    padding: 30px 0 !important;
  }

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

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

  /* Guide Section */
  .page-ban-ca__guide-section {
    padding: 30px 0 !important;
  }

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

  .page-ban-ca__step-item {
    padding: 50px 20px 20px !important;
  }

  .page-ban-ca__step-number {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.6em !important;
    top: -15px !important;
  }

  .page-ban-ca__step-title {
    font-size: 1.3em !important;
  }

  /* Tips Section */
  .page-ban-ca__tips-section {
    padding: 30px 0 !important;
  }

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

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

  /* Promo Section */
  .page-ban-ca__promo-section {
    padding: 30px 0 !important;
  }

  .page-ban-ca__promo-content {
    flex-direction: column;
    gap: 30px !important;
  }

  .page-ban-ca__promo-image {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-ban-ca__promo-subtitle {
    font-size: 1.5em !important;
  }

  .page-ban-ca__promo-text-block ul {
    margin-left: 15px !important;
    margin-bottom: 20px !important;
    font-size: 1em !important;
  }

  /* FAQ Section */
  .page-ban-ca__faq-section {
    padding: 30px 0 !important;
  }

  .page-ban-ca__faq-list {
    margin-top: 20px !important;
  }

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

  .page-ban-ca__faq-answer {
    padding: 0 20px 15px !important;
  }

  /* Contact Section */
  .page-ban-ca__contact-section {
    padding: 30px 0 !important;
  }

  /* Conclusion Section */
  .page-ban-ca__conclusion-section {
    padding: 30px 0 !important;
  }

  /* Universal Image Responsive Fix */
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Specific override for circular images to maintain aspect ratio */
  .page-ban-ca__icon-box-media img {
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Button containers mobile adaptation */
  .page-ban-ca__hero-cta-group,
  .page-ban-ca__button-group,
  .page-ban-ca__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .page-ban-ca__hero-cta-group {
    display: flex;
    flex-direction: column;
  }
}