.page-ban-ca {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

.page-ban-ca__hero-section {
  padding-top: 10px; /* Small top padding to respect shared header */
  padding-bottom: 60px;
  background-color: #0D0E12; /* Background */
}

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

.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: bold;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-ban-ca__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF3E6; /* Text Main */
}

.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: bold;
  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__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #ffffff;
  border: none;
}

.page-ban-ca__btn-primary:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #FFA53A 100%);
  transform: translateY(-2px);
}

.page-ban-ca__btn-secondary {
  background: transparent;
  color: #FFA53A; /* Auxiliary color */
  border: 2px solid #FFA53A;
}

.page-ban-ca__btn-secondary:hover {
  background-color: #FFA53A;
  color: #0D0E12;
  transform: translateY(-2px);
}

.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.3);
}

.page-ban-ca__intro-section,
.page-ban-ca__guide-section,
.page-ban-ca__popular-games-section,
.page-ban-ca__promo-section,
.page-ban-ca__faq-section,
.page-ban-ca__cta-final-section {
  padding: 60px 0;
  background-color: #0D0E12; /* Background */
}

.page-ban-ca__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  color: #FFF3E6; /* Text Main */
}

.page-ban-ca__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-ban-ca__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-ban-ca__icon-box {
  background-color: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C; /* Border */
}

.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 #FFA53A;
  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__icon-box-title {
  font-size: 1.5rem;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-ban-ca__icon-box-text {
  font-size: 1rem;
  color: #FFF3E6; /* Text Main */
}

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

.page-ban-ca__step-item {
  background-color: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-ban-ca__step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-ban-ca__step-title {
  font-size: 1.4rem;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-ban-ca__step-text {
  font-size: 1rem;
  color: #FFF3E6; /* Text Main */
}

.page-ban-ca__action-prompt {
  text-align: center;
  margin-top: 40px;
}

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

.page-ban-ca__game-card {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C; /* Border */
  display: flex;
  flex-direction: column;
  color: #FFF3E6;
}

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

.page-ban-ca__game-card-title {
  font-size: 1.5rem;
  color: #FFB04D; /* Glow */
  margin: 20px 20px 10px;
}

.page-ban-ca__game-card-title a {
  color: inherit;
  text-decoration: none;
}

.page-ban-ca__game-card-title a:hover {
  text-decoration: underline;
}

.page-ban-ca__game-card-description {
  font-size: 1rem;
  color: #FFF3E6; /* Text Main */
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-ban-ca__btn-play {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 20px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #ffffff;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-ban-ca__btn-play:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #FFA53A 100%);
}

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

.page-ban-ca__promo-item {
  background-color: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C; /* Border */
  display: flex;
  flex-direction: column;
  color: #FFF3E6;
}

.page-ban-ca__promo-title {
  font-size: 1.4rem;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-ban-ca__promo-description {
  font-size: 1rem;
  color: #FFF3E6; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-ban-ca__btn-read-more {
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  color: #FFA53A; /* Auxiliary color */
  border: 1px solid #FFA53A;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  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-read-more:hover {
  background-color: #FFA53A;
  color: #0D0E12;
}

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

.page-ban-ca__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF3E6;
}

.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFA53A; /* Auxiliary color */
  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.8rem;
  line-height: 1;
  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 20px 20px;
  font-size: 1rem;
  color: #FFF3E6; /* Text Main */
  line-height: 1.7;
}

.page-ban-ca__cta-final-section {
  text-align: center;
}

.page-ban-ca__final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* General image styling */
.page-ban-ca img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: none; /* Ensure no CSS filters are applied */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-ban-ca__hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .page-ban-ca__hero-content {
    text-align: center;
  }

  .page-ban-ca__cta-buttons {
    justify-content: center;
  }

  .page-ban-ca__features-grid,
  .page-ban-ca__guide-steps,
  .page-ban-ca__game-cards-grid,
  .page-ban-ca__promo-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

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

  .page-ban-ca__hero-container,
  .page-ban-ca__content-area {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-ban-ca__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-ban-ca__hero-description {
    font-size: 1rem;
  }

  .page-ban-ca__cta-buttons {
    flex-direction: column !important; /* Mobile: vertical stack */
    gap: 15px;
  }

  .page-ban-ca__btn-primary,
  .page-ban-ca__btn-secondary,
  .page-ban-ca a[class*="button"],
  .page-ban-ca a[class*="btn"] {
    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;
  }

  .page-ban-ca__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .page-ban-ca__text-block {
    font-size: 0.95rem;
  }

  .page-ban-ca__features-grid,
  .page-ban-ca__guide-steps,
  .page-ban-ca__game-cards-grid,
  .page-ban-ca__promo-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .page-ban-ca__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }

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

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

  .page-ban-ca__btn-play,
  .page-ban-ca__btn-read-more {
    width: calc(100% - 30px) !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
  }

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

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

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

  .page-ban-ca__final-cta-buttons {
    flex-direction: column !important;
    gap: 15px;
  }

  /* Universal image responsive for content area */
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* Card and container specific padding for mobile */
  .page-ban-ca__icon-box,
  .page-ban-ca__step-item,
  .page-ban-ca__game-card,
  .page-ban-ca__promo-item,
  .page-ban-ca__faq-item {
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .page-ban-ca__game-card-title,
  .page-ban-ca__game-card-description {
    padding-left: 15px;
    padding-right: 15px;
  }
}