/* style/bnc.css */
:root {
  --bnc-primary-color: #11A84E;
  --bnc-secondary-color: #22C768;
  --bnc-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --bnc-card-bg: #11271B;
  --bnc-bg: #08160F;
  --bnc-text-main: #F2FFF6;
  --bnc-text-secondary: #A7D9B8;
  --bnc-border-color: #2E7A4E;
  --bnc-glow-color: #57E38D;
  --bnc-gold-color: #F2C14E;
  --bnc-divider-color: #1E3A2A;
  --bnc-deep-green: #0A4B2C;
}

.page-bnc {
  font-family: 'Arial', sans-serif;
  color: var(--bnc-text-main); /* Default text color for dark body bg */
  background-color: var(--bnc-bg); /* Ensuring consistency if body bg is not set */
  line-height: 1.6;
}

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

.page-bnc__section--no-padding-top {
    padding-top: 0;
}

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

.page-bnc__dark-bg {
  background-color: var(--bnc-bg);
  color: var(--bnc-text-main);
}

.page-bnc__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-bnc__section-title {
  font-size: 2.5rem;
  color: var(--bnc-gold-color);
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.page-bnc__text-block {
  font-size: 1.1rem;
  color: var(--bnc-text-secondary);
  margin-bottom: 20px;
}

.page-bnc__highlight {
  color: var(--bnc-text-main);
  font-weight: 700;
}

.page-bnc__link {
  color: var(--bnc-gold-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-bnc__link:hover {
  color: var(--bnc-glow-color);
}

/* Hero Section */
.page-bnc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Top padding 10px, rest 60px */
  overflow: hidden;
  min-height: 600px;
}

.page-bnc__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px; /* Space between image and content */
}

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

.page-bnc__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin-top: 20px; /* Adjust as needed */
}

.page-bnc__main-title {
  color: var(--bnc-gold-color);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 3.8rem); /* Responsive font size for H1 */
}

.page-bnc__hero-description {
  font-size: 1.25rem;
  color: var(--bnc-text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-bnc__btn-primary,
.page-bnc__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-bnc__btn-primary {
  background: var(--bnc-button-gradient);
  color: var(--bnc-text-main);
  border: 2px solid transparent;
}

.page-bnc__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-bnc__btn-secondary {
  background-color: transparent;
  color: var(--bnc-gold-color);
  border: 2px solid var(--bnc-gold-color);
}

.page-bnc__btn-secondary:hover {
  background-color: var(--bnc-gold-color);
  color: var(--bnc-bg);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.3);
}

/* General Image Styling */
.page-bnc__image-content {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  object-fit: cover;
}

.page-bnc__image-content--large {
  max-width: 100%;
  height: auto;
}

.page-bnc__image-content--center {
  margin-left: auto;
  margin-right: auto;
}

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

.page-bnc__card {
  background-color: var(--bnc-card-bg);
  border: 1px solid var(--bnc-border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--bnc-text-secondary);
}

.page-bnc__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-bnc__card-title {
  font-size: 1.5rem;
  color: var(--bnc-text-main);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-bnc__card-description {
  font-size: 1rem;
  color: var(--bnc-text-secondary);
}

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

.page-bnc__list-item {
  background-color: var(--bnc-card-bg);
  border: 1px solid var(--bnc-border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  color: var(--bnc-text-secondary);
}

.page-bnc__list-title {
  font-size: 1.4rem;
  color: var(--bnc-gold-color);
  margin-bottom: 10px;
  font-weight: 700;
}

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

.page-bnc__step-card {
  text-align: center;
}

.page-bnc__step-number {
  width: 60px;
  height: 60px;
  background: var(--bnc-button-gradient);
  color: var(--bnc-text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 20px;
  border: 2px solid var(--bnc-glow-color);
}

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

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

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

.page-bnc__promo-card {
  text-align: left;
}

/* FAQ Section */
.page-bnc__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-bnc__faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--bnc-border-color);
  border-radius: 12px;
  background-color: var(--bnc-card-bg);
  color: var(--bnc-text-secondary);
  overflow: hidden;
}

.page-bnc__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bnc-text-main);
  cursor: pointer;
  list-style: none; /* Hide default marker */
}

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

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

.page-bnc__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--bnc-gold-color);
}

.page-bnc__faq-item[open] .page-bnc__faq-toggle {
  content: '−';
}

.page-bnc__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bnc-text-secondary);
}

/* Conclusion Section */
.page-bnc__conclusion-section {
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-bnc__section-title {
    font-size: 2rem;
  }
  .page-bnc__main-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }
  .page-bnc__hero-description {
    font-size: 1.1rem;
  }
  .page-bnc__feature-list,
  .page-bnc__strategy-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-bnc {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-bnc__section {
    padding: 40px 15px;
  }
  .page-bnc__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .page-bnc__main-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }
  .page-bnc__hero-description {
    font-size: 1rem;
  }
  .page-bnc__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-bnc__btn-primary,
  .page-bnc__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-bnc__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-bnc__hero-content {
    margin-top: 0;
  }
  .page-bnc__image-content {
    margin: 20px auto;
  }
  .page-bnc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-bnc video,
  .page-bnc__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-bnc__video-section,
  .page-bnc__video-container,
  .page-bnc__video-wrapper,
  .page-bnc__section,
  .page-bnc__card,
  .page-bnc__container,
  .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;
    overflow: hidden !important;
  }
  .page-bnc__video-section {
    padding-top: 10px !important;
  }
  .page-bnc__card,
  .page-bnc__list-item,
  .page-bnc__step-card,
  .page-bnc__promo-card,
  .page-bnc__faq-item {
    padding: 20px;
    text-align: center;
  }
  .page-bnc__faq-item summary {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
  .page-bnc__faq-answer {
    padding: 0 20px 15px;
  }
  .page-bnc__features-grid,
  .page-bnc__guide-steps,
  .page-bnc__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-bnc__step-card {
    text-align: left;
  }
  .page-bnc__step-number {
    margin-left: 0;
  }
}