.page-bnc {
  color: #333333; /* Default text color for light body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f8f8f8; /* Inherited from body, but explicitly stated for clarity */
}

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

.page-bnc__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #08160F; /* Dark background for hero area */
}

.page-bnc__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px; /* Limit height for aesthetic reasons */
}

.page-bnc__hero-content {
  position: relative; /* Changed from absolute to relative to be below the image */
  text-align: center;
  padding: 40px 20px;
  color: #F2FFF6;
  max-width: 900px;
  z-index: 1;
}

.page-bnc__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #F2C14E; /* Gold color for main title */
}

.page-bnc__tagline {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #A7D9B8;
}

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

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

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

.page-bnc__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-bnc__btn-secondary {
  background: #11271B;
  color: #F2FFF6;
  border: 2px solid #2E7A4E;
}

.page-bnc__btn-secondary:hover {
  background: #0A4B2C;
  border-color: #57E38D;
  color: #57E38D;
}

.page-bnc__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #11A84E; /* Brand primary color for section titles */
}

.page-bnc__introduction-section,
.page-bnc__games-showcase,
.page-bnc__strategy-section,
.page-bnc__faq-section {
  padding: 60px 0;
  background-color: #f8f8f8; /* Light background for these sections */
  color: #333333;
}

.page-bnc__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
  padding: 60px 0;
}

.page-bnc__dark-bg .page-bnc__section-title {
  color: #F2C14E; /* Gold for titles on dark background */
}

.page-bnc__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-bnc__feature-card {
  background-color: #11271B; /* Card BG color */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #F2FFF6;
}

.page-bnc__feature-card:hover {
  transform: translateY(-10px);
}

.page-bnc__feature-icon {
  width: 100%;
  height: auto;
  max-height: 200px; /* Constrain icon size */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-bnc__card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #57E38D;
}

.page-bnc__card-description {
  font-size: 0.95em;
  color: #A7D9B8;
}

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

.page-bnc__game-item {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.page-bnc__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-bnc__game-title {
  font-size: 1.5em;
  font-weight: 600;
  padding: 15px 20px 5px;
  color: #11A84E;
}

.page-bnc__game-description {
  font-size: 1em;
  padding: 0 20px 20px;
  color: #555555;
}

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

.page-bnc__step-item {
  background-color: #11271B;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  color: #F2FFF6;
  border: 1px solid #2E7A4E;
}

.page-bnc__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #11A84E;
  color: #F2FFF6;
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-bnc__step-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2C14E;
}

.page-bnc__step-description {
  font-size: 0.95em;
  color: #A7D9B8;
}

.page-bnc__guide-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-bnc__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-bnc__list-item {
  background-color: #ffffff;
  border-left: 5px solid #11A84E;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.05em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-bnc__list-item strong {
  color: #11A84E;
}

.page-bnc__promotion-banner {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-bnc__promotion-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-bnc__promotion-list .page-bnc__list-item {
  background-color: #11271B;
  border-left-color: #F2C14E;
  color: #F2FFF6;
}

.page-bnc__promotion-list .page-bnc__list-item strong {
  color: #F2C14E;
}

.page-bnc__faq-list {
  margin-top: 40px;
}

.page-bnc__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-bnc__faq-item summary {
  list-style: none; /* Hide default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  background-color: #f5f5f5;
  color: #11A84E;
  transition: background-color 0.3s ease;
}

.page-bnc__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for Webkit browsers */
}

.page-bnc__faq-item summary:hover {
  background-color: #e9e9e9;
}

.page-bnc__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #11A84E;
}

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

.page-bnc__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #555555;
  border-top: 1px solid #eee;
}

.page-bnc__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green for final CTA */
  color: #F2FFF6;
}

.page-bnc__cta-section .page-bnc__section-title {
  color: #F2C14E;
}

.page-bnc__cta-section .page-bnc__paragraph {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #A7D9B8;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-bnc__hero-content {
    padding: 30px 15px;
  }
  .page-bnc__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-bnc__tagline {
    font-size: 1em;
  }
  .page-bnc__section-title {
    font-size: clamp(1.6em, 4.5vw, 2.5em);
  }
  .page-bnc__feature-grid, .page-bnc__game-list, .page-bnc__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .page-bnc__btn-primary, .page-bnc__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-bnc__hero-content {
    padding: 20px 15px;
  }
  .page-bnc__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }
  .page-bnc__tagline {
    font-size: 0.95em;
  }
  .page-bnc__section-title {
    font-size: clamp(1.4em, 5.5vw, 2.2em);
  }
  .page-bnc__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }
  .page-bnc__btn-primary,
  .page-bnc__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-bnc__container {
    padding: 0 15px;
  }
  .page-bnc__hero-section,
  .page-bnc__introduction-section,
  .page-bnc__features-section,
  .page-bnc__games-showcase,
  .page-bnc__guide-section,
  .page-bnc__strategy-section,
  .page-bnc__promotions-section,
  .page-bnc__faq-section,
  .page-bnc__cta-section {
    padding: 40px 0;
  }
  .page-bnc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-bnc__hero-image,
  .page-bnc__feature-icon,
  .page-bnc__game-image,
  .page-bnc__guide-image,
  .page-bnc__promotion-banner {
    box-sizing: border-box !important;
  }
  .page-bnc__feature-grid, .page-bnc__game-list, .page-bnc__steps-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .page-bnc__game-image {
    height: 200px;
  }
  .page-bnc__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-bnc__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.95em;
  }
}