/* style/ban-ca.css */
.page-ban-ca {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text for dark background */
  background-color: #0A2E36; /* Primary dark background */
  line-height: 1.6;
}

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

.page-ban-ca__hero-section {
  background: linear-gradient(135deg, #0A2E36 0%, #1A4D5C 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #E74C3C;
}

.page-ban-ca__hero-title {
  font-size: 3.5em;
  color: #F39C12; /* Gold for emphasis */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-ban-ca__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-ban-ca__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-ban-ca__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-ban-ca__btn--primary {
  background-color: #E74C3C; /* Secondary red */
  color: #FFFFFF;
}

.page-ban-ca__btn--primary:hover {
  background-color: #C0392B;
  transform: translateY(-3px);
}

.page-ban-ca__btn--secondary {
  background-color: transparent;
  color: #F39C12; /* Gold for emphasis */
  border: 2px solid #F39C12;
}

.page-ban-ca__btn--secondary:hover {
  background-color: #F39C12;
  color: #0A2E36;
  transform: translateY(-3px);
}

.page-ban-ca__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-ban-ca__section-title {
  font-size: 2.5em;
  color: #F39C12; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-ban-ca__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E74C3C;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-ban-ca__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 60px;
  color: #E0E0E0;
}

.page-ban-ca__about-game-section, 
.page-ban-ca__gameplay-features, 
.page-ban-ca__strategy-guide, 
.page-ban-ca__promo-section, 
.page-ban-ca__registration-guide, 
.page-ban-ca__faq-section, 
.page-ban-ca__cta-section {
  padding: 80px 0;
}

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

.page-ban-ca__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-ban-ca__text-content {
  flex: 1;
  color: #E0E0E0;
}

.page-ban-ca__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-ban-ca__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-ban-ca__list-item-title {
  color: #F39C12;
}

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

.page-ban-ca__feature-list li {
  background-color: #1A4D5C;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-ban-ca__feature-list li::before {
  content: '✔';
  color: #F39C12;
  font-size: 1.2em;
  font-weight: bold;
}

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

.page-ban-ca__feature-card {
  background-color: #1A4D5C;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-ban-ca__feature-card:hover {
  transform: translateY(-8px);
}

.page-ban-ca__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #0A2E36;
  padding: 10px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-ban-ca__card-title {
  font-size: 1.5em;
  color: #F39C12;
  margin-bottom: 15px;
}

.page-ban-ca__strategy-list {
  list-style: decimal;
  padding-left: 20px;
  color: #E0E0E0;
  margin-top: 30px;
}

.page-ban-ca__strategy-list li {
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 3px solid #E74C3C;
}

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

.page-ban-ca__promo-card {
  background-color: #1A4D5C;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid #E74C3C;
}

.page-ban-ca__promo-card .page-ban-ca__card-title {
  font-size: 1.6em;
  margin-bottom: 20px;
  color: #F39C12;
}

.page-ban-ca__sub-title {
  font-size: 1.8em;
  color: #F39C12;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-ban-ca__faq-items {
  margin-top: 50px;
}

.page-ban-ca__faq-item {
  background-color: #1A4D5C;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-ban-ca__faq-question {
  font-size: 1.3em;
  color: #F39C12;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-ban-ca__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #E74C3C;
  transition: transform 0.3s ease;
}

.page-ban-ca__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-ban-ca__faq-answer {
  font-size: 1.05em;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-ban-ca__faq-answer.active {
  max-height: 200px; /* Adjust based on expected content length */
  margin-top: 15px;
}

.page-ban-ca__cta-section {
  background-color: #0A2E36;
  padding: 80px 0;
  text-align: center;
  border-top: 5px solid #E74C3C;
}

.page-ban-ca__cta-title {
  font-size: 3em;
  color: #F39C12;
  margin-bottom: 20px;
}

.page-ban-ca__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0;
}

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

.page-ban-ca__highlight {
  color: #F39C12; /* Gold for highlighting keywords */
  font-weight: bold;
}

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

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

  .page-ban-ca__content-grid {
    flex-direction: column;
  }

  .page-ban-ca__content-grid--reverse {
    flex-direction: column;
  }

  .page-ban-ca__image-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-ban-ca__hero-title {
    font-size: 2.2em;
  }

  .page-ban-ca__hero-description {
    font-size: 1.1em;
  }

  .page-ban-ca__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

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

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

  .page-ban-ca__features-grid, .page-ban-ca__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-ban-ca__cta-title {
    font-size: 2.5em;
  }

  .page-ban-ca__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-ban-ca__hero-title {
    font-size: 1.8em;
  }

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

  .page-ban-ca__cta-title {
    font-size: 2em;
  }

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