.page-ban-ca {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f5f5f5;
  --bg-dark: #2a2a2a;
  --border-color: #e0e0e0;
}

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

/* Hero Section */
.page-ban-ca .hero-section {
  background: linear-gradient(135deg, var(--secondary-color), #5a0000);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
}

.page-ban-ca .hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-ban-ca .hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

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

.page-ban-ca .hero-content p a {
  color: var(--primary-color);
  text-decoration: underline;
}

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

.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;
  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;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-ban-ca .cta-button-large:hover {
  background: #FFC107;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-ban-ca section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-ban-ca section:nth-of-type(even) {
  background-color: var(--bg-light);
}

.page-ban-ca section h2 {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-ban-ca section h3 {
  font-size: 1.8em;
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-ban-ca section p {
  font-size: 1.1em;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
}

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

.page-ban-ca section ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-ban-ca section ul li {
  font-size: 1.1em;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 10px;
}

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

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

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

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

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

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

.page-ban-ca .game-card p {
  font-size: 1em;
  color: #666666;
  padding: 0 20px 20px;
  margin-bottom: 0;
}

.page-ban-ca .btn-play {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-ban-ca .btn-play:hover {
  background-color: #FFC107;
  transform: translateY(-2px);
}

/* Guide Section */
.page-ban-ca .guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

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

/* Features Section */
.page-ban-ca .feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  text-align: center;
}

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

.page-ban-ca .feature-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-ban-ca .feature-item ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.page-ban-ca .feature-item ul li {
  position: relative;
  padding-left: 25px;
}

.page-ban-ca .feature-item ul li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* Tips Section */
.page-ban-ca .tips-image {
  margin-top: 30px;
  text-align: center;
}

.page-ban-ca .tips-image img {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.page-ban-ca .promo-card h3 {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin: 20px 0 10px;
  padding: 0 15px;
}

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

.page-ban-ca .promo-card p {
  font-size: 1em;
  color: #666666;
  padding: 0 20px 20px;
  margin-bottom: 0;
}

/* Security & Support Section */
.page-ban-ca .section-security-support ul {
  list-style: none;
  padding: 0;
}

.page-ban-ca .section-security-support ul li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 25px;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-ban-ca .section-security-support ul li::before {
  content: '⚡'; /* Icon, ensure it's not too small or use an image */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5em;
  color: var(--primary-color);
}

.page-ban-ca .section-security-support ul li:nth-child(1)::before { content: '🔒'; }
.page-ban-ca .section-security-support ul li:nth-child(2)::before { content: '💸'; }
.page-ban-ca .section-security-support ul li:nth-child(3)::before { content: '📞'; }

/* FAQ Section */
.page-ban-ca .faq-list {
  margin-top: 30px;
}

.page-ban-ca .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

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

.page-ban-ca .faq-question:hover {
  background: var(--bg-light);
}

.page-ban-ca .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--text-dark);
}

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

.page-ban-ca .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-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: #fdfdfd;
}

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

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

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

/* Conclusion Section */
.page-ban-ca .section-conclusion {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), #FFC107);
  padding: 80px 0;
  color: var(--secondary-color);
}

.page-ban-ca .section-conclusion h2 {
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.page-ban-ca .section-conclusion h2::after {
  background-color: var(--secondary-color);
}

.page-ban-ca .section-conclusion p {
  color: var(--secondary-color);
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.2em;
}

.page-ban-ca .section-conclusion p a {
  color: #720000;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-ban-ca .hero-content h1 {
    font-size: 2.8em;
  }
  .page-ban-ca .hero-content p {
    font-size: 1.1em;
  }
  .page-ban-ca section h2 {
    font-size: 2em;
  }
  .page-ban-ca .guide-grid {
    grid-template-columns: 1fr;
  }
  .page-ban-ca .guide-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .page-ban-ca .hero-section {
    padding: 60px 0;
  }
  .page-ban-ca .hero-content h1 {
    font-size: 2.2em;
  }
  .page-ban-ca .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-ban-ca .cta-button-large {
    padding: 15px 40px;
    font-size: 1.2em;
  }
  .page-ban-ca section {
    padding: 40px 0;
  }
  .page-ban-ca section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-ban-ca .game-cards, .page-ban-ca .feature-list, .page-ban-ca .promo-cards {
    grid-template-columns: 1fr;
  }
  .page-ban-ca .guide-grid {
    gap: 30px;
  }
  .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: 1.5em;
  }
  .page-ban-ca .faq-answer {
    padding: 0 20px;
  }
  .page-ban-ca .faq-item.active .faq-answer {
    padding: 20px;
  }
  .page-ban-ca .section-security-support ul li {
    padding-left: 30px;
    font-size: 1em;
  }
  .page-ban-ca .section-security-support ul li::before {
    font-size: 1.2em;
  }
}