.page-bnc {
  padding-bottom: 40px;
  background-color: #08160F;
  color: #F2FFF6;
}

.page-bnc__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-bnc__container--center {
  text-align: center;
}

.page-bnc__hero-section {
  width: 100%;
  margin: 0;
  overflow: hidden;
  padding-top: 10px; /* Small top padding for visual separation, relying on body padding for header offset */
}

.page-bnc__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9; /* Adjusted for inner page hero, 1600x900 is 16:9 */
  object-fit: cover;
  object-position: center;
  filter: none; /* Ensure no CSS filter changes image color */
}

.page-bnc__intro-section,
.page-bnc__features-section,
.page-bnc__gameplay-guide-section,
.page-bnc__promotions-section--alt,
.page-bnc__faq-section,
.page-bnc__final-cta-section {
  padding: 40px 0;
}

.page-bnc__main-title {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold for main title */
  letter-spacing: 0.02em;
}

.page-bnc__description {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #A7D9B8;
}

.page-bnc__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 30px;
  color: #57E38D; /* Glow for section titles */
  position: relative;
  padding-bottom: 15px;
}

.page-bnc__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #13994A 0%, #2AD16F 100%);
  border-radius: 2px;
}

.page-bnc__section-description {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 25px auto;
  color: #A7D9B8;
}

.page-bnc__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-bnc__btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  min-width: 180px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-bnc__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
}

.page-bnc__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-bnc__btn--secondary {
  background-color: #11271B; /* Card BG */
  color: #57E38D; /* Glow */
  border: 1px solid #2E7A4E; /* Border */
}

.page-bnc__btn--secondary:hover {
  background-color: #1E3A2A; /* Divider */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-bnc__btn--outline {
  background: transparent;
  color: #57E38D;
  border: 2px solid #57E38D;
}

.page-bnc__btn--outline:hover {
  background-color: #57E38D;
  color: #08160F;
  transform: translateY(-2px);
}

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

.page-bnc__feature-item {
  background-color: #11271B;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #2E7A4E;
  transition: transform 0.3s ease;
}

.page-bnc__feature-item:hover {
  transform: translateY(-5px);
}

.page-bnc__feature-item img {
  width: 100%;
  height: auto;
  max-width: 400px; /* Constrain image max width */
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: none; /* Ensure no CSS filter changes image color */
}

.page-bnc__feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2FFF6;
}

.page-bnc__feature-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #A7D9B8;
}

.page-bnc__gameplay-guide-section {
  background-color: #0A4B2C; /* Deep Green */
}

.page-bnc__guide-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.page-bnc__guide-image {
  flex: 1 1 45%;
  min-width: 300px; /* Ensure image is not too small */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  filter: none; /* Ensure no CSS filter changes image color */
}

.page-bnc__guide-list {
  flex: 1 1 45%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-bnc__guide-list li {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-bnc__guide-list li:last-child {
  margin-bottom: 0;
}

.page-bnc__guide-step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  margin-bottom: 8px;
}

.page-bnc__guide-list p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #A7D9B8;
}

.page-bnc__promotions-section--alt {
  background-color: #11271B; /* Card BG */
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-bnc__promo-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-bnc__promo-list li {
  background-color: #08160F;
  border-left: 4px solid #57E38D; /* Glow */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 6px;
  font-size: 1rem;
  color: #F2FFF6;
}

.page-bnc__promo-list li:last-child {
  margin-bottom: 0;
}

.page-bnc__faq-accordion {
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-bnc__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-bnc__faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6;
  padding: 18px 25px;
  cursor: pointer;
  margin: 0;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-bnc__faq-question:hover {
  background-color: #1E3A2A;
}

.page-bnc__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #57E38D;
  transition: transform 0.3s ease;
}

.page-bnc__faq-item.active .page-bnc__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-bnc__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #A7D9B8;
  padding: 0 25px 18px;
  margin: 0;
  display: none;
}

.page-bnc__faq-item.active .page-bnc__faq-answer {
  display: block;
}

.page-bnc__final-cta-section {
  background-color: #0A4B2C; /* Deep Green */
  border-top: 1px solid #1E3A2A;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-bnc__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-bnc__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
  .page-bnc__description {
    font-size: 1rem;
  }
  .page-bnc__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .page-bnc__guide-content {
    flex-direction: column;
  }
  .page-bnc__guide-image {
    min-width: unset;
    width: 100%;
  }
  .page-bnc__btn {
    width: 100%;
    min-width: unset;
  }
  .page-bnc__cta-group {
    flex-direction: column;
  }
}

@media (max-width: 549px) {
  .page-bnc__intro-section,
  .page-bnc__features-section,
  .page-bnc__gameplay-guide-section,
  .page-bnc__promotions-section--alt,
  .page-bnc__faq-section,
  .page-bnc__final-cta-section {
    padding: 30px 0;
  }
  .page-bnc__main-title {
    font-size: clamp(1.1rem, 7vw, 1.75rem);
  }
  .page-bnc__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }
  .page-bnc__description,
  .page-bnc__feature-text,
  .page-bnc__guide-list p,
  .page-bnc__promo-list li,
  .page-bnc__faq-answer {
    font-size: 0.9rem;
  }
  .page-bnc__btn {
    padding: 12px 20px;
  }
  .page-bnc__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-bnc__faq-question::after {
    right: 20px;
  }
  .page-bnc__promo-list {
    margin: 20px auto;
  }
  .page-bnc__promo-list li {
    padding: 12px 15px;
  }
}

/* Ensure all content area images are not smaller than 200px on mobile */
@media (max-width: 768px) {
  .page-bnc img {
    max-width: 100%;
    height: auto;
  }
  .page-bnc__feature-item img,
  .page-bnc__guide-image {
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
  }
  .page-bnc {
    overflow-x: hidden;
  }
}