/* style/ban-ca.css */
:root {
  --page-ban-ca-primary-color: #1A202C;
  --page-ban-ca-secondary-color: #FFD700;
  --page-ban-ca-text-light: #F0F2F5;
  --page-ban-ca-text-dark: #1A202C;
  --page-ban-ca-background-dark: #2D3748;
  --page-ban-ca-background-light: #F7FAFC;
  --page-ban-ca-accent-dark: #C2A500;
}

.page-ban-ca {
  font-family: 'Arial', sans-serif;
  color: var(--page-ban-ca-text-light);
  background-color: var(--page-ban-ca-background-dark);
  line-height: 1.6;
}

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

.page-ban-ca__section {
  padding: 60px 0;
  text-align: center;
}

.page-ban-ca__section:nth-of-type(even) {
  background-color: var(--page-ban-ca-background-dark);
}

.page-ban-ca__section-title {
  font-size: 38px;
  color: var(--page-ban-ca-secondary-color);
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-ban-ca__paragraph {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--page-ban-ca-text-light);
  text-align: left;
}

.page-ban-ca__paragraph a {
  color: var(--page-ban-ca-secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-ban-ca__paragraph a:hover {
  text-decoration: underline;
  color: var(--page-ban-ca-accent-dark);
}

.page-ban-ca__cta-button {
  display: inline-block;
  background: var(--page-ban-ca-secondary-color);
  color: var(--page-ban-ca-text-dark);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-ban-ca__cta-button:hover {
  background: var(--page-ban-ca-accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-ban-ca__cta-button--small {
  font-size: 16px;
  padding: 12px 25px;
}

.page-ban-ca__cta-button--large {
  font-size: 22px;
  padding: 18px 40px;
}

/* Hero Banner */
.page-ban-ca__hero-banner {
  background: linear-gradient(135deg, var(--page-ban-ca-primary-color) 0%, #3a475a 100%);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--page-ban-ca-text-light);
}

.page-ban-ca__hero-banner .page-ban-ca__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-ban-ca__hero-title {
  font-size: 52px;
  color: var(--page-ban-ca-secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-ban-ca__hero-description {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--page-ban-ca-text-light);
}

.page-ban-ca__hero-description a {
  color: var(--page-ban-ca-secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-ban-ca__hero-description a:hover {
  text-decoration: underline;
  color: var(--page-ban-ca-accent-dark);
}

.page-ban-ca__hero-image-wrapper {
  width: 100%;
  max-width: 900px;
  margin-top: 30px;
}

.page-ban-ca__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

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

.page-ban-ca__feature-item {
  background-color: var(--page-ban-ca-primary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ban-ca__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-ban-ca__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-ban-ca__feature-title {
  font-size: 24px;
  color: var(--page-ban-ca-secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-ban-ca__feature-text {
  font-size: 16px;
  color: var(--page-ban-ca-text-light);
  text-align: center;
}

.page-ban-ca__feature-text a {
  color: var(--page-ban-ca-secondary-color);
  text-decoration: none;
}

.page-ban-ca__feature-text a:hover {
  text-decoration: underline;
  color: var(--page-ban-ca-accent-dark);
}

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

.page-ban-ca__game-card {
  background-color: var(--page-ban-ca-primary-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

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

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

.page-ban-ca__game-title {
  font-size: 22px;
  color: var(--page-ban-ca-secondary-color);
  margin: 20px 20px 10px 20px;
  font-weight: bold;
}

.page-ban-ca__game-title a {
  color: var(--page-ban-ca-secondary-color);
  text-decoration: none;
}

.page-ban-ca__game-title a:hover {
  text-decoration: underline;
  color: var(--page-ban-ca-accent-dark);
}

.page-ban-ca__game-description {
  font-size: 16px;
  color: var(--page-ban-ca-text-light);
  padding: 0 20px 20px 20px;
}

/* Guide List & Promo List */
.page-ban-ca__guide-list, .page-ban-ca__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-ban-ca__guide-list li, .page-ban-ca__promo-list li {
  background-color: var(--page-ban-ca-primary-color);
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-ban-ca__list-title {
  font-size: 22px;
  color: var(--page-ban-ca-secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-ban-ca__list-title a {
  color: var(--page-ban-ca-secondary-color);
  text-decoration: none;
}

.page-ban-ca__list-title a:hover {
  text-decoration: underline;
  color: var(--page-ban-ca-accent-dark);
}

.page-ban-ca__guide-list p, .page-ban-ca__promo-list p {
  font-size: 16px;
  color: var(--page-ban-ca-text-light);
}

.page-ban-ca__guide-list p a, .page-ban-ca__promo-list p a {
  color: var(--page-ban-ca-secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-ban-ca__guide-list p a:hover, .page-ban-ca__promo-list p a:hover {
  text-decoration: underline;
  color: var(--page-ban-ca-accent-dark);
}

/* Strategies Section */
.page-ban-ca__image--full-width {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-ban-ca__bullet-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-ban-ca__bullet-list li {
  background-color: var(--page-ban-ca-primary-color);
  margin-bottom: 15px;
  padding: 25px;
  border-left: 5px solid var(--page-ban-ca-secondary-color);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-ban-ca__bullet-list p {
  font-size: 16px;
  color: var(--page-ban-ca-text-light);
}

.page-ban-ca__bullet-list p a {
  color: var(--page-ban-ca-secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-ban-ca__bullet-list p a:hover {
  text-decoration: underline;
  color: var(--page-ban-ca-accent-dark);
}

/* Promotions Section */
.page-ban-ca__image--center {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 30px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* FAQ Section */
.page-ban-ca__faq .faq-item {
  margin-bottom: 15px;
  background-color: var(--page-ban-ca-primary-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.page-ban-ca__faq .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: var(--page-ban-ca-primary-color);
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.page-ban-ca__faq .faq-question:hover {
  background-color: #2a3340; /* Slightly lighter primary for hover */
}

.page-ban-ca__faq .faq-question h3 {
  margin: 0;
  font-size: 20px;
  color: var(--page-ban-ca-secondary-color);
  font-weight: bold;
}

.page-ban-ca__faq .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--page-ban-ca-secondary-color);
  transition: transform 0.3s ease;
}

.page-ban-ca__faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  color: var(--page-ban-ca-text-light);
  background-color: #2D3748; /* Darker background for answer */
  border-radius: 0 0 8px 8px;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

.page-ban-ca__faq .faq-answer p {
  margin: 0;
  padding: 15px 0;
  font-size: 16px;
}

.page-ban-ca__faq .faq-answer p a {
  color: var(--page-ban-ca-secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-ban-ca__faq .faq-answer p a:hover {
  text-decoration: underline;
  color: var(--page-ban-ca-accent-dark);
}

.page-ban-ca__faq .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 20px;
}

.page-ban-ca__faq .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-ban-ca__section-title {
    font-size: 32px;
  }
  .page-ban-ca__hero-title {
    font-size: 44px;
  }
  .page-ban-ca__hero-description {
    font-size: 18px;
  }
  .page-ban-ca__feature-item, .page-ban-ca__game-card {
    padding: 25px;
  }
  .page-ban-ca__feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-ban-ca__feature-title {
    font-size: 20px;
  }
  .page-ban-ca__game-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .page-ban-ca__section {
    padding: 40px 0;
  }
  .page-ban-ca__section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .page-ban-ca__hero-banner {
    padding: 60px 0;
  }
  .page-ban-ca__hero-title {
    font-size: 36px;
  }
  .page-ban-ca__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-ban-ca__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-ban-ca__feature-grid, .page-ban-ca__game-cards {
    grid-template-columns: 1fr;
  }
  .page-ban-ca__feature-item, .page-ban-ca__game-card {
    padding: 20px;
  }
  .page-ban-ca__game-image {
    height: 180px;
  }
  .page-ban-ca__guide-list li, .page-ban-ca__promo-list li, .page-ban-ca__bullet-list li {
    padding: 20px;
  }
  .page-ban-ca__list-title {
    font-size: 18px;
  }
  .page-ban-ca__paragraph {
    font-size: 16px;
  }
  .page-ban-ca__faq .faq-question {
    padding: 15px;
  }
  .page-ban-ca__faq .faq-question h3 {
    font-size: 18px;
  }
  .page-ban-ca__faq .faq-toggle {
    font-size: 20px;
  }
  .page-ban-ca__faq .faq-answer {
    padding: 0 15px;
  }
  .page-ban-ca__faq .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-ban-ca__section-title {
    font-size: 24px;
  }
  .page-ban-ca__hero-title {
    font-size: 30px;
  }
  .page-ban-ca__hero-description {
    font-size: 15px;
  }
  .page-ban-ca__cta-button {
    font-size: 15px;
    padding: 10px 20px;
  }
  .page-ban-ca__game-image {
    height: 150px;
  }
  .page-ban-ca__list-title {
    font-size: 17px;
  }
  .page-ban-ca__paragraph {
    font-size: 15px;
  }
  .page-ban-ca__faq .faq-question h3 {
    font-size: 16px;
  }
  .page-ban-ca__faq .faq-toggle {
    font-size: 18px;
  }
}