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

.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-section:nth-of-type(odd) {
  background-color: #ffffff;
}

.page-ban-ca h1,
.page-ban-ca h2,
.page-ban-ca h3 {
  color: #8B0000; /* Deep Red for headings */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-ban-ca h1 {
  font-size: 3em;
  color: #FFD700; /* Gold for main hero heading */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

.page-ban-ca-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Gold button */
  color: #8B0000; /* Deep Red text on button */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid #8B0000;
}

.page-ban-ca-cta-button:hover {
  background: #8B0000; /* Deep Red on hover */
  color: #FFD700; /* Gold text on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-ban-ca-button {
  display: inline-block;
  padding: 12px 30px;
  background: #8B0000; /* Deep Red button */
  color: #FFD700; /* Gold text on button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 1px solid #FFD700;
}

.page-ban-ca-button:hover {
  background: #FFD700; /* Gold on hover */
  color: #8B0000; /* Deep Red text on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-ban-ca-button-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.page-ban-ca-button-small {
    display: inline-block;
    padding: 8px 20px;
    background: #FFD700;
    color: #8B0000;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: 1px solid #8B0000;
}

.page-ban-ca-button-small:hover {
    background: #8B0000;
    color: #FFD700;
    transform: translateY(-1px);
}

/* Hero Section */
.page-ban-ca-hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #FFD700, #8B0000); /* Gradient background if image not loaded */
}

.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%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
}

.page-ban-ca-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-ban-ca-hero-content h1 {
  color: #FFD700; /* Gold */
  font-size: 3.5em;
  margin-bottom: 15px;
}

.page-ban-ca-hero-content p {
  color: #ffffff;
  font-size: 1.2em;
  margin-bottom: 25px;
}

/* Introduction Section */
.page-ban-ca-introduction {
  background-color: #fefefe;
}

.page-ban-ca-content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-ban-ca-text-content {
  flex: 1;
}

.page-ban-ca-image-content {
  flex: 1;
}

.page-ban-ca-image-responsive {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Games Grid */
.page-ban-ca-games {
  background-color: #f0f0f0;
}

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

.page-ban-ca-game-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  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 12px 25px rgba(0, 0, 0, 0.2);
}

.page-ban-ca-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

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

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

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

.page-ban-ca-game-card p {
  font-size: 0.95em;
  color: #666666;
}

/* Guide Section */
.page-ban-ca-guide {
  background-color: #ffffff;
}

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

.page-ban-ca-step-card {
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-ban-ca-step-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-ban-ca-step-card h3 {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-ban-ca-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.page-ban-ca-link:hover {
  color: #8B0000;
}

.page-ban-ca-tips-layout {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
  margin-top: 40px;
}

.page-ban-ca-tips-text {
  flex: 1;
}

.page-ban-ca-tips-text ul {
  list-style: none;
  padding: 0;
}

.page-ban-ca-tips-text ul li {
  background: #fffafa;
  margin-bottom: 10px;
  padding: 15px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-ban-ca-tips-text ul li strong {
  color: #8B0000;
}

.page-ban-ca-tips-image {
  flex: 1;
}

/* Promotions Section */
.page-ban-ca-promotions {
  background-color: #f0f0f0;
}

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

.page-ban-ca-promo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  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 12px 25px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.page-ban-ca-reason-card {
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-ban-ca-reason-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-ban-ca-reason-card h3 {
  color: #8B0000;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-ban-ca-reason-card p {
  color: #666666;
  font-size: 0.95em;
}

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

.page-ban-ca-faq-list {
  margin-top: 40px;
  text-align: left;
}

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

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

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #8B0000;
}

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

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #8B0000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: #444444;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 25px;
  padding-top: 0;
  border-top: 1px solid #e0e0e0;
}

.faq-answer p {
  margin-bottom: 0;
}

/* Conclusion Section */
.page-ban-ca-conclusion {
  background-color: #8B0000; /* Deep Red background */
  color: #ffffff;
  padding: 80px 0;
}

.page-ban-ca-conclusion h2 {
  color: #FFD700; /* Gold heading */
  font-size: 2.8em;
}

.page-ban-ca-conclusion p {
  color: #f0f0f0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-ban-ca-conclusion .page-ban-ca-cta-button {
  background: #FFD700; /* Gold button */
  color: #8B0000; /* Deep Red text */
  border: 2px solid #8B0000;
}

.page-ban-ca-conclusion .page-ban-ca-cta-button:hover {
  background: #ffffff; /* White on hover */
  color: #8B0000; /* Deep Red text on hover */
  border: 2px solid #FFD700;
}

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

@media (max-width: 768px) {
  .page-ban-ca-section {
    padding: 40px 0;
  }
  .page-ban-ca h1 {
    font-size: 2.5em;
  }
  .page-ban-ca h2 {
    font-size: 1.8em;
  }
  .page-ban-ca h3 {
    font-size: 1.5em;
  }
  .page-ban-ca p {
    font-size: 1em;
  }
  .page-ban-ca-cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-ban-ca-hero-content h1 {
    font-size: 2.5em;
  }
  .page-ban-ca-hero-content p {
    font-size: 1em;
  }
  .page-ban-ca-content-wrapper,
  .page-ban-ca-tips-layout {
    flex-direction: column;
  }
  .page-ban-ca-game-grid,
  .page-ban-ca-guide-steps,
  .page-ban-ca-promo-grid,
  .page-ban-ca-why-grid {
    grid-template-columns: 1fr;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 20px;
    padding-top: 0;
  }
  .page-ban-ca-conclusion h2 {
    font-size: 2em;
  }
  .page-ban-ca-conclusion p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-ban-ca h1 {
    font-size: 2em;
  }
  .page-ban-ca-hero-content h1 {
    font-size: 2em;
  }
  .page-ban-ca-hero-content p {
    font-size: 0.9em;
  }
  .page-ban-ca-hero-image {
    max-height: 300px;
  }
  .page-ban-ca-cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-ban-ca-container {
    padding: 0 15px;
  }
  .page-ban-ca-game-card,
  .page-ban-ca-promo-card,
  .page-ban-ca-reason-card,
  .page-ban-ca-step-card {
    padding: 20px;
  }
  .page-ban-ca-conclusion h2 {
    font-size: 1.8em;
  }
}