:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f8f8;
  --bg-dark: #2c2c2c;
  --border-color: #e0e0e0;
}

.page-ban-ca {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

/* --- 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%, #a30000 100%); /* Darker gradient for contrast */
  color: var(--text-light);
  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;
  max-width: 900px; /* Limit image width */
}

.page-ban-ca .hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-ban-ca .hero-content {
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.page-ban-ca .hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--primary-color); /* Gold title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-ban-ca .hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

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

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

/* --- General Section Styles --- */
.page-ban-ca section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.page-ban-ca section:last-of-type {
  border-bottom: none;
}

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

.page-ban-ca h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-ban-ca h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

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

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

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

.page-ban-ca .highlight-text {
  color: var(--secondary-color); /* Dark red for highlights */
  font-weight: bold;
}

/* --- Intro Section --- */
.page-ban-ca .intro-section {
  text-align: center;
}

/* --- Why Choose GO88 Section --- */
.page-ban-ca .why-choose-go88 {
  background-color: #ffffff;
}

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

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

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

.page-ban-ca .feature-item .feature-icon {
  width: 150px; /* Increased size for content images */
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px; /* Slightly rounded corners */
}

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

.page-ban-ca .feature-item p {
  font-size: 1em;
  color: var(--text-dark);
}

/* --- Game Types Section --- */
.page-ban-ca .game-types {
  background-color: var(--bg-light);
}

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

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

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

.page-ban-ca .game-card-img {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

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

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

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

.page-ban-ca .game-card p {
  font-size: 1em;
  padding: 0 15px 20px;
  color: var(--text-dark);
}

.page-ban-ca .section-cta {
  text-align: center;
  margin-top: 40px;
}

/* --- Tips & Strategies Section --- */
.page-ban-ca .tips-strategies {
  background-color: #ffffff;
}

.page-ban-ca .tips-strategies ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-ban-ca .tips-strategies ul li {
  background: #fdfdfd;
  border-left: 5px solid var(--primary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-ban-ca .tips-strategies ul li strong {
  color: var(--secondary-color);
}

/* --- Registration Guide Section --- */
.page-ban-ca .registration-guide ol {
  list-style: decimal;
  padding-left: 25px;
  margin-top: 30px;
}

.page-ban-ca .registration-guide ol li {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: var(--text-dark);
  line-height: 1.8;
}

.page-ban-ca .registration-guide ol li strong {
  color: var(--secondary-color);
}

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

.page-ban-ca .promotions-section ul {
  list-style: disc;
  padding-left: 25px;
  margin-top: 30px;
}

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

.page-ban-ca .promotions-section ul li strong {
  color: var(--secondary-color);
}

/* --- Security & Support Section --- */
.page-ban-ca .security-support {
  background-color: #ffffff;
}

.page-ban-ca .security-support ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-ban-ca .security-support ul li {
  background: #fdfdfd;
  border-left: 5px solid var(--primary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-ban-ca .security-support ul li strong {
  color: var(--secondary-color);
}

/* --- FAQ Section --- */
.page-ban-ca .faq-section {
  background-color: var(--bg-light);
}

.page-ban-ca .faq-list {
  margin-top: 30px;
}

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

.page-ban-ca .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  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.2em;
  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: #fefefe;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0 0 8px 8px;
}

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

.page-ban-ca .faq-answer p {
  margin-bottom: 0;
  font-size: 1em;
  color: var(--text-dark);
}

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

.page-ban-ca .conclusion-section h2 {
  color: var(--primary-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-ban-ca .conclusion-section p {
  color: var(--text-light);
  font-size: 1.15em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.page-ban-ca .conclusion-section .final-cta {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.page-ban-ca .conclusion-section .final-cta:hover {
  background: #ffc400;
}

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

@media (max-width: 768px) {
  .page-ban-ca .hero-section {
    padding: 40px 15px;
  }
  .page-ban-ca .hero-content h1 {
    font-size: 2.2em;
  }
  .page-ban-ca .hero-content p {
    font-size: 1.1em;
  }
  .page-ban-ca .cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-ban-ca section {
    padding: 40px 15px;
  }
  .page-ban-ca h2 {
    font-size: 1.8em;
  }
  .page-ban-ca h3 {
    font-size: 1.4em;
  }
  .page-ban-ca p, .page-ban-ca ul li, .page-ban-ca ol li {
    font-size: 1em;
  }
  .page-ban-ca .features-grid,
  .page-ban-ca .game-cards-grid {
    grid-template-columns: 1fr;
  }
  .page-ban-ca .feature-item .feature-icon {
    width: 100px; /* Adjust size for mobile */
  }
  .page-ban-ca .game-card-img {
    height: 180px;
  }
  .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 .cta-button {
    width: 90%;
    max-width: 300px;
  }
  .page-ban-ca h2 {
    font-size: 1.5em;
  }
}