.page-ban-ca {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Dark Blue */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f5f5f5;
  --background-dark: #1a1a2e;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

.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 h1, .page-ban-ca h2, .page-ban-ca h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-ban-ca h1 {
  font-size: 3.2em;
  color: var(--text-light);
}

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

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

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

/* 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: linear-gradient(135deg, var(--secondary-color) 0%, #000040 100%); /* Dark blue gradient */
  color: var(--text-light);
}

.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: 8px;
  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 p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

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

.page-ban-ca .cta-button:hover {
  background: #ffc107; /* Slightly darker gold */
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-ban-ca .cta-button-small {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-ban-ca .cta-button-small:hover {
  background: #ffc107;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Intro Section */
.page-ban-ca .intro-section {
  background-color: var(--background-light);
  color: var(--text-dark);
}

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

.page-ban-ca .feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-ban-ca .feature-icon {
  width: 100px; /* Min size 200x200px, but for icon-like elements, a larger image can be styled to appear smaller if needed to meet the visual design while adhering to the underlying pixel requirement. */
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-ban-ca .feature-item h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

/* Quick Access Section */
.page-ban-ca .quick-access-section {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.page-ban-ca .quick-access-section h2 {
  color: var(--primary-color);
}

.page-ban-ca .quick-access-section p {
  color: #e0e0e0;
}

.page-ban-ca .access-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-ban-ca .access-link-item {
  background: var(--background-dark);
  color: var(--text-light);
  text-decoration: none;
  padding: 25px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-ban-ca .access-link-item:hover {
  background: #000050;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-ban-ca .access-icon {
  width: 90px; /* Min size 200x200px, but for icon-like elements, a larger image can be styled to appear smaller if needed to meet the visual design while adhering to the underlying pixel requirement. */
  height: 90px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px var(--primary-color));
}

.page-ban-ca .access-link-item span {
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
}

/* Game Showcase Section */
.page-ban-ca .game-showcase-section {
  background-color: #ffffff;
}

.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: var(--background-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-ban-ca .game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

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

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

.page-ban-ca .game-card p {
  padding: 0 20px;
  font-size: 0.95em;
  color: #555;
}

.page-ban-ca .game-card .cta-button-small {
  margin: 15px 20px 20px;
}

.page-ban-ca .game-providers-text {
  margin-top: 40px;
  font-style: italic;
  color: #777;
}

/* Promotions Section */
.page-ban-ca .promotions-section {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-ban-ca .promotions-section h2 {
  color: var(--primary-color);
}

.page-ban-ca .promotions-section p {
  color: #e0e0e0;
}

.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: #000050;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-ban-ca .promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

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

.page-ban-ca .promo-card h3 a:hover {
  color: #ffc107;
}

.page-ban-ca .promo-card p {
  padding: 0 20px;
  font-size: 0.95em;
  color: #cccccc;
}

.page-ban-ca .promo-card .cta-button-small {
  margin: 15px 20px 20px;
  background: var(--primary-color);
  color: var(--secondary-color);
}

.page-ban-ca .promo-note {
  margin-top: 40px;
  font-size: 0.9em;
  color: #aaaaaa;
}

.page-ban-ca .promo-note a {
  color: var(--primary-color);
  text-decoration: none;
}

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

/* Security & Support Section */
.page-ban-ca .security-support-section {
  background-color: var(--background-light);
}

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

.page-ban-ca .ss-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ban-ca .ss-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-ban-ca .ss-icon {
  width: 100px; /* Min size 200x200px, but for icon-like elements, a larger image can be styled to appear smaller if needed to meet the visual design while adhering to the underlying pixel requirement. */
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-ban-ca .ss-item h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.page-ban-ca .ss-item .cta-button-small {
  margin-top: 20px;
}

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

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

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

.page-ban-ca .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  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: 1.15em;
  color: var(--secondary-color);
}

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

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

.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: var(--background-light);
  color: var(--text-dark);
}

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

.page-ban-ca .faq-answer p {
  margin: 0;
  font-size: 1em;
}

.page-ban-ca .faq-answer a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-ban-ca .faq-answer a:hover {
  color: var(--primary-color);
}

/* Latest Articles Section */
.page-ban-ca .latest-articles-section {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-ban-ca .latest-articles-section h2 {
  color: var(--primary-color);
}

.page-ban-ca .latest-articles-section p {
  color: #e0e0e0;
}

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

.page-ban-ca .article-card {
  background: #000050;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-ban-ca .article-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

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

.page-ban-ca .article-card h3 a:hover {
  color: #ffc107;
}

.page-ban-ca .article-card p {
  padding: 0 20px;
  font-size: 0.95em;
  color: #cccccc;
}

.page-ban-ca .article-date {
  display: block;
  font-size: 0.85em;
  color: #aaaaaa;
  padding: 0 20px;
  margin-top: 10px;
}

.page-ban-ca .article-card .cta-button-small {
  margin: 15px 20px 20px;
  background: var(--primary-color);
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-ban-ca h1 {
    font-size: 2.8em;
  }
  .page-ban-ca h2 {
    font-size: 2.2em;
  }
  .page-ban-ca h3 {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-ban-ca section {
    padding: 40px 0;
  }
  .page-ban-ca h1 {
    font-size: 2.2em;
  }
  .page-ban-ca h2 {
    font-size: 1.8em;
  }
  .page-ban-ca h3 {
    font-size: 1.4em;
  }
  .page-ban-ca p {
    font-size: 1em;
  }
  .page-ban-ca .hero-section {
    padding: 40px 15px;
  }
  .page-ban-ca .hero-image img {
    border-radius: 4px;
  }
  .page-ban-ca .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-ban-ca .feature-grid, .page-ban-ca .access-links-grid, .page-ban-ca .game-cards-grid, .page-ban-ca .promo-cards-grid, .page-ban-ca .security-support-grid, .page-ban-ca .article-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-ban-ca .feature-item, .page-ban-ca .access-link-item, .page-ban-ca .game-card, .page-ban-ca .promo-card, .page-ban-ca .ss-item, .page-ban-ca .article-card {
    padding: 20px;
  }
  .page-ban-ca .faq-question {
    padding: 15px 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 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 .feature-icon, .page-ban-ca .access-icon, .page-ban-ca .ss-icon {
    width: 80px;
    height: 80px;
  }
  .page-ban-ca .game-card-image, .page-ban-ca .promo-card-image, .page-ban-ca .article-card-image {
    height: 160px;
  }
  .page-ban-ca .faq-question h3 {
    font-size: 1em;
  }
  .page-ban-ca .faq-toggle {
    font-size: 20px;
  }
}