/* style/ban-ca.css */
.page-ban-ca {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #05163D;
  line-height: 1.6;
}

.page-ban-ca .highlight {
  color: #FFD700;
}

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

.page-ban-ca__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-ban-ca__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-ban-ca__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-ban-ca__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-ban-ca__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-ban-ca__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

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

.page-ban-ca__cta-center {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

/* Hero Section */
.page-ban-ca__hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 0;
  background: linear-gradient(135deg, #0A2463 0%, #05163D 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-ban-ca__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:underwater,bubbles,light_rays]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-ban-ca__hero-content {
  flex: 1;
  padding-right: 40px;
  z-index: 1;
  max-width: 60%;
  margin-left: 10%;
}

.page-ban-ca__hero-title {
  font-size: 4.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-ban-ca__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
}

.page-ban-ca__hero-image {
  flex: 1;
  text-align: center;
  z-index: 1;
  max-width: 40%;
  margin-right: 5%;
}

.page-ban-ca__hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

/* Intro Section */
.page-ban-ca__intro {
  padding: 80px 0;
  background-color: #0A2463;
}

/* Features Section */
.page-ban-ca__features {
  padding: 80px 0;
  background-color: #05163D;
}

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

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

.page-ban-ca__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-ban-ca__feature-item img {
  max-width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.page-ban-ca__feature-item h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-ban-ca__feature-item p {
  font-size: 1em;
  color: #E0E0E0;
}

/* How to Play Section */
.page-ban-ca__how-to-play {
  padding: 80px 0;
  background-color: #0A2463;
}

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

.page-ban-ca__steps li {
  background-color: #05163D;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-ban-ca__step-icon {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #0A2463;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5em;
  font-weight: bold;
  margin: 0 auto 20px;
}

.page-ban-ca__steps h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-ban-ca__steps p {
  font-size: 1em;
  color: #E0E0E0;
}

/* Tips Section */
.page-ban-ca__tips {
  padding: 80px 0;
  background-color: #05163D;
}

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

.page-ban-ca__tip-item {
  background-color: #0A2463;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__tip-item h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-ban-ca__tip-item p {
  font-size: 1em;
  color: #E0E0E0;
}

/* Promotions Section */
.page-ban-ca__promotions {
  padding: 80px 0;
  background-color: #0A2463;
}

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

.page-ban-ca__promo-list li {
  background-color: #05163D;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-ban-ca__promo-list li::before {
  content: '⚡'; /* Unicode lightning bolt or similar icon */
  margin-right: 15px;
  color: #FFD700;
  font-size: 1.5em;
}

/* Why Choose Section */
.page-ban-ca__why-choose {
  padding: 80px 0;
  background-color: #05163D;
}

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

.page-ban-ca__why-item {
  background-color: #0A2463;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__why-item h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-ban-ca__why-item p {
  font-size: 1em;
  color: #E0E0E0;
}

/* FAQ Section */
.page-ban-ca__faq {
  padding: 80px 0;
  background-color: #0A2463;
}

.page-ban-ca__faq-item {
  background-color: #05163D;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-ban-ca__faq-item h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-ban-ca__faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-ban-ca__faq-item.active h3::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

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

.page-ban-ca__faq-item.active p {
  max-height: 200px; /* Adjust as needed */
  margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-ban-ca__hero {
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .page-ban-ca__hero-content {
    padding-right: 0;
    max-width: 90%;
    margin-left: 0;
    text-align: center;
  }

  .page-ban-ca__hero-title {
    font-size: 3.5em;
  }

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

  .page-ban-ca__hero-image {
    max-width: 80%;
    margin-top: 40px;
    margin-right: 0;
  }

  .page-ban-ca__hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .page-ban-ca__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-ban-ca__section-title {
    font-size: 2.2em;
    margin-bottom: 30px;
    padding-top: 40px;
  }

  .page-ban-ca__feature-item, .page-ban-ca__steps li, .page-ban-ca__tip-item, .page-ban-ca__why-item {
    padding: 25px;
  }

  .page-ban-ca__feature-item h3, .page-ban-ca__steps h3, .page-ban-ca__tip-item h3, .page-ban-ca__why-item h3 {
    font-size: 1.5em;
  }
}

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

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

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

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

  .page-ban-ca__promo-list li {
    font-size: 1em;
    padding: 15px;
  }
}