.page-bnc {
  font-family: 'Arial', sans-serif;
  background-color: #0A0A0A;
  color: #FFF6D6;
  line-height: 1.6;
}

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

.page-bnc__section {
  padding: 60px 0;
  text-align: center;
}

.page-bnc__section-title {
  font-size: 2.5em;
  color: #F2C14E;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-bnc__section-intro {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-bnc__main-title {
  font-weight: bold;
  color: #F2C14E;
  line-height: 1.2;
  max-width: 900px;
  margin: 20px auto;
  font-size: clamp(1.8em, 3.5vw, 2.8em); /* Clamp for responsive H1 */
  letter-spacing: 0.5px;
}

.page-bnc__description {
  font-size: 1.1em;
  color: #FFF6D6;
  max-width: 900px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
}

.page-bnc__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  background-color: #0A0A0A;
}

.page-bnc__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.page-bnc__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-bnc__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px 80px;
  text-align: center;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, #0A0A0A 100%);
  margin-top: -100px; /* Pull content up over the image slightly for visual flow */
}

.page-bnc__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.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: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-bnc__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: 2px solid transparent;
}

.page-bnc__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(242, 193, 78, 0.4);
}

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

.page-bnc__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(242, 193, 78, 0.2);
}

.page-bnc__inline-link {
  color: #FFD36B;
  text-decoration: underline;
}

.page-bnc__inline-link:hover {
  color: #F2C14E;
}

.page-bnc__about-game-section .page-bnc__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
  align-items: center;
}

.page-bnc__text-block {
  padding: 20px;
  background-color: #111111;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-bnc__subsection-title {
  font-size: 1.6em;
  color: #FFD36B;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-bnc__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-bnc__feature-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23F2C14E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #FFF6D6;
}

.page-bnc__image-card {
  background-color: #111111;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-bnc__image-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.page-bnc__image-caption {
  margin-top: 15px;
  font-size: 0.9em;
  color: #B0B0B0;
}

.page-bnc__games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.page-bnc__game-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-bnc__game-card:hover {
  transform: translateY(-5px);
  border-color: #F2C14E;
}

.page-bnc__game-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-bnc__game-title {
  font-size: 1.4em;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-bnc__game-description {
  font-size: 0.95em;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-bnc__btn-small {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-bnc__btn-small:hover {
  filter: brightness(1.1);
}

.page-bnc__guide-section .page-bnc__content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  text-align: left;
  align-items: flex-start;
}

.page-bnc__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-bnc__guide-step {
  background-color: #111111;
  border-left: 5px solid #F2C14E;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-bnc__step-title {
  font-size: 1.5em;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-bnc__guide-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  align-self: center;
}

.page-bnc__promo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.page-bnc__promo-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-bnc__promo-card:hover {
  transform: translateY(-5px);
  border-color: #F2C14E;
}

.page-bnc__promo-card img {
  width: 100%;
   /* Fixed height for promo images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-bnc__promo-title {
  font-size: 1.4em;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-bnc__promo-description {
  font-size: 0.95em;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-bnc__benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: left;
}

.page-bnc__benefit-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-bnc__benefit-title {
  font-size: 1.5em;
  color: #FFD36B;
  margin-bottom: 10px;
}

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

.page-bnc__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  color: #F2C14E;
  font-weight: bold;
  cursor: pointer;
  background-color: #1a1a1a;
  user-select: none;
  list-style: none;
}

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

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

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

.page-bnc__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #FFD36B;
  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: 1em;
  color: #FFF6D6;
  line-height: 1.7;
  opacity: 0;
  max-height: 0;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.page-bnc__faq-item[open] .page-bnc__faq-answer {
  opacity: 1;
  max-height: 500px; /* Sufficiently large for content */
}

.page-bnc__conclusion-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #0A0A0A;
}

/* --- Responsive Styles (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .page-bnc__section-title {
    font-size: 2em;
  }
  .page-bnc__main-title {
    font-size: clamp(1.6em, 3vw, 2.5em);
  }
  .page-bnc__description, .page-bnc__section-intro {
    font-size: 1em;
  }
  .page-bnc__about-game-section .page-bnc__content-grid {
    grid-template-columns: 1fr;
  }
  .page-bnc__games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-bnc__guide-section .page-bnc__content-wrapper {
    grid-template-columns: 1fr;
  }
  .page-bnc__promo-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-bnc__benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Responsive Styles (max-width: 768px) --- */
@media (max-width: 768px) {
  .page-bnc {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-bnc__container {
    padding: 0 15px !important;
  }
  .page-bnc__section {
    padding: 40px 0 !important;
  }
  .page-bnc__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
  }
  .page-bnc__hero-content {
    padding: 20px 15px 40px !important;
    margin-top: -50px; /* Adjust for smaller screens */
  }
  .page-bnc__main-title {
    font-size: clamp(1.5em, 8vw, 2em) !important;
    margin: 15px auto !important;
  }
  .page-bnc__description, .page-bnc__section-intro {
    font-size: 0.95em !important;
    margin-bottom: 20px !important;
  }

  /* General image responsiveness for content area */
  .page-bnc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-bnc__section,
  .page-bnc__card,
  .page-bnc__container,
  .page-bnc__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  /* Buttons and button containers */
  .page-bnc__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px !important;
    padding: 0 15px !important;
  }
  .page-bnc__btn-primary,
  .page-bnc__btn-secondary,
  .page-bnc__btn-small,
  .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: 12px 20px !important;
    font-size: 1em !important;
  }
  
  .page-bnc__about-game-section .page-bnc__content-grid {
    grid-template-columns: 1fr !important;
  }
  .page-bnc__games-grid {
    grid-template-columns: 1fr !important;
  }
  .page-bnc__game-card img {
     /* Adjust height for mobile */
  }
  .page-bnc__guide-section .page-bnc__content-wrapper {
    grid-template-columns: 1fr !important;
  }
  .page-bnc__guide-image {
    margin-top: 30px;
  }
  .page-bnc__promo-cards {
    grid-template-columns: 1fr !important;
  }
  .page-bnc__promo-card img {
    
  }
  .page-bnc__benefits-grid {
    grid-template-columns: 1fr !important;
  }
  .page-bnc__faq-question {
    font-size: 1em !important;
    padding: 15px 20px !important;
  }
  .page-bnc__faq-answer {
    padding: 0 20px 15px !important;
  }
  .page-bnc__text-block, .page-bnc__image-card, .page-bnc__game-card, .page-bnc__promo-card, .page-bnc__benefit-item, .page-bnc__guide-step, .page-bnc__faq-item {
    padding: 15px !important;
  }
  .page-bnc__feature-list li {
    padding-left: 25px !important;
    background-size: 18px !important;
  }
}