.page-ban-ca {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light gray for general text on dark background */
  background-color: #000080; /* Dark blue background */
  line-height: 1.6;
}

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

.page-ban-ca__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #000080 0%, #00004d 100%); /* Dark blue gradient */
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
}

.page-ban-ca__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:underwater_pattern,subtle_bubbles,dark_blue]');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-ban-ca__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-ban-ca__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-ban-ca__hero-description {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-ban-ca__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-ban-ca__hero-image-wrapper {
  margin-top: 40px;
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.page-ban-ca__hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-ban-ca__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-align: center;
}

.page-ban-ca__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-ban-ca__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-ban-ca__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-ban-ca__btn--secondary:hover {
  background-color: #FFD700;
  color: #000080;
  transform: translateY(-2px);
}

.page-ban-ca__btn--center {
  display: block;
  margin: 30px auto;
  max-width: 300px;
}

.page-ban-ca__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-ban-ca__about, .page-ban-ca__features, .page-ban-ca__gameplay-guide, .page-ban-ca__tips, .page-ban-ca__fish-types, .page-ban-ca__promotions, .page-ban-ca__cta-download, .page-ban-ca__faq, .page-ban-ca__conclusion {
  padding: 60px 0;
}

.page-ban-ca__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
  text-align: justify;
}

.page-ban-ca__text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

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

.page-ban-ca__feature-item, .page-ban-ca__fish-item {
  background-color: #00004d; /* Slightly lighter dark blue for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-ban-ca__feature-item:hover, .page-ban-ca__fish-item:hover {
  transform: translateY(-5px);
}

.page-ban-ca__feature-icon, .page-ban-ca__fish-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-ban-ca__feature-title, .page-ban-ca__fish-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-ban-ca__feature-description, .page-ban-ca__fish-description {
  font-size: 1em;
  color: #c0c0c0;
}

.page-ban-ca__guide-list, .page-ban-ca__tip-list, .page-ban-ca__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-ban-ca__guide-list li, .page-ban-ca__tip-list li, .page-ban-ca__promo-list li {
  background-color: #00004d;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__guide-list li:last-child, .page-ban-ca__tip-list li:last-child, .page-ban-ca__promo-list li:last-child {
  margin-bottom: 0;
}

.page-ban-ca__tip-image-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-ban-ca__tip-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-ban-ca__promo-list li strong {
  color: #FFD700;
}

.page-ban-ca__download-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-ban-ca__btn--download {
  background-color: #FFD700;
  color: #000080;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
}

.page-ban-ca__btn--download img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.page-ban-ca__btn--download:hover {
  background-color: #e6c200;
}

.page-ban-ca__accordion {
  margin-top: 40px;
}

.page-ban-ca__accordion-item {
  background-color: #00004d;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__accordion-header {
  background-color: #000066; /* Slightly darker for header */
  color: #FFD700;
  padding: 20px 30px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-ban-ca__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-ban-ca__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-ban-ca__accordion-header:hover {
  background-color: #00007a;
}

.page-ban-ca__accordion-content {
  padding: 0 30px;
  background-color: #00004d;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-ban-ca__accordion-content.active {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 30px;
}

.page-ban-ca__accordion-content p {
  margin: 0;
  color: #c0c0c0;
}

.page-ban-ca__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-ban-ca__hero-title {
    font-size: 2.5em;
  }

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

  .page-ban-ca__hero-actions {
    flex-direction: column;
  }

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

  .page-ban-ca__feature-grid, .page-ban-ca__fish-grid {
    grid-template-columns: 1fr;
  }

  .page-ban-ca__btn--download {
    width: 100%;
    max-width: 300px;
  }
  .page-ban-ca__download-options {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-ban-ca__hero-title {
    font-size: 2em;
  }

  .page-ban-ca__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

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

  .page-ban-ca__guide-list li, .page-ban-ca__tip-list li, .page-ban-ca__promo-list li {
    font-size: 0.95em;
    padding: 15px;
  }

  .page-ban-ca__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-ban-ca__accordion-content.active {
    padding: 15px 20px;
  }
}