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

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

.page-bnc__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Minimal top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-bnc__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

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

.page-bnc__hero-content-wrapper {
  padding: 40px 0;
  position: relative;
  z-index: 2;
  margin-top: -100px; /* Adjust to bring content slightly over image for visual flow, without overlapping text */
}

.page-bnc__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-bnc__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-bnc__btn-primary,
.page-bnc__btn-secondary,
.page-bnc__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

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

.page-bnc__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-bnc__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* Complementary to button gradient */
  border: 2px solid #2AD16F;
}

.page-bnc__btn-secondary:hover {
  background: #2AD16F;
  color: #ffffff;
  border-color: #2AD16F;
  transform: translateY(-2px);
}

.page-bnc__btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.page-bnc__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2FFF6; /* Text Main */
  margin-top: 60px;
}

.page-bnc__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #2AD16F;
}

.page-bnc__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-bnc__highlight-text {
  color: #F2C14E; /* Gold */
  font-weight: bold;
}

.page-bnc__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border */
}

.page-bnc__card-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-bnc__card-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-bnc__intro-section,
.page-bnc__why-choose-section,
.page-bnc__games-section,
.page-bnc__guide-section,
.page-bnc__tips-section,
.page-bnc__promotions-section,
.page-bnc__faq-section,
.page-bnc__cta-section {
  padding: 80px 0;
}

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

.page-bnc__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-bnc__btn-link {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  margin-top: 20px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.page-bnc__btn-link:hover {
  opacity: 0.9;
}

.page-bnc__step-card .page-bnc__step-number {
  width: 50px;
  height: 50px;
  background-color: #2AD16F;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #08160F;
  margin: 0 auto 20px;
}

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

.page-bnc__tips-list li {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  color: #A7D9B8;
  text-align: left;
}

.page-bnc__tips-list li .page-bnc__list-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

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

.page-bnc__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #A7D9B8;
}

.page-bnc__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  list-style: none;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1rem;
}

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

.page-bnc__faq-item .page-bnc__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #2AD16F;
  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;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #A7D9B8;
}

.page-bnc__faq-answer p {
  margin-bottom: 10px;
}

.page-bnc__faq-answer .page-bnc__btn-link {
  margin-top: 10px;
  padding: 8px 15px;
  font-size: 0.85rem;
}

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

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

  .page-bnc__hero-content-wrapper {
    margin-top: -50px;
    padding: 20px 0;
  }

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

  .page-bnc__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

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

  .page-bnc__btn-primary,
  .page-bnc__btn-secondary,
  .page-bnc a[class*="button"],
  .page-bnc a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-bnc__sub-title {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-bnc__text-block {
    font-size: 0.95rem;
  }

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

  .page-bnc__feature-icon {
    width: 60px;
    height: 60px;
  }

  .page-bnc__game-image,
  .page-bnc__promo-image {
    height: 180px;
  }

  .page-bnc__card {
    padding: 20px;
  }

  .page-bnc__card-title {
    font-size: 1.2rem;
  }

  .page-bnc__card-description {
    font-size: 0.9rem;
  }

  .page-bnc__tips-list li {
    padding: 20px;
  }

  .page-bnc__tips-list li .page-bnc__list-title {
    font-size: 1.1rem;
  }

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

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

  /* Mobile image, video, and container adaptations */
  .page-bnc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-bnc video,
  .page-bnc__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-bnc__section,
  .page-bnc__card,
  .page-bnc__container,
  .page-bnc__video-section,
  .page-bnc__video-container,
  .page-bnc__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-bnc__video-section {
    padding-top: 10px !important;
  }

  .page-bnc__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}