.page-ban-ca {
  --primary-color: #0A192F;
  --secondary-color: #FFD700;
  --accent-color: #DC143C;
  --text-light: #FFFFFF;
  --text-dark: #000000;
  --background-dark: #0A192F;
  --background-light: #F8F8F8;
  --card-background: #1A2B42;
  --border-color: #334D6C;
  font-family: 'Arial', sans-serif;
  color: var(--text-light);
}

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

/* 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: var(--background-dark);
  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%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-ban-ca .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

.page-ban-ca .hero-content h1 {
  font-size: 3.5em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.page-ban-ca .hero-content p {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--text-light);
}

.page-ban-ca .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--background-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-ban-ca .cta-button:hover {
  background: var(--text-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
  color: var(--primary-color);
}

/* General Section Styling */
.page-ban-ca section {
  padding: 80px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

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

.page-ban-ca h2 {
  font-size: 2.8em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-ban-ca h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.page-ban-ca h3 {
  font-size: 1.8em;
  color: var(--text-light);
  margin-bottom: 20px;
  text-align: center;
}

.page-ban-ca p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: center;
}

.page-ban-ca .main-cta-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
  padding: 15px 35px;
  background: var(--accent-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(220, 20, 60, 0.4);
}

.page-ban-ca .main-cta-button:hover {
  background: #FF4500;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(220, 20, 60, 0.6);
}

/* Why Choose Section */
.page-ban-ca .why-choose-section .container p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

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

.page-ban-ca .feature-item {
  background-color: var(--card-background);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.page-ban-ca .feature-item img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-ban-ca .feature-item h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
}

.page-ban-ca .feature-item p {
  font-size: 1em;
  color: #B0B0B0;
  text-align: center;
}

/* Game Types Section */
.page-ban-ca .game-types-section .container p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

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

.page-ban-ca .game-card {
  background-color: var(--card-background);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

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

.page-ban-ca .game-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-ban-ca .game-card h3 {
  font-size: 1.5em;
  color: var(--secondary-color);
  padding: 20px 20px 10px;
  text-align: left;
}

.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(--accent-color);
}

.page-ban-ca .game-card p {
  font-size: 1em;
  color: #B0B0B0;
  padding: 0 20px 20px;
  flex-grow: 1;
  text-align: left;
}

.page-ban-ca .card-button {
  display: inline-block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 0;
  background: var(--accent-color);
  color: var(--text-light);
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-ban-ca .card-button:hover {
  background: #FF4500;
}

/* How To Play Section */
.page-ban-ca .how-to-play-section .container p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-ban-ca .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-ban-ca .step-item {
  background-color: var(--card-background);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.page-ban-ca .step-item img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-ban-ca .step-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
}

.page-ban-ca .step-item p {
  font-size: 1em;
  color: #B0B0B0;
  text-align: center;
}

.page-ban-ca .step-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--background-dark);
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

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

/* Tips & Strategies Section */
.page-ban-ca .tips-strategies-section .container p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

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

.page-ban-ca .tip-item {
  background-color: var(--card-background);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.page-ban-ca .tip-item img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-ban-ca .tip-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
}

.page-ban-ca .tip-item p {
  font-size: 1em;
  color: #B0B0B0;
  text-align: center;
}

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

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

.page-ban-ca .promo-item {
  background-color: var(--card-background);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.page-ban-ca .promo-item img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-ban-ca .promo-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
}

.page-ban-ca .promo-item p {
  font-size: 1em;
  color: #B0B0B0;
  text-align: center;
}

.page-ban-ca .promo-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--accent-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-ban-ca .promo-button:hover {
  background: #FF4500;
}

/* Safety & Support Section */
.page-ban-ca .safety-support-section .container p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

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

.page-ban-ca .support-item {
  background-color: var(--card-background);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.page-ban-ca .support-item img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-ban-ca .support-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
}

.page-ban-ca .support-item p {
  font-size: 1em;
  color: #B0B0B0;
  text-align: center;
}

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

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

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

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

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

.page-ban-ca .faq-question h3 {
  font-size: 1.2em;
  color: var(--secondary-color);
  margin: 0;
  text-align: left;
  flex-grow: 1;
}

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

.page-ban-ca .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
  background-color: #1A2B42;
  color: #E0E0E0;
  border-radius: 0 0 8px 8px;
}

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

.page-ban-ca .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border: 1px solid var(--border-color);
  border-top: none;
}

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

.page-ban-ca .faq-answer p {
  text-align: left;
  margin: 0;
  color: #E0E0E0;
}

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

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

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

  .page-ban-ca p {
    font-size: 1em;
  }

  .page-ban-ca .cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
}

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

  .page-ban-ca .hero-image {
    margin-bottom: 20px;
  }

  .page-ban-ca .hero-content h1 {
    font-size: 2.2em;
  }

  .page-ban-ca .hero-content p {
    font-size: 0.95em;
    margin-bottom: 20px;
  }

  .page-ban-ca .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }

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

  .page-ban-ca h2 {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

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

  .page-ban-ca .feature-item, .page-ban-ca .game-card, .page-ban-ca .step-item, .page-ban-ca .tip-item, .page-ban-ca .promo-item, .page-ban-ca .support-item {
    padding: 20px;
  }

  .page-ban-ca .feature-item img, .page-ban-ca .tip-item img, .page-ban-ca .promo-item img, .page-ban-ca .support-item img {
    width: 180px;
    height: 180px;
  }

  .page-ban-ca .game-card h3 {
    font-size: 1.3em;
  }

  .page-ban-ca .game-card p {
    font-size: 0.9em;
  }

  .page-ban-ca .card-button {
    padding: 10px 0;
  }

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

  .page-ban-ca .faq-question h3 {
    font-size: 1.1em;
  }

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

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

@media (max-width: 480px) {
  .page-ban-ca .hero-content h1 {
    font-size: 1.8em;
  }

  .page-ban-ca .hero-content p {
    font-size: 0.9em;
  }

  .page-ban-ca .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }

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

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

  .page-ban-ca .feature-item img, .page-ban-ca .tip-item img, .page-ban-ca .promo-item img, .page-ban-ca .support-item img {
    width: 150px;
    height: 150px;
  }

  .page-ban-ca .game-card h3 {
    font-size: 1.1em;
  }

  .page-ban-ca .game-card p {
    font-size: 0.85em;
  }

  .page-ban-ca .faq-question h3 {
    font-size: 1em;
  }

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