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

.page-ban-ca__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
}

.page-ban-ca__section-title {
  font-size: 32px;
  font-weight: 700;
  color: #E53935;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-ban-ca__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-ban-ca__dark-bg {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
}

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

.page-ban-ca__background {
  background-color: #F5F7FA;
}

.page-ban-ca__title-white {
  color: #ffffff;
}

.page-ban-ca__text-white p, .page-ban-ca__text-white li, .page-ban-ca__text-white h3 {
  color: #ffffff;
}

.page-ban-ca__link-white {
  color: #ffffff;
  text-decoration: underline;
}
.page-ban-ca__link-white:hover {
  color: #f0f0f0;
}

/* Hero Section */
.page-ban-ca__hero-section {
  position: relative;
  padding-top: 10px; /* Assuming body padding-top is handled by shared.css */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.page-ban-ca__hero-image {
  width: 100%;
  height: 675px; /* Aspect ratio 16:9 for 1200x675 */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-ban-ca__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Desktop: cover to fill space */
  display: block;
}

.page-ban-ca__hero-content {
  padding: 40px 15px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly with image for visual appeal */
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.page-ban-ca__main-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-ban-ca__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-ban-ca__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  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: 2px solid transparent;
}

.page-ban-ca__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(229, 57, 53, 0.4);
}

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

.page-ban-ca__btn-secondary:hover {
  background: #E53935;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(229, 57, 53, 0.4);
}

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

.page-ban-ca__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-ban-ca__content-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

.page-ban-ca__text-block {
  flex: 1;
  font-size: 17px;
}

.page-ban-ca__text-block p {
  margin-bottom: 15px;
}

.page-ban-ca__text-block strong {
  color: #E53935;
}

.page-ban-ca__image-block {
  flex: 1;
  min-width: 200px;
}

.page-ban-ca__image-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

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

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

.page-ban-ca__feature-card {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #E0E0E0;
}

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

.page-ban-ca__feature-card img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-ban-ca__feature-card .page-ban-ca__card-title {
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 15px;
}

.page-ban-ca__feature-card p {
  font-size: 16px;
  color: #555555;
}

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

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

.page-ban-ca__game-card {
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #E0E0E0;
}

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

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

.page-ban-ca__game-card .page-ban-ca__card-title {
  font-size: 22px;
  font-weight: 600;
  color: #E53935;
  margin: 20px 20px 10px;
}

.page-ban-ca__game-card p {
  font-size: 16px;
  color: #555555;
  padding: 0 20px 15px;
}

.page-ban-ca__card-button {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

.page-ban-ca__game-trial-frame {
  border: none;
  width: 100%;
  height: 350px;
  display: block;
  background-color: #f0f0f0;
  margin-top: 15px;
}

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

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

.page-ban-ca__guide-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-ban-ca__guide-steps li {
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-ban-ca__guide-steps li h3 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-ban-ca__guide-steps li p {
  font-size: 16px;
  color: #f0f0f0;
}

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

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

.page-ban-ca__promo-card {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #E0E0E0;
}

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

.page-ban-ca__promo-card img {
  width: 100%;
  height: 200px; /* Consistent height for promo images */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
}

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

.page-ban-ca__promo-card p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
}

.page-ban-ca__view-all-promos {
  margin-top: 40px;
}

/* Why Choose Section */
.page-ban-ca__why-choose-section {
  padding: 60px 0;
}

.page-ban-ca__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-ban-ca__benefits-list li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}

.page-ban-ca__benefits-list li:last-child {
  margin-bottom: 0;
}

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

.page-ban-ca__benefits-list li h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.page-ban-ca__benefits-list li p {
  font-size: 16px;
  color: #f0f0f0;
}

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

details.page-ban-ca__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #E0E0E0;
  overflow: hidden;
  background: #FFFFFF;
}

details.page-ban-ca__faq-item summary.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

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

details.page-ban-ca__faq-item summary.page-ban-ca__faq-question:hover {
  background: #f5f5f5;
}

.page-ban-ca__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}

.page-ban-ca__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-ban-ca__faq-item .page-ban-ca__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-ban-ca__faq-answer p {
  color: #555555;
}

/* 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__main-title {
    font-size: 42px;
  }
  .page-ban-ca__hero-description {
    font-size: 18px;
  }
  .page-ban-ca__section-title {
    font-size: 28px;
  }
  .page-ban-ca__section-description {
    font-size: 16px;
  }
  .page-ban-ca__hero-image {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .page-ban-ca__hero-section {
    padding-top: 10px;
  }
  .page-ban-ca__hero-image {
    height: 300px;
  }
  .page-ban-ca__hero-image img {
    object-fit: contain !important; /* Mobile: contain to prevent cropping */
    aspect-ratio: unset !important; /* Remove aspect ratio constraint */
    width: 100% !important;
    height: 100% !important;
  }
  .page-ban-ca__hero-content {
    padding: 30px 15px;
    margin-top: -50px;
  }
  .page-ban-ca__main-title {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 15px;
  }
  .page-ban-ca__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-ban-ca__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .page-ban-ca__btn-primary,
  .page-ban-ca__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-ban-ca__section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .page-ban-ca__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-ban-ca__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page-ban-ca__content-wrapper:nth-child(even) {
    flex-direction: column;
  }
  .page-ban-ca__text-block {
    font-size: 15px;
  }
  .page-ban-ca__image-block {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-ban-ca__image-block img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-ban-ca__feature-grid, .page-ban-ca__game-list, .page-ban-ca__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

  .page-ban-ca__game-card img {
    height: 200px;
  }
  .page-ban-ca__game-card .page-ban-ca__card-title {
    font-size: 20px;
    margin: 15px 15px 8px;
  }
  .page-ban-ca__game-card p {
    font-size: 15px;
    padding: 0 15px 10px;
  }
  .page-ban-ca__card-button {
    margin: 0 15px 15px;
    width: calc(100% - 30px);
  }
  .page-ban-ca__game-trial-frame {
    height: 250px;
  }

  .page-ban-ca__guide-steps li h3 {
    font-size: 20px;
  }
  .page-ban-ca__guide-steps li p {
    font-size: 15px;
  }

  .page-ban-ca__promo-card img {
    
  }
  .page-ban-ca__promo-card .page-ban-ca__card-title {
    font-size: 20px;
  }
  .page-ban-ca__promo-card p {
    font-size: 15px;
  }

  .page-ban-ca__benefits-list li {
    padding-left: 25px;
  }
  .page-ban-ca__benefits-list li h3 {
    font-size: 18px;
  }
  .page-ban-ca__benefits-list li p {
    font-size: 15px;
  }

  details.page-ban-ca__faq-item summary.page-ban-ca__faq-question { padding: 15px; }
  .page-ban-ca__faq-qtext { font-size: 15px; }
  details.page-ban-ca__faq-item .page-ban-ca__faq-answer {
    padding: 0 15px 15px;
  }
  .page-ban-ca__faq-answer p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .page-ban-ca__main-title {
    font-size: clamp(24px, 10vw, 32px);
  }
  .page-ban-ca__hero-image {
    height: 250px;
  }
  .page-ban-ca__hero-content {
    margin-top: -30px;
    padding: 20px 10px;
  }
  .page-ban-ca__section-title {
    font-size: 22px;
  }
  .page-ban-ca__section-description {
    font-size: 14px;
  }
  .page-ban-ca__feature-grid, .page-ban-ca__game-list, .page-ban-ca__promo-grid {
    grid-template-columns: 1fr; /* Single column for very small screens */
  }
  .page-ban-ca__btn-primary, .page-ban-ca__btn-secondary {
    font-size: 15px;
  }
  .page-ban-ca__game-card img {
    
  }
  .page-ban-ca__game-trial-frame {
    height: 220px;
  }
  .page-ban-ca__promo-card img {
    
  }
}