.page-bnc {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
}

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

.page-bnc__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-bnc__hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-bnc__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #26A9E0;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size for H1 */
}

.page-bnc__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
}

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

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

.page-bnc__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-bnc__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-bnc__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-bnc__btn-secondary:hover {
  background-color: #e0f0ff;
  color: #1e87c0;
  border-color: #1e87c0;
}

.page-bnc__btn-link {
  background-color: #EA7C07;
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-bnc__btn-link:hover {
  background-color: #c96a06;
  border-color: #c96a06;
}

.page-bnc__introduction-section,
.page-bnc__guide-section,
.page-bnc__promotions-section,
.page-bnc__faq-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  color: #333333;
}

.page-bnc__games-section,
.page-bnc__features-section,
.page-bnc__cta-final-section {
  padding: 60px 20px;
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-bnc__section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-bnc__games-section .page-bnc__section-title,
.page-bnc__features-section .page-bnc__section-title,
.page-bnc__cta-final-section .page-bnc__section-title {
  color: #ffffff;
}

.page-bnc__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-bnc__game-card {
  background-color: #FFFFFF;
  color: #333333;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.page-bnc__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-bnc__game-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #26A9E0;
  padding: 0 15px;
}

.page-bnc__game-description {
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}

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

.page-bnc__guide-item {
  background-color: #f8f8f8;
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-bnc__guide-heading {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-bnc__guide-text {
  font-size: 1em;
  color: #555555;
}

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

.page-bnc__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-bnc__feature-heading {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-bnc__feature-text {
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-bnc__promo-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #555555;
}

.page-bnc__promo-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-bnc__promo-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #f0f0f0;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  list-style: none; /* For details summary */
}

.page-bnc__faq-question::-webkit-details-marker { /* For details summary */
  display: none;
}

.page-bnc__faq-question:hover {
  background-color: #e6e6e6;
}

.page-bnc__faq-qtext {
  flex-grow: 1;
  margin-right: 15px;
}

.page-bnc__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 20px;
  text-align: center;
}

.page-bnc__faq-answer {
  padding: 0 25px;
  background-color: #ffffff;
  color: #555555;
  font-size: 0.95em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-bnc__faq-item[open] .page-bnc__faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px 20px;
}

.page-bnc__faq-item.active .page-bnc__faq-answer {
  max-height: 500px !important; /* For JS-controlled div structure */
  padding: 15px 25px 20px !important;
}

.page-bnc__cta-container {
  text-align: center;
}

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

  .page-bnc__main-title {
    font-size: clamp(24px, 6vw, 36px);
  }

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

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

  .page-bnc__btn-primary,
  .page-bnc__btn-secondary,
  .page-bnc__btn-link {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-bnc__introduction-section,
  .page-bnc__games-section,
  .page-bnc__guide-section,
  .page-bnc__features-section,
  .page-bnc__promotions-section,
  .page-bnc__faq-section,
  .page-bnc__cta-final-section {
    padding: 40px 15px;
  }

  .page-bnc__container {
    padding: 0;
  }

  .page-bnc__section-title {
    font-size: clamp(22px, 5vw, 32px);
  }

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

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

  .page-bnc__game-title {
    font-size: 1.3em;
  }

  .page-bnc__guide-heading,
  .page-bnc__feature-heading {
    font-size: 1.2em;
  }

  .page-bnc__promo-list {
    margin-left: 15px;
  }

  .page-bnc__promo-image {
    margin: 20px auto;
  }

  .page-bnc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-bnc__section,
  .page-bnc__card,
  .page-bnc__container,
  .page-bnc__game-card,
  .page-bnc__guide-item,
  .page-bnc__feature-item,
  .page-bnc__promo-image,
  .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 {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

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

  .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,
  .page-bnc__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}