.page-ban-ca__hero-section {
  padding-top: 10px;
  padding-bottom: 60px;
  background: #F5F7FA;
}

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

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

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

.page-ban-ca__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333333;
}

.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, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

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

.page-ban-ca__btn-secondary {
  background: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.page-ban-ca__side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: block;
}

.page-ban-ca__intro-section,
.page-ban-ca__features-section,
.page-ban-ca__how-to-play-section,
.page-ban-ca__tips-section,
.page-ban-ca__promo-section,
.page-ban-ca__faq-section,
.page-ban-ca__cta-final-section {
  padding: 60px 0;
}

.page-ban-ca__light-bg {
  background: #F5F7FA;
  color: #333333;
}

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

.page-ban-ca__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #E53935;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-ban-ca__dark-bg .page-ban-ca__section-title {
  color: #ffffff;
}

.page-ban-ca__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
}

.page-ban-ca__text-block {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333333;
}

.page-ban-ca__dark-bg .page-ban-ca__text-block {
  color: #f0f0f0;
}

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

.page-ban-ca__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

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

.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: #E53935;
  margin-bottom: 15px;
}

.page-ban-ca__feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}

.page-ban-ca__how-to-play-section {
  background: #E53935;
  color: #ffffff;
}

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

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

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

.page-ban-ca__guide-list li {
  background: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #FF5A4F;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
}

.page-ban-ca__guide-list li strong {
  color: #FF5A4F;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
}

.page-ban-ca__guide-list li p {
  color: #f0f0f0;
  margin-top: 5px;
  margin-bottom: 0;
}

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

.page-ban-ca__guide-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-ban-ca__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.page-ban-ca__card {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #E0E0E0;
  color: #333333;
}

.page-ban-ca__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #E53935;
  margin-bottom: 10px;
}

.page-ban-ca__card-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333333;
}

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

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

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

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

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

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

.page-ban-ca__promo-list li {
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-ban-ca__promo-list li::before {
  content: '✔';
  color: #FF5A4F;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

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

.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  list-style: none;
}

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

.page-ban-ca__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #E53935;
  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;
  line-height: 1.6;
  color: #555555;
  border-top: 1px solid #E0E0E0;
  margin-top: -1px; /* Overlap border to make it look continuous */
}

.page-ban-ca__faq-answer p {
  margin-top: 15px;
  margin-bottom: 0;
}

.page-ban-ca__cta-final-section .page-ban-ca__description {
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-ban-ca__center-text {
  text-align: center;
}

/* General image responsiveness for all images in content area */
.page-ban-ca img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

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

  .page-ban-ca__main-title {
    font-size: 2rem;
    text-align: center;
  }

  .page-ban-ca__description {
    font-size: 1rem;
    text-align: center;
  }

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

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

  .page-ban-ca__intro-section,
  .page-ban-ca__features-section,
  .page-ban-ca__how-to-play-section,
  .page-ban-ca__tips-section,
  .page-ban-ca__promo-section,
  .page-ban-ca__faq-section,
  .page-ban-ca__cta-final-section {
    padding: 40px 0;
  }

  .page-ban-ca__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-ban-ca__content-area {
    padding: 0 15px;
  }

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

  .page-ban-ca__icon-box-media {
    width: 120px;
    height: 120px;
    border-width: 3px;
    margin-bottom: 15px;
  }

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

  .page-ban-ca__guide-layout {
    flex-direction: column;
    gap: 30px;
  }

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

  .page-ban-ca__guide-list li {
    padding: 15px;
    font-size: 0.95rem;
  }

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

  .page-ban-ca__card {
    padding: 20px;
  }

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

  .page-ban-ca__center-button {
    margin-top: 30px;
  }

  .page-ban-ca__promo-grid {
    flex-direction: column-reverse; /* Image below content on mobile */
    gap: 30px;
  }

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

  .page-ban-ca__promo-list li {
    font-size: 0.95rem;
    padding-left: 20px;
  }

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

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

  .page-ban-ca__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }

  .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,
  .page-ban-ca__hero-container,
  .page-ban-ca__feature-item,
  .page-ban-ca__guide-layout,
  .page-ban-ca__promo-grid,
  .page-ban-ca__faq-list,
  .page-ban-ca__cta-final-section .page-ban-ca__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Desktop specific styles for content area images, ensuring minimum size */
.page-ban-ca__side-image,
.page-ban-ca__guide-image img,
.page-ban-ca__promo-image {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure icon-box-media img maintains square aspect ratio */
.page-ban-ca__icon-box-media img {
  min- /* Base size for desktop */
  min-
}

@media (max-width: 768px) {
  .page-ban-ca__icon-box-media {
    width: 120px !important;
    height: 120px !important;
  }
  .page-ban-ca__icon-box-media img {
    min-
    min-
  }
}