.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: 20px;
}

/* Hero Section */
.page-bnc__hero-section {
  padding-top: 10px; /* Rely on body padding-top from shared.css */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}

.page-bnc__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.page-bnc__hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.page-bnc__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
}

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

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

.page-bnc__btn-primary,
.page-bnc__btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  color: #F2FFF6; /* Text Main */
}

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

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

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

.page-bnc__btn-secondary:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Border color with opacity */
  transform: translateY(-2px);
}

.page-bnc__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
}

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

/* Introduction Section */
.page-bnc__introduction-section,
.page-bnc__guide-section,
.page-bnc__promotions-section,
.page-bnc__benefits-section,
.page-bnc__faq-section,
.page-bnc__conclusion-section {
  padding: 60px 0;
}

/* Game Types Section */
.page-bnc__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
  justify-items: center;
}

.page-bnc__game-tile {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #F2FFF6; /* Text Main */
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
  height: 380px; /* Adjusted height for content */
  overflow: hidden;
}

.page-bnc__game-tile:hover {
  transform: translateY(-5px);
}

.page-bnc__game-image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-bnc__game-title {
  font-size: 1.3rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-bnc__game-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-bnc__btn-small {
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  transition: opacity 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
}

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

/* Guide Section */
.page-bnc__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-bnc__guide-step {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #F2FFF6; /* Text Main */
  border-left: 5px solid #11A84E; /* Main Color */
}

.page-bnc__step-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-bnc__step-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-bnc__btn-inline {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  background: #22C768; /* Auxiliary Color */
  color: #08160F; /* Background color for contrast */
  transition: background-color 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
}

.page-bnc__btn-inline:hover {
  background-color: #11A84E; /* Main Color */
  color: #F2FFF6;
}

/* Promotions Section */
.page-bnc__promo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  list-style: none;
  padding: 0;
}

.page-bnc__promo-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #F2FFF6; /* Text Main */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-bnc__promo-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-bnc__promo-title {
  font-size: 1.3rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-bnc__promo-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  flex-grow: 1;
}

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

/* Benefits Section */
.page-bnc__benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
  list-style: none;
  padding: 0;
}

.page-bnc__benefit-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #F2FFF6; /* Text Main */
}

.page-bnc__benefit-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 50%;
  background-color: rgba(17, 168, 78, 0.2); /* Main color with opacity */
  padding: 10px;
}

.page-bnc__benefit-title {
  font-size: 1.2rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

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

/* FAQ Section */
.page-bnc__faq-list {
  margin-top: 30px;
}

.page-bnc__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
  border: 1px solid #1E3A2A; /* Divider */
}

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  user-select: none;
  list-style: none; /* For <summary> tag */
}

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

.page-bnc__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-bnc__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

.page-bnc__faq-item[open] .page-bnc__faq-toggle {
  transform: rotate(45deg); /* Change '+' to 'x' or '-' */
}

.page-bnc__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.5;
}

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

.page-bnc__faq-answer a {
  color: #22C768; /* Auxiliary Color */
  text-decoration: underline;
}

.page-bnc__faq-answer a:hover {
  color: #11A84E; /* Main Color */
}

/* Conclusion Section */
.page-bnc__conclusion-section .page-bnc__text-block {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-bnc__container {
    padding: 15px;
  }

  .page-bnc__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

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

  .page-bnc__section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .page-bnc__game-grid,
  .page-bnc__guide-steps,
  .page-bnc__promo-list,
  .page-bnc__benefit-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-bnc__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }

  .page-bnc__hero-image-wrapper {
    max-height: 400px;
  }

  .page-bnc__hero-image {
    object-fit: contain !important; /* Mobile hero must contain, not cover */
    aspect-ratio: unset !important;
    max-height: none !important;
  }

  .page-bnc__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 10px;
  }

  .page-bnc__hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .page-bnc__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-bnc__btn-primary,
  .page-bnc__btn-secondary,
  .page-bnc__btn-small,
  .page-bnc__btn-inline,
  .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.4rem, 5vw, 2rem);
    padding-top: 20px;
  }

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

  /* General image and container responsiveness */
  .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-tile,
  .page-bnc__guide-step,
  .page-bnc__promo-item,
  .page-bnc__benefit-item,
  .page-bnc__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-bnc__game-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    overflow-x: hidden;
  }

  .page-bnc__game-tile {
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 15px;
  }

  .page-bnc__game-image {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
  }

  .page-bnc__game-title {
    font-size: 1.1rem;
    margin-top: 10px;
  }

  .page-bnc__game-description {
    display: none; /* Hide description on small screens for brevity */
  }

  .page-bnc__guide-steps,
  .page-bnc__promo-list,
  .page-bnc__benefit-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .page-bnc__benefit-icon {
    width: 50px;
    height: 50px;
  }
}