.page-ban-ca {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: #08162B; /* Deep Navy from body */
}

.page-ban-ca__dark-bg {
  background-color: #08162B; /* Deep Navy */
  color: #F3F8FF; /* Text Main */
}

.page-ban-ca__card {
  background-color: #10233F; /* Card B G */
  color: #F3F8FF; /* Text Main */
  border: 1px solid #244D84; /* Border */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
}

.page-ban-ca__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 15px;
}

.page-ban-ca__hero-content {
  flex: 1 1 500px;
  text-align: left;
  max-width: 600px;
}

.page-ban-ca__main-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F3F8FF; /* Text Main */
  line-height: 1.2;
}

.page-ban-ca__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #AFC4E8; /* Text Secondary */
}

.page-ban-ca__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.page-ban-ca__cta-buttons.page-ban-ca__cta-center {
  justify-content: center;
}

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
  color: #F3F8FF; /* Text Main */
  border: none;
}

.page-ban-ca__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-ban-ca__btn-secondary {
  background: transparent;
  color: #4FA8FF; /* Glow */
  border: 2px solid #4FA8FF; /* Glow */
}

.page-ban-ca__btn-secondary:hover {
  background: #4FA8FF;
  color: #08162B; /* Deep Navy for contrast */
  transform: translateY(-2px);
}

.page-ban-ca__hero-image {
  flex: 1 1 450px;
  text-align: center;
}

.page-ban-ca__hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  display: block;
  margin: 0 auto;
}

.page-ban-ca__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 15px;
}

.page-ban-ca__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #F3F8FF; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-ban-ca__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #F2C14E; /* Gold */
  border-radius: 2px;
}

.page-ban-ca__section-description {
  font-size: 1.1em;
  color: #AFC4E8; /* Text Secondary */
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-ban-ca__feature-item {
  text-align: center;
}

.page-ban-ca__icon-box-media {
  width: 280px;
  height: 280px;
  aspect-ratio: 1/1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #F2C14E; /* Gold */
  box-shadow: 0 0 15px rgba(79, 168, 255, 0.5); /* Glow */
}

.page-ban-ca__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.page-ban-ca__feature-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 15px;
}

.page-ban-ca__feature-description {
  color: #AFC4E8; /* Text Secondary */
  font-size: 1em;
}

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

.page-ban-ca__game-card {
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-ban-ca__game-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  display: block;
}

.page-ban-ca__game-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-ban-ca__game-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-ban-ca__game-title a {
  color: #F2C14E; /* Gold */
  text-decoration: none;
}

.page-ban-ca__game-title a:hover {
  text-decoration: underline;
}

.page-ban-ca__game-description {
  color: #AFC4E8; /* Text Secondary */
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-ban-ca__game-button {
  width: 100%;
  margin-top: auto; /* Push button to bottom */
}

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

.page-ban-ca__guide-item {
  text-align: center;
  background-color: #10233F; /* Card B G */
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #244D84; /* Border */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__guide-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-ban-ca__guide-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-ban-ca__guide-text {
  color: #AFC4E8; /* Text Secondary */
  font-size: 0.95em;
}

.page-ban-ca__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-ban-ca__tip-item {
  background-color: #10233F; /* Card B G */
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #244D84; /* Border */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__tip-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #4FA8FF; /* Glow */
  margin-bottom: 10px;
}

.page-ban-ca__tip-text {
  color: #AFC4E8; /* Text Secondary */
  font-size: 0.95em;
}

.page-ban-ca__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-ban-ca__faq-item {
  margin-bottom: 15px;
  border: 1px solid #244D84; /* Border */
  border-radius: 8px;
  overflow: hidden;
  color: #F3F8FF; /* Text Main */
}

.page-ban-ca__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #113B7A; /* Main color */
  font-weight: bold;
  font-size: 1.1em;
  color: #F3F8FF; /* Text Main */
  list-style: none; /* Hide default marker */
}

.page-ban-ca__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-ban-ca__faq-question {
  flex-grow: 1;
}

.page-ban-ca__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

.page-ban-ca__faq-answer {
  padding: 15px 25px 25px;
  background-color: #10233F; /* Card B G */
  color: #AFC4E8; /* Text Secondary */
  font-size: 1em;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-ban-ca__main-title {
    font-size: 2.8em;
  }

  .page-ban-ca__hero-description {
    font-size: 1em;
  }

  .page-ban-ca__section-title {
    font-size: 2em;
  }

  .page-ban-ca__icon-box-media {
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .page-ban-ca {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-ban-ca__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-ban-ca__hero-container {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
    gap: 30px;
  }

  .page-ban-ca__hero-content {
    text-align: center;
    flex: none;
    max-width: 100%;
  }

  .page-ban-ca__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-ban-ca__hero-description {
    font-size: 0.95em;
    margin-bottom: 25px;
  }

  .page-ban-ca__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-ban-ca__btn-primary,
  .page-ban-ca__btn-secondary,
  .page-ban-ca a[class*="button"],
  .page-ban-ca a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
    font-size: 1em;
  }

  .page-ban-ca__hero-image {
    flex: none;
    width: 100%;
  }

  .page-ban-ca__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-ban-ca__content-area {
    padding: 40px 15px;
  }

  .page-ban-ca__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-ban-ca__section-description {
    font-size: 0.9em;
    margin-bottom: 40px;
  }

  .page-ban-ca__features-grid,
  .page-ban-ca__game-grid,
  .page-ban-ca__guide-steps,
  .page-ban-ca__tips-list {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }

  .page-ban-ca__feature-item,
  .page-ban-ca__game-card,
  .page-ban-ca__guide-item,
  .page-ban-ca__tip-item {
    padding: 20px;
  }

  .page-ban-ca__icon-box-media {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
  }

  .page-ban-ca__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-ban-ca__feature-title,
  .page-ban-ca__game-title,
  .page-ban-ca__guide-title,
  .page-ban-ca__tip-title {
    font-size: 1.3em;
  }

  .page-ban-ca__game-card img {
    
  }

  .page-ban-ca__game-info {
    padding: 15px;
  }

  .page-ban-ca__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-ban-ca__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  /* General image and container responsiveness */
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-ban-ca__section,
  .page-ban-ca__card,
  .page-ban-ca__container,
  .page-ban-ca__hero-container,
  .page-ban-ca__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-ban-ca__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}