/* style/bnc.css */
.page-bnc {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-bnc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles top padding */
  background-color: #08160F;
  overflow: hidden;
}

.page-bnc__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px; /* Space between image and content */
}

.page-bnc__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum size requirement */
}

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

.page-bnc__main-title {
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

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

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

.page-bnc__cta-group--center {
  margin-top: 30px;
}

.page-bnc__cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

.page-bnc__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-bnc__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Brighter green for contrast */
  border: 2px solid #2AD16F; /* Match brighter green */
}

.page-bnc__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-bnc__section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-bnc__section:nth-of-type(even) {
  background-color: #11271B; /* Card BG */
}

.page-bnc__section-title {
  color: #F2FFF6; /* Text Main */
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 40px;
}

.page-bnc__sub-title {
  color: #22C768; /* Auxiliary color for sub-titles */
  font-size: 1.5em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-bnc__text-block {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-bnc__link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
}

.page-bnc__link:hover {
  text-decoration: underline;
}

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

.page-bnc__list-item {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-bnc__list-item::before {
  content: '✔';
  color: #57E38D; /* Glow */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-bnc__ordered-list {
  list-style: decimal;
  padding-left: 20px;
  margin: 0 0 20px 0;
}

.page-bnc__ordered-list .page-bnc__list-item {
  padding-left: 0;
  margin-bottom: 10px;
}

.page-bnc__ordered-list .page-bnc__list-item::before {
  content: none;
}

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

.page-bnc__game-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-bnc__game-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-height: 200px; /* Minimum size requirement */
}

.page-bnc__game-card-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.3em;
  padding: 15px 20px 5px;
}

.page-bnc__game-card-description {
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px 20px;
}

.page-bnc__guide-steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.page-bnc__guide-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  min-height: 200px; /* Minimum size requirement */
}

.page-bnc__strategy-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.page-bnc__strategy-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  min-height: 200px; /* Minimum size requirement */
}

.page-bnc__promo-banner {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  min-height: 200px; /* Minimum size requirement */
}

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

.page-bnc__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1em;
  background-color: #1E3A2A; /* Divider for FAQ header */
  border-bottom: 1px solid #2E7A4E; /* Border */
  list-style: none;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Safari */
  -khtml-user-select: none;    /* Konqueror HTML */
  -moz-user-select: none;      /* Old versions of Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

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

.page-bnc__faq-toggle {
  font-size: 1.5em;
  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: 20px 25px;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-bnc__conclusion-section {
  text-align: center;
  background-color: #11271B; /* Card BG */
}

.page-bnc__conclusion-section .page-bnc__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-bnc__guide-steps-wrapper {
    flex-direction: row;
    align-items: center;
  }

  .page-bnc__guide-image,
  .page-bnc__guide-content {
    flex: 1;
  }

  .page-bnc__strategy-wrapper {
    flex-direction: row-reverse; /* Image on right for strategy */
    align-items: center;
  }

  .page-bnc__strategy-image,
  .page-bnc__strategy-content {
    flex: 1;
  }

  .page-bnc__hero-image-wrapper {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .page-bnc__container {
    padding: 0 15px;
  }

  .page-bnc__hero-section {
    padding-bottom: 40px;
  }

  .page-bnc__main-title {
    font-size: 1.8em;
  }

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

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

  .page-bnc__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }

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

  .page-bnc__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-bnc__sub-title {
    font-size: 1.3em;
    margin-top: 25px;
  }

  .page-bnc__game-cards-wrapper {
    grid-template-columns: 1fr;
  }

  .page-bnc__game-card-image {
    height: 200px; /* Adjust height for mobile */
  }

  .page-bnc__list-item {
    padding-left: 20px;
  }

  .page-bnc__list-item::before {
    left: -5px;
  }

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

  .page-bnc__hero-image-wrapper,
  .page-bnc__guide-steps-wrapper,
  .page-bnc__strategy-wrapper,
  .page-bnc__promo-section,
  .page-bnc__game-showcase-section,
  .page-bnc__intro-section,
  .page-bnc__guide-section,
  .page-bnc__strategy-section,
  .page-bnc__why-choose-section,
  .page-bnc__faq-section,
  .page-bnc__conclusion-section,
  .page-bnc__game-card,
  .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__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .page-bnc__hero-image {
    border-radius: 0;
  }

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

  .page-bnc__faq-answer {
    padding: 15px 20px;
  }
}

/* Ensure no filter on images */
.page-bnc img {
  filter: none !important;
}