.page-bnc {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-bnc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  background-color: #0A4B2C; /* Deep Green for hero section background */
}

.page-bnc__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-bnc__hero-image {
  width: 1200px;
  height: 675px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-bnc__hero-content {
  max-width: 900px;
  width: 100%; /* Ensure content block takes full width within max-width */
  z-index: 1;
}

.page-bnc__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  /* No fixed font-size, rely on clamp if needed, otherwise use responsive scaling */
  font-size: clamp(2.5rem, 5vw, 3.8rem); /* Example clamp for responsive H1 */
}

.page-bnc__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-bnc__cta-buttons {
  display: flex;
  gap: 15px;
  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;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-bnc__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-bnc__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-bnc__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold */
}

.page-bnc__btn-secondary:hover {
  background-color: #F2C14E;
  color: #08160F; /* Background */
  transform: translateY(-2px);
}

.page-bnc__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-bnc__text-block {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
}

.page-bnc__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Intro Section */
.page-bnc__intro-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

/* Games Section */
.page-bnc__games-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

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

.page-bnc__game-card {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-bnc__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-bnc__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-bnc__card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-bnc__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Guide Section */
.page-bnc__guide-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-bnc__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-bnc__guide-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-bnc__guide-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-bnc__guide-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
}

/* Strategy Section */
.page-bnc__strategy-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

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

.page-bnc__strategy-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 15px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.page-bnc__strategy-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-bnc__strategy-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

/* Promo Section */
.page-bnc__promo-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

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

.page-bnc__promo-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-bnc__faq-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

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

.page-bnc__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-bnc__faq-question::-webkit-details-marker {
  display: none;
}

.page-bnc__faq-item[open] > .page-bnc__faq-question {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2C14E; /* Gold */
}

.page-bnc__faq-qtext {
  flex-grow: 1;
}

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

.page-bnc__faq-item[open] .page-bnc__faq-toggle {
  content: '−';
}

.page-bnc__faq-answer {
  padding: 0 25px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
}

/* Text Colors */
.page-bnc__text-main { color: #F2FFF6; }
.page-bnc__text-secondary { color: #A7D9B8; }

/* Background Colors */
.page-bnc__dark-bg { background-color: #08160F; }
.page-bnc__light-bg { background-color: #08160F; }
.page-bnc__card-bg { background-color: #11271B; }

/* Divider */
.page-bnc__divider { border-color: #1E3A2A; }

/* Responsive Styles */
@media (max-width: 768px) {
  .page-bnc__container {
    padding: 0 15px;
  }

  .page-bnc__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

  .page-bnc__description {
    font-size: 1rem;
  }

  .page-bnc__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-bnc__btn-primary,
  .page-bnc__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-bnc__section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-bnc__intro-section,
  .page-bnc__games-section,
  .page-bnc__guide-section,
  .page-bnc__strategy-section,
  .page-bnc__promo-section,
  .page-bnc__faq-section {
    padding: 60px 0;
  }

  .page-bnc__game-list,
  .page-bnc__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-bnc__card-image {
    height: 180px;
  }

  .page-bnc__guide-item,
  .page-bnc__strategy-item,
  .page-bnc__promo-card,
  .page-bnc__faq-item {
    padding: 20px;
  }

  .page-bnc__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-bnc__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9rem;
  }

  .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-card,
  .page-bnc__promo-card,
  .page-bnc__guide-item,
  .page-bnc__strategy-item,
  .page-bnc__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-bnc__hero-section,
  .page-bnc__intro-section,
  .page-bnc__games-section,
  .page-bnc__guide-section,
  .page-bnc__strategy-section,
  .page-bnc__promo-section,
  .page-bnc__faq-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-bnc__faq-item[open] > .page-bnc__faq-question .page-bnc__faq-toggle {
    content: '−';
  }
}