.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__section {
  padding: 60px 0;
}

.page-bnc__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-bnc__light-bg {
  background-color: #11271B; /* Card BG, used for contrasting sections */
  color: #F2FFF6; /* Text Main */
}

.page-bnc__section-title {
  font-size: 2.8em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
}

.page-bnc__sub-title {
  font-size: 2.2em;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.3;
}

.page-bnc__description, .page-bnc__description-secondary {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8; /* Text Secondary */
}

.page-bnc__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles header offset, small top padding for visual */
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

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

.page-bnc__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em); /* Responsive H1 font size */
  font-weight: 900;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-bnc__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  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: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  text-align: center;
}

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

.page-bnc__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-bnc__btn-secondary {
  background: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-bnc__btn-secondary:hover {
  transform: translateY(-3px);
  background-color: rgba(46, 122, 78, 0.2);
}

.page-bnc__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

.page-bnc__feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-bnc__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-bnc__feature-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F2C14E; /* Gold */
}

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

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

.page-bnc__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-bnc__step-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #57E38D; /* Glow */
}

.page-bnc__download-button, .page-bnc__register-button, .page-bnc__play-button {
  margin-top: 20px;
  width: 100%;
  max-width: 200px;
}

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

.page-bnc__game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-bnc__game-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F2C14E; /* Gold */
}

.page-bnc__tips-section {
  margin-top: 60px;
  text-align: left;
  padding: 30px;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-bnc__tips-list {
  list-style: none;
  padding-left: 0;
}

.page-bnc__tips-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #F2FFF6; /* Text Main */
}

.page-bnc__tips-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #57E38D; /* Glow */
  font-weight: bold;
}

.page-bnc__tip-item-title {
  display: inline;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
}

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

.page-bnc__promo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-bnc__promo-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #57E38D; /* Glow */
}

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

.page-bnc__support-item {
  text-align: center;
  padding: 30px;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border */
}

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

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

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  border-bottom: 1px solid #2E7A4E; /* Divider */
}

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

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

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

.page-bnc__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #57E38D;
}

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

.page-bnc__faq-answer {
  padding: 20px 30px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-bnc__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive styles */
@media (min-width: 769px) {
  .page-bnc__features-list, .page-bnc__download-steps, .page-bnc__game-list, .page-bnc__promo-list, .page-bnc__support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-bnc__features-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-bnc__support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-bnc__main-title {
    font-size: 3.8em;
  }
  .page-bnc__section-title {
    font-size: 3em;
  }
  .page-bnc__sub-title {
    font-size: 2.5em;
  }
  .page-bnc__game-list, .page-bnc__promo-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page-bnc__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-bnc__sub-title {
    font-size: 1.8em;
  }
  .page-bnc__description, .page-bnc__description-secondary {
    font-size: 1em;
  }
  .page-bnc__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-bnc__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-bnc__main-title {
    font-size: 2.5em;
  }
  .page-bnc__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-bnc__btn-primary, .page-bnc__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-bnc__section {
    padding: 40px 0;
  }
  .page-bnc__container {
    padding: 0 15px;
  }
  .page-bnc__tips-section {
    margin-top: 40px;
    padding: 20px;
  }
  .page-bnc__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-bnc__faq-answer {
    padding: 15px 20px;
  }

  /* Mandatory responsive images/videos/buttons */
  .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__cta-buttons,
  .page-bnc__button-group,
  .page-bnc__btn-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;
  }
}