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

.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: #ffffff;
}

.page-ban-ca h1,
.page-ban-ca h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-ban-ca h1 {
  font-size: 2.8em;
  color: #ffffff;
}

.page-ban-ca h2 {
  font-size: 2.2em;
}

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

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

.page-ban-ca strong {
  color: var(--primary-color);
}

.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);
  text-decoration: underline;
}

.page-ban-ca-cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--secondary-color);
  color: #000000;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-ban-ca-cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-ban-ca-cta-center {
  margin-top: 30px;
}

/* Hero Banner Section */
.page-ban-ca-hero-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, #004d99 100%);
  padding: 80px 0;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.page-ban-ca-hero-banner .page-ban-ca-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
}

.page-ban-ca-hero-content {
  margin-bottom: 40px;
}

.page-ban-ca-hero-content p {
  color: #e0e0e0;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-ban-ca-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Why Choose Section */
.page-ban-ca-why-choose {
  background-color: #ffffff;
}

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

.page-ban-ca-feature-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 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(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-ban-ca-feature-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

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

/* How to Play Section */
.page-ban-ca-how-to-play ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 40px;
}

.page-ban-ca-how-to-play ol li {
  text-align: left;
  margin-bottom: 30px;
  position: relative;
  padding-left: 70px;
}

.page-ban-ca-how-to-play ol li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-ban-ca-how-to-play ol li h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-ban-ca-how-to-play ol li p {
  color: #555555;
}

/* Promotions Section */
.page-ban-ca-promotions {
  background-color: #f0f4f7;
}

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

.page-ban-ca-promo-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ban-ca-promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.page-ban-ca-promo-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-ban-ca-promo-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-ban-ca-promo-item p {
  color: #666666;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-ban-ca-promo-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-ban-ca-promo-link:hover {
  background-color: #004d99;
  text-decoration: none;
}

/* Popular Games Section */
.page-ban-ca-popular-games {
  background-color: #ffffff;
}

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

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

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

.page-ban-ca-game-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-ban-ca-game-card h3 {
  padding: 15px 10px 0;
  margin-bottom: 5px;
}

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

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

.page-ban-ca-game-card p {
  padding: 0 15px 15px;
  color: #666666;
  font-size: 0.95em;
  min-height: 70px; /* Ensure consistent height for description */
}

.page-ban-ca-game-link {
  display: block;
  padding: 12px 0;
  background-color: var(--secondary-color);
  color: #000000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 0 0 10px 10px;
  transition: background-color 0.3s ease;
}

.page-ban-ca-game-link:hover {
  background-color: #e6b800;
  text-decoration: none;
}

/* Mobile Experience Section */
.page-ban-ca-mobile-experience {
  background-color: #f0f4f7;
}

.page-ban-ca-mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-ban-ca-mobile-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-ban-ca-mobile-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-ban-ca-mobile-text ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23FFCC00"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
  background-size: 24px;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #555555;
}

.page-ban-ca-mobile-image {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
}

.page-ban-ca-mobile-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-ban-ca-faq {
  background-color: #ffffff;
}

.page-ban-ca-faq .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fdfdfd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--primary-color);
  text-align: left;
  flex-grow: 1;
}

.faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

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

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px 25px;
  background: #f9f9f9;
  border-top: 1px solid #e0e0e0;
}

.faq-answer p {
  margin-bottom: 0;
  font-size: 1em;
  color: #555555;
  text-align: left;
}

/* Conclusion Section */
.page-ban-ca-conclusion {
  background: linear-gradient(135deg, #002244 0%, var(--primary-color) 100%);
  color: #ffffff;
  padding: 70px 0;
}

.page-ban-ca-conclusion h2 {
  color: var(--secondary-color);
  font-size: 2.5em;
}

.page-ban-ca-conclusion p {
  color: #e0e0e0;
  font-size: 1.2em;
  max-width: 800px;
  margin: 20px auto 40px auto;
}

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

.page-ban-ca-conclusion a:hover {
  color: #ffffff;
}

.page-ban-ca-final-cta {
  background-color: var(--secondary-color);
  color: #000000;
  border: 2px solid var(--secondary-color);
}

.page-ban-ca-final-cta:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  color: #000000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-ban-ca h1 {
    font-size: 2.5em;
  }
  .page-ban-ca h2 {
    font-size: 2em;
  }
  .page-ban-ca-hero-content p {
    font-size: 1.1em;
  }
  .page-ban-ca-feature-icon {
    width: 100px;
    height: 100px;
  }
  .page-ban-ca-game-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-ban-ca-section {
    padding: 40px 0;
  }
  .page-ban-ca h1 {
    font-size: 2em;
  }
  .page-ban-ca h2 {
    font-size: 1.8em;
  }
  .page-ban-ca h3 {
    font-size: 1.3em;
  }
  .page-ban-ca p {
    font-size: 1em;
  }
  .page-ban-ca-hero-banner .page-ban-ca-container {
    flex-direction: column-reverse;
  }
  .page-ban-ca-hero-content {
    margin-bottom: 20px;
  }
  .page-ban-ca-hero-image {
    margin-top: 30px;
  }
  .page-ban-ca-features-grid, .page-ban-ca-promo-grid, .page-ban-ca-games-list {
    grid-template-columns: 1fr;
  }
  .page-ban-ca-how-to-play ol li {
    padding-left: 60px;
  }
  .page-ban-ca-how-to-play ol li::before {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-ban-ca-mobile-content {
    flex-direction: column;
  }
  .page-ban-ca-mobile-text, .page-ban-ca-mobile-image {
    min-width: unset;
    width: 100%;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.8em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-ban-ca-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-ban-ca h1 {
    font-size: 1.8em;
  }
  .page-ban-ca h2 {
    font-size: 1.6em;
  }
  .page-ban-ca-hero-content p {
    font-size: 1em;
  }
  .page-ban-ca-mobile-text ul li {
    font-size: 0.95em;
  }
}