.page-bnc {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Dark body background, so light text */
  background-color: var(--background-color);
}

.page-bnc__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-bnc__dark-bg {
  background-color: var(--background-color);
  color: var(--text-main-color);
}

.page-bnc__light-bg {
  background-color: var(--card-bg-color);
  color: var(--text-main-color);
}

/* Hero Section */
.page-bnc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom */
  overflow: hidden;
}

.page-bnc__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-bnc__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-bnc__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-bnc__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-bnc__hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

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

.page-bnc__btn-primary,
.page-bnc__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-bnc__btn-primary {
  background: var(--button-color-gradient);
  color: var(--text-main-color);
  border: none;
}

.page-bnc__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-bnc__btn-secondary {
  background: transparent;
  color: var(--glow-color);
  border: 2px solid var(--glow-color);
}

.page-bnc__btn-secondary:hover {
  background: var(--glow-color);
  color: var(--background-color);
  transform: translateY(-2px);
}

/* General Section Styles */
.page-bnc__section {
  padding: 80px 0;
}

.page-bnc__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-main-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-bnc__text-block {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--text-secondary-color);
}

.page-bnc__sub-title {
  font-size: 1.8rem;
  color: var(--gold-color);
  margin-bottom: 20px;
}

.page-bnc__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-bnc__list-item {
  font-size: 1.1rem;
  color: var(--text-secondary-color);
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-bnc__list-item::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: var(--glow-color);
}

.page-bnc__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-bottom: 30px;
}

/* Introduction Section */
.page-bnc__introduction-section .page-bnc__text-block {
  text-align: center;
}

.page-bnc__image-and-text {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-bnc__image-and-text .page-bnc__content-image {
  flex: 1;
  max-width: 50%;
  margin-bottom: 0;
}

.page-bnc__image-and-text .page-bnc__text-content {
  flex: 1;
  max-width: 50%;
}

/* Game Types Section */
.page-bnc__game-types-section {
  background-color: var(--card-bg-color);
}

.page-bnc__game-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-bnc__card {
  background-color: var(--deep-green-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-bnc__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-bnc__card-title {
  font-size: 1.5rem;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-bnc__card-description {
  font-size: 1rem;
  color: var(--text-secondary-color);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-bnc__card-button {
  width: 100%;
}

/* Guide Section */
.page-bnc__steps-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-bnc__step-card {
  background-color: var(--deep-green-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-bnc__step-title {
  font-size: 1.4rem;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-bnc__step-description {
  font-size: 1rem;
  color: var(--text-secondary-color);
  margin-bottom: 20px;
}

.page-bnc__guide-image {
  margin-top: 30px;
  border: 1px solid var(--border-color);
}

/* Strategy Section */
.page-bnc__strategy-list {
  margin-bottom: 40px;
}

.page-bnc__strategy-cta {
  margin-top: 40px;
}

/* Promotions Section */
.page-bnc__promo-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-bnc__promo-card {
  background-color: var(--deep-green-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-bnc__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-bnc__promo-title {
  font-size: 1.5rem;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-bnc__promo-description {
  font-size: 1rem;
  color: var(--text-secondary-color);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-bnc__promo-button {
  width: 100%;
}

/* Benefits Section */
.page-bnc__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

/* FAQ Section */
.page-bnc__faq-list {
  margin-top: 40px;
}

.page-bnc__faq-item {
  background-color: var(--deep-green-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-main-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-bnc__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-bnc__faq-question:hover {
  background-color: var(--divider-color);
}

.page-bnc__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--glow-color);
  transition: transform 0.3s ease;
}

.page-bnc__faq-item[open] .page-bnc__faq-toggle {
  transform: rotate(45deg);
}

.page-bnc__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary-color);
  line-height: 1.7;
}

/* Bottom CTA Section */
.page-bnc__cta-bottom-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-bnc__cta-bottom-section .page-bnc__cta-buttons {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-bnc__image-and-text {
    flex-direction: column;
    text-align: center;
  }

  .page-bnc__image-and-text .page-bnc__content-image,
  .page-bnc__image-and-text .page-bnc__text-content {
    max-width: 100%;
  }
}

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

  .page-bnc__hero-section {
    padding-bottom: 40px;
  }

  .page-bnc__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-bnc__hero-description {
    font-size: 1rem;
  }

  .page-bnc__section {
    padding: 50px 0;
  }

  .page-bnc__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .page-bnc__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  
  .page-bnc__btn-primary,
  .page-bnc__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-bnc__container {
    padding: 0 15px;
  }
  
  /* Mobile image and video responsive adaptation */
  .page-bnc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-bnc__section,
  .page-bnc__card,
  .page-bnc__container,
  .page-bnc__hero-image-wrapper,
  .page-bnc__game-cards-wrapper,
  .page-bnc__steps-wrapper,
  .page-bnc__promo-cards-wrapper,
  .page-bnc__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-bnc__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
  
  .page-bnc__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .page-bnc__faq-answer {
    padding: 0 20px 15px 20px;
  }
}