.page-ban-ca {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main color, matches dark body background #0A0A0A */
  background-color: #0A0A0A; /* Background color */
}

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

.page-ban-ca__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  color: #F2C14E; /* Main color */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-ban-ca__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #0A0A0A;
  overflow: hidden;
}

.page-ban-ca__hero-container {
  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%;
  max-width: 550px;
  text-align: left;
}

.page-ban-ca__hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #FFD36B; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  line-height: 1.1;
}

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

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

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

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

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

.page-ban-ca__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E; /* Border color */
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

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

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

.page-ban-ca__hero-side-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-ban-ca__intro-section {
  background-color: #0A0A0A;
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.page-ban-ca__feature-item {
  background-color: #111111; /* Card B G */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-ban-ca__icon-box-media {
  width: 180px;
  height: 180px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #F2C14E; /* Main color */
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

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

.page-ban-ca__feature-title {
  font-size: 24px;
  font-weight: 700;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-ban-ca__feature-text {
  font-size: 16px;
  color: #FFF6D6;
}

.page-ban-ca__games-section {
  background-color: #0A0A0A;
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.page-ban-ca__game-card {
  background-color: #111111; /* Card B G */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

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

.page-ban-ca__game-info {
  padding: 25px;
  text-align: center;
}

.page-ban-ca__game-title {
  font-size: 22px;
  font-weight: 700;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
}

.page-ban-ca__game-description {
  font-size: 16px;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-ban-ca__btn-play {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s ease;
}

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

.page-ban-ca__guide-section {
  background-color: #0A0A0A;
  padding-top: 60px;
  padding-bottom: 60px;
}

.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: #111111; /* Card B G */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-ban-ca__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #F2C14E; /* Main color */
  color: #0A0A0A;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-ban-ca__step-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-ban-ca__step-text {
  font-size: 16px;
  color: #FFF6D6;
}

.page-ban-ca__guide-cta {
  text-align: center;
  margin-top: 50px;
}

.page-ban-ca__promo-section {
  background-color: #0A0A0A;
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.page-ban-ca__promo-card {
  background-color: #111111; /* Card B G */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

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

.page-ban-ca__promo-info {
  padding: 25px;
  text-align: center;
}

.page-ban-ca__promo-title {
  font-size: 22px;
  font-weight: 700;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
}

.page-ban-ca__promo-text {
  font-size: 16px;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-ban-ca__btn-details {
  display: inline-block;
  padding: 10px 25px;
  background: #F2C14E; /* Main color */
  color: #0A0A0A;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s ease;
}

.page-ban-ca__btn-details:hover {
  background: #FFD36B; /* Auxiliary color */
}

.page-ban-ca__all-promo-cta {
  text-align: center;
  margin-top: 50px;
}

.page-ban-ca__faq-section {
  background-color: #0A0A0A;
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.page-ban-ca__faq-item {
  background-color: #111111; /* Card B G */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF6D6;
}

.page-ban-ca__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #F2C14E; /* Main color */
  position: relative;
}

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

.page-ban-ca__faq-qtext {
  flex-grow: 1;
}

.page-ban-ca__faq-toggle {
  width: 25px;
  height: 25px;
  background-color: #FFD36B; /* Auxiliary color */
  color: #0A0A0A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  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: 16px;
  color: #FFF6D6;
  line-height: 1.6;
}

.page-ban-ca__register-cta-section {
  background-color: #111111; /* Card B G */
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  border-top: 1px solid #3A2A12;
}

.page-ban-ca__register-cta-content {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* --- Mobile Responsive Styles (max-width: 768px) --- */
@media (max-width: 768px) {
  .page-ban-ca__container,
  .page-ban-ca__hero-container {
    padding: 20px 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

  .page-ban-ca__hero-content {
    text-align: center;
    flex: 1 1 100%;
    max-width: 100%;
  }

  .page-ban-ca__hero-title {
    font-size: clamp(30px, 8vw, 40px);
  }

  .page-ban-ca__hero-description {
    font-size: 16px;
  }

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

  .page-ban-ca__btn-primary,
  .page-ban-ca__btn-secondary,
  .page-ban-ca__btn-play,
  .page-ban-ca__btn-details {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-ban-ca__hero-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

  .page-ban-ca__section-title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 15px;
  }

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

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

  .page-ban-ca__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }

  .page-ban-ca__icon-box-media img {
    width: 100% !important;
    height: 100% !important;
  }

  .page-ban-ca__feature-title,
  .page-ban-ca__game-title,
  .page-ban-ca__step-title,
  .page-ban-ca__promo-title {
    font-size: 20px;
  }

  .page-ban-ca__feature-text,
  .page-ban-ca__game-description,
  .page-ban-ca__step-text,
  .page-ban-ca__promo-text {
    font-size: 15px;
  }

  .page-ban-ca__game-image,
  .page-ban-ca__promo-image {
    width: 100% !important;
    height: auto !important; /* Adjust height for content images */
    max-height: 180px; /* Optional: cap height for smaller screens */
    object-fit: cover;
  }

  .page-ban-ca__faq-item summary {
    padding: 15px 20px;
    font-size: 16px;
  }

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

  /* Ensure all images inside content sections are responsive */
  .page-ban-ca__intro-section img,
  .page-ban-ca__games-section img,
  .page-ban-ca__guide-section img,
  .page-ban-ca__promo-section img,
  .page-ban-ca__faq-section img,
  .page-ban-ca__register-cta-section img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Ensure all content containers are responsive */
  .page-ban-ca__intro-section,
  .page-ban-ca__games-section,
  .page-ban-ca__guide-section,
  .page-ban-ca__promo-section,
  .page-ban-ca__faq-section,
  .page-ban-ca__register-cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
}