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

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

.page-ban-ca section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-ban-ca section:nth-of-type(odd) {
  background-color: #ffffff;
}

.page-ban-ca section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page-ban-ca h1, .page-ban-ca h2, .page-ban-ca h3 {
  color: #000080; /* Deep Blue */
  margin-bottom: 20px;
  text-align: center;
}

.page-ban-ca h1 {
  font-size: 3.2em;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-ban-ca h2 {
  font-size: 2.5em;
  color: #000080;
}

.page-ban-ca h3 {
  font-size: 1.8em;
  color: #000080;
}

.page-ban-ca p {
  margin-bottom: 15px;
  text-align: center;
}

.page-ban-ca .cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #000080;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin-top: 20px;
}

.page-ban-ca .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(90deg, #FFA500, #FFD700);
}

.page-ban-ca .primary-button {
  display: inline-block;
  background: #000080; /* Deep Blue */
  color: #FFD700; /* Gold */
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.page-ban-ca .primary-button:hover {
  background: #000066;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-ban-ca .secondary-button {
  display: inline-block;
  background: #FFD700; /* Gold */
  color: #000080; /* Deep Blue */
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.page-ban-ca .secondary-button:hover {
  background: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* 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: 60px 20px;
  background-color: #000080;
}

.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;
}

.page-ban-ca .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-ban-ca .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px 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 {
  color: #FFD700;
  font-size: 3.5em;
  margin-bottom: 15px;
}

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

/* Intro Section */
.page-ban-ca .intro-section p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-ban-ca .feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

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

.page-ban-ca .feature-item h3 {
  color: #000080;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-ban-ca .feature-item p {
  color: #555;
  text-align: left;
}

/* Games Showcase */
.page-ban-ca .games-showcase {
  background-color: #e6eef2; /* Lighter blue/grey */
}

.page-ban-ca .games-showcase p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-ban-ca .game-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-ban-ca .game-card img {
  width: 100%;
  max-width: 350px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-ban-ca .game-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  text-align: center;
}

.page-ban-ca .game-card h3 a {
  color: #000080;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-ban-ca .game-card p {
  color: #555;
  flex-grow: 1;
  text-align: center;
}

/* Guide Section */
.page-ban-ca .guide-section ol {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-ban-ca .guide-section ol li {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-ban-ca .guide-section ol li h3 {
  color: #000080;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-ban-ca .guide-section ol li p {
  color: #555;
  margin-bottom: 20px;
  text-align: center;
}

/* Tips Section */
.page-ban-ca .tips-section ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-ban-ca .tips-section ul li {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  text-align: center;
}

.page-ban-ca .tips-section ul li h3 {
  color: #000080;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-ban-ca .tips-section ul li p {
  color: #555;
  text-align: left;
}

/* Security Section */
.page-ban-ca .security-section {
  background-color: #000080;
  color: #f0f0f0;
}

.page-ban-ca .security-section h2, .page-ban-ca .security-section h3 {
  color: #FFD700;
}

.page-ban-ca .security-section p {
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-ban-ca .security-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-ban-ca .security-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Allowed for contrast on dark background */
}

.page-ban-ca .security-item h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-ban-ca .security-item p {
  color: #f0f0f0;
  text-align: left;
}

/* Promotions Section */
.page-ban-ca .promotions-section p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-ban-ca .promo-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-ban-ca .promo-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-ban-ca .promo-card p {
  color: #555;
  flex-grow: 1;
  text-align: center;
}

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

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

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

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

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

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

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

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

.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: #fdfdfd;
  border-radius: 0 0 8px 8px;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.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 {
  color: #444;
  text-align: left;
  margin-bottom: 0;
}

/* Conclusion Section */
.page-ban-ca .conclusion-section {
  background-color: #000080;
  color: #f0f0f0;
  text-align: center;
}

.page-ban-ca .conclusion-section h2 {
  color: #FFD700;
}

.page-ban-ca .conclusion-section p {
  color: #e0e0e0;
  font-size: 1.1em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-ban-ca h1 {
    font-size: 2.8em;
  }
  .page-ban-ca h2 {
    font-size: 2em;
  }
  .page-ban-ca h3 {
    font-size: 1.5em;
  }
  .page-ban-ca .hero-content p {
    font-size: 1.1em;
  }
  .page-ban-ca .features-grid, .page-ban-ca .game-cards-grid, .page-ban-ca .security-grid, .page-ban-ca .promo-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-ban-ca section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-ban-ca h1 {
    font-size: 2.2em;
  }
  .page-ban-ca h2 {
    font-size: 1.8em;
  }
  .page-ban-ca h3 {
    font-size: 1.3em;
  }
  .page-ban-ca .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-ban-ca .hero-image {
    margin-bottom: 20px;
  }
  .page-ban-ca .hero-image img {
    border-radius: 8px;
  }
  .page-ban-ca .hero-content p {
    font-size: 1em;
  }
  .page-ban-ca .guide-section ol li, .page-ban-ca .tips-section ul li {
    padding: 20px;
  }
  .page-ban-ca .faq-question {
    padding: 15px 20px;
  }
  .page-ban-ca .faq-question h3 {
    font-size: 1.1em;
  }
  .page-ban-ca .faq-answer {
    padding: 0 20px;
  }
  .page-ban-ca .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-ban-ca .feature-item img, .page-ban-ca .game-card img, .page-ban-ca .security-item img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-ban-ca h1 {
    font-size: 1.8em;
  }
  .page-ban-ca h2 {
    font-size: 1.5em;
  }
  .page-ban-ca h3 {
    font-size: 1.2em;
  }
  .page-ban-ca .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-ban-ca .features-grid, .page-ban-ca .game-cards-grid, .page-ban-ca .security-grid, .page-ban-ca .promo-cards-grid {
    grid-template-columns: 1fr;
  }
  .page-ban-ca .faq-question h3 {
    font-size: 1em;
  }
}