.page-ban-ca {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-ban-ca .content-padding {
  padding: 60px 20px;
}

.page-ban-ca .bg-light {
  background-color: #f0f2f5;
}

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

.page-ban-ca .section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.page-ban-ca .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-ban-ca h1 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-ban-ca h2 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.page-ban-ca h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-ban-ca h4 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-ban-ca p {
  margin-bottom: 15px;
  color: #555555;
}

.page-ban-ca a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-ban-ca a:hover {
  color: var(--secondary-color);
}

.page-ban-ca .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-ban-ca .cta-button:hover {
  background: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-ban-ca .button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-ban-ca .button:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-ban-ca .button.small {
  padding: 8px 20px;
  font-size: 14px;
}

/* Hero Section */
.page-ban-ca .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a7c 100%); /* Dark blue gradient */
  color: #ffffff;
  overflow: hidden;
}

.page-ban-ca .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-ban-ca .hero-image {
  width: 100%;
  max-width: 1000px; /* Adjust max-width for visual balance */
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-ban-ca .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

/* Intro Section */
.page-ban-ca .intro-section p {
  text-align: center;
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 15px auto;
}

/* Features Section */
.page-ban-ca .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-ban-ca .feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  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 20px rgba(0, 0, 0, 0.15);
}

.page-ban-ca .feature-item h3 {
  color: var(--primary-color);
  font-size: 22px;
  margin-bottom: 15px;
}

.page-ban-ca .feature-item p {
  font-size: 16px;
  color: #666666;
}

/* Games Showcase */
.page-ban-ca .game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-ban-ca .game-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ban-ca .game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-ban-ca .game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eeeeee;
}

.page-ban-ca .game-card h3 {
  font-size: 20px;
  margin: 15px 15px 10px 15px;
  color: var(--primary-color);
}

.page-ban-ca .game-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-ban-ca .game-card h3 a:hover {
  color: var(--secondary-color);
}

.page-ban-ca .game-card p {
  font-size: 15px;
  color: #666666;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-ban-ca .game-card .button {
  margin-bottom: 20px;
}

/* Guide Section */
.page-ban-ca .guide-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-ban-ca .step-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-ban-ca .step-item h4 {
  color: var(--primary-color);
  font-size: 22px;
  margin-bottom: 15px;
}

.page-ban-ca .step-item ul {
  list-style: disc inside;
  margin-left: 20px;
  color: #555555;
}

.page-ban-ca .step-item ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.page-ban-ca .strategy-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Promotions Section */
.page-ban-ca .promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-ban-ca .promo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ban-ca .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-ban-ca .promo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 15px;
}

.page-ban-ca .promo-card h4 {
  font-size: 20px;
  color: var(--primary-color);
  margin: 0 15px 10px 15px;
}

.page-ban-ca .promo-card p {
  font-size: 15px;
  color: #666666;
  padding: 0 15px;
  margin-bottom: 20px;
}

/* Support Section */
.page-ban-ca .support-section p {
  text-align: center;
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 15px auto;
}

/* FAQ Section */
.page-ban-ca .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-ban-ca .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #ffffff;
}

.page-ban-ca .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-ban-ca .faq-question:hover {
  background: #f5f5f5;
}

.page-ban-ca .faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: var(--primary-color);
}

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

.page-ban-ca .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
}

.page-ban-ca .faq-answer p {
  padding-bottom: 15px;
  margin-top: 0;
  font-size: 16px;
  color: #555555;
}

.page-ban-ca .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px 25px;
}

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

/* Conclusion Section */
.page-ban-ca .conclusion-section p {
  text-align: center;
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 15px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-ban-ca .section-title {
    font-size: 30px;
  }

  .page-ban-ca h1 {
    font-size: 38px;
  }

  .page-ban-ca h2 {
    font-size: 28px;
  }

  .page-ban-ca h3 {
    font-size: 22px;
  }

  .page-ban-ca .feature-grid, .page-ban-ca .game-cards, .page-ban-ca .promo-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-ban-ca .content-padding {
    padding: 40px 15px;
  }

  .page-ban-ca .hero-section {
    padding: 60px 15px;
  }

  .page-ban-ca .hero-image {
    margin-bottom: 30px;
    border-radius: 8px;
  }

  .page-ban-ca h1 {
    font-size: 32px;
  }

  .page-ban-ca h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .page-ban-ca .section-title {
    font-size: 28px;
  }

  .page-ban-ca .cta-button {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 20px;
  }

  .page-ban-ca .feature-grid, .page-ban-ca .game-cards, .page-ban-ca .promo-cards {
    grid-template-columns: 1fr;
  }

  .page-ban-ca .faq-question {
    padding: 15px 20px;
  }

  .page-ban-ca .faq-question h3 {
    font-size: 16px;
  }

  .page-ban-ca .faq-toggle {
    font-size: 20px;
  }

  .page-ban-ca .faq-answer {
    padding: 0 20px;
  }

  .page-ban-ca .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-ban-ca .section-title {
    font-size: 24px;
  }

  .page-ban-ca h1 {
    font-size: 28px;
  }

  .page-ban-ca h2 {
    font-size: 24px;
  }

  .page-ban-ca .hero-section {
    padding: 40px 10px;
  }

  .page-ban-ca .cta-button {
    width: 100%;
    max-width: 280px;
  }

  .page-ban-ca .game-card img, .page-ban-ca .promo-card img {
    height: 150px;
  }
}