.page-ban-ca {
  font-family: 'Arial', sans-serif;
  color: #F0F8FF; /* Light text on dark background */
  background-color: #0A192F; /* Primary brand color */
  line-height: 1.6;
}

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

.page-ban-ca .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
  color: #FFFFFF;
}

.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%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-ban-ca .hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Secondary brand color for highlight */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-ban-ca .cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-ban-ca .primary-button {
  background: #FFD700; /* Secondary brand color */
  color: #0A192F;
}

.page-ban-ca .primary-button:hover {
  background: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-ban-ca .secondary-button {
  background: #1F365C; /* Darker shade of primary */
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-ban-ca .secondary-button:hover {
  background: #2A477A;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-ban-ca .minimal-button {
  background: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 10px 25px;
  font-size: 1em;
}

.page-ban-ca .minimal-button:hover {
  background: #FFD700;
  color: #0A192F;
}

.page-ban-ca section {
  padding: 80px 0;
  text-align: center;
}

.page-ban-ca section:nth-of-type(even) {
  background-color: #1A2A47; /* Slightly lighter dark blue */
}

.page-ban-ca h2 {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 40px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-ban-ca h3 {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-ban-ca p {
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-ban-ca a {
  color: #FFD700;
  text-decoration: none;
}

.page-ban-ca a:hover {
  text-decoration: underline;
}

/* Section Intro */
.page-ban-ca .section-intro p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1em;
}

/* Why Choose Section */
.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: #1F365C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ban-ca .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-ban-ca .feature-item h3 {
  color: #FFD700;
}

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

/* Games Section */
.page-ban-ca .game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-ban-ca .game-card {
  background-color: #1F365C;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  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 10px 25px rgba(0, 0, 0, 0.4);
}

.page-ban-ca .game-card .game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-ban-ca .game-card h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-ban-ca .game-card h3 a {
  color: #FFD700;
  text-decoration: none;
}

.page-ban-ca .game-card h3 a:hover {
  text-decoration: underline;
}

.page-ban-ca .game-card p {
  color: #E0E0E0;
  font-size: 0.95em;
}

/* Guide Section */
.page-ban-ca .section-guide ol,
.page-ban-ca .section-guide ul {
  text-align: left;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
  list-style-position: inside;
  padding-left: 20px;
}

.page-ban-ca .section-guide li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-ban-ca .section-guide li strong {
  color: #FFD700;
}

.page-ban-ca .section-guide h3 {
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 25px;
}

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

.page-ban-ca .promo-card {
  background-color: #1F365C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-ban-ca .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

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

.page-ban-ca .promo-card h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-ban-ca .promo-card h3 a {
  color: #FFD700;
  text-decoration: none;
}

.page-ban-ca .promo-card h3 a:hover {
  text-decoration: underline;
}

.page-ban-ca .promo-card p {
  color: #E0E0E0;
  font-size: 0.95em;
}

.page-ban-ca .promo-cta {
  margin-top: 40px;
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-ban-ca .security-item {
  background-color: #1F365C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ban-ca .security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-ban-ca .security-item h3 {
  color: #FFD700;
}

.page-ban-ca .security-item .small-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-ban-ca .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.page-ban-ca .faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

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

.page-ban-ca .faq-question h3 {
  margin: 0;
  color: #FFD700;
  font-size: 1.2em;
}

.page-ban-ca .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.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: #2A477A; /* Slightly lighter than question bg */
  color: #E0E0E0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

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

.page-ban-ca .faq-answer p {
  margin: 0;
}

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

.page-ban-ca .blog-card {
  background-color: #1F365C;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-ban-ca .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-ban-ca .blog-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-ban-ca .blog-card h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-ban-ca .blog-card h3 a {
  color: #FFD700;
  text-decoration: none;
}

.page-ban-ca .blog-card h3 a:hover {
  text-decoration: underline;
}

.page-ban-ca .blog-card p {
  color: #E0E0E0;
  font-size: 0.9em;
  margin-bottom: 15px;
}

.page-ban-ca .blog-date {
  font-size: 0.85em;
  color: #888;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-ban-ca .hero-content h1 {
    font-size: 3em;
  }
  .page-ban-ca h2 {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-ban-ca .hero-section {
    padding: 40px 15px;
  }
  .page-ban-ca .hero-content h1 {
    font-size: 2.5em;
  }
  .page-ban-ca .hero-content p {
    font-size: 1em;
  }
  .page-ban-ca .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-ban-ca .cta-button {
    width: 80%;
    max-width: 300px;
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-ban-ca section {
    padding: 60px 0;
  }
  .page-ban-ca h2 {
    font-size: 1.8em;
  }
  .page-ban-ca h3 {
    font-size: 1.5em;
  }
  .page-ban-ca .faq-question h3 {
    font-size: 1.1em;
  }
  .page-ban-ca .faq-toggle {
    font-size: 1.5em;
  }
  .page-ban-ca .game-card, .page-ban-ca .promo-card, .page-ban-ca .feature-item, .page-ban-ca .blog-card {
    padding: 20px;
  }
  .page-ban-ca .game-card .game-image, .page-ban-ca .promo-image, .page-ban-ca .blog-image {
    height: 150px;
  }
  .page-ban-ca .section-guide ol, .page-ban-ca .section-guide ul {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .page-ban-ca .hero-content h1 {
    font-size: 2em;
  }
  .page-ban-ca .hero-content p {
    font-size: 0.9em;
  }
  .page-ban-ca h2 {
    font-size: 1.5em;
  }
  .page-ban-ca h3 {
    font-size: 1.3em;
  }
  .page-ban-ca .cta-button {
    width: 90%;
    font-size: 0.9em;
  }
  .page-ban-ca .faq-question h3 {
    font-size: 1em;
  }
  .page-ban-ca .faq-toggle {
    font-size: 1.3em;
  }
}