.page-bnc {
  color: #ffffff; /* Body background is dark (#0a0a0a), so use light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-bnc__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-bnc__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image slightly for text readability */
}

.page-bnc__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
}

.page-bnc__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /* No fixed font-size, rely on clamp for responsiveness if needed */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-bnc__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-bnc__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%; /* Ensure full width for responsiveness */
  max-width: 100%;
  box-sizing: border-box;
}

.page-bnc__btn-primary,
.page-bnc__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  text-align: center;
  max-width: 100%; /* Ensure buttons adapt to container width */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word;
}

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

.page-bnc__btn-primary:hover {
  background-color: #1a8cc4;
  transform: translateY(-2px);
}

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

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

.page-bnc__section {
  padding: 80px 20px;
  text-align: center;
  box-sizing: border-box;
}

.page-bnc__introduction {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-bnc__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-bnc__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #ffffff;
}

.page-bnc__introduction .page-bnc__section-title {
  color: #ffffff;
}

.page-bnc__text-block {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
  text-align: left;
}

.page-bnc__text-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-bnc__text-link:hover {
  text-decoration: underline;
}

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

.page-bnc__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 10px;
}

.page-bnc__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 10px;
  display: block; /* Ensure video behaves as block for max-width */
}

.page-bnc__game-titles {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-bnc__game-titles .page-bnc__section-title {
  color: #ffffff;
}

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

.page-bnc__card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark bg */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Ensure cards are same height */
  box-sizing: border-box;
}

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

.page-bnc__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-bnc__card-description {
  font-size: 1rem;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: left;
}

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

.page-bnc__how-to-play {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-bnc__how-to-play .page-bnc__section-title {
  color: #ffffff;
}

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

.page-bnc__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.page-bnc__step-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-bnc__step-description {
  font-size: 1rem;
  color: #f0f0f0;
}

.page-bnc__cta-wrapper {
  margin-top: 50px;
}

.page-bnc__btn-large {
  padding: 18px 35px;
  font-size: 1.2rem;
}

.page-bnc__promotions {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-bnc__promotions .page-bnc__section-title {
  color: #ffffff;
}

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

.page-bnc__promo-card {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.page-bnc__why-choose-us {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-bnc__why-choose-us .page-bnc__section-title {
  color: #ffffff;
}

.page-bnc__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-bnc__feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.page-bnc__feature-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-bnc__feature-description {
  font-size: 1rem;
  color: #f0f0f0;
}

.page-bnc__mobile-gaming-wrapper {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-bnc__mobile-gaming-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-bnc__faq-section {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-bnc__faq-section .page-bnc__section-title {
  color: #ffffff;
}

.page-bnc__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-bnc__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

.page-bnc__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #f0f0f0;
  line-height: 1.7;
}

.page-bnc__conclusion {
  background-color: #0a0a0a;
  color: #ffffff;
  padding-bottom: 80px;
}

.page-bnc__conclusion .page-bnc__section-title {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-bnc__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-bnc__section-title {
    font-size: 2rem;
  }

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

  .page-bnc__section {
    padding: 60px 15px;
  }
}

@media (max-width: 768px) {
  .page-bnc__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

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

  .page-bnc__section-title {
    font-size: 1.8rem;
  }

  .page-bnc__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 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__cta-buttons,
  .page-bnc__button-group,
  .page-bnc__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

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

  .page-bnc__section {
    padding: 40px 15px;
  }

  /* Image responsive adaptations */
  .page-bnc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-bnc__card-image {
    height: auto !important;
    min-height: 200px; /* Ensure minimum size */
  }

  .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; /* Prevent horizontal scroll */
  }

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

  .page-bnc__video-wrapper {
    padding-bottom: 56.25% !important; /* Maintain aspect ratio */
    height: 0 !important;
    overflow: hidden !important;
  }

  .page-bnc__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-bnc__text-block {
    text-align: center;
  }

  .page-bnc__feature-list {
    grid-template-columns: 1fr;
  }

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

  .page-bnc__faq-answer {
    font-size: 0.95rem;
    padding: 15px;
  }
}