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

.page-bnc {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--color-text-main); /* Default text color for the page */
  background-color: var(--color-background-main); /* Main page background */
}

.page-bnc a {
  color: var(--color-gold);
  text-decoration: none;
}

.page-bnc a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-bnc__hero-section {
  position: relative;
  width: 100%;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
}

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

.page-bnc__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.page-bnc__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  margin-top: 50px; /* Adjust for header if needed, but body padding should handle it */
}

.page-bnc__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-gold);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-bnc__hero-description {
  font-size: 1.2rem;
  color: var(--color-text-main);
  margin-bottom: 30px;
}

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

.page-bnc__btn-primary,
.page-bnc__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

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

.page-bnc__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(var(--color-primary), 0.4);
}

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

.page-bnc__btn-secondary:hover {
  background: var(--color-border);
  color: var(--color-text-main);
}

.page-bnc__btn-full-width {
  width: 100%;
  max-width: 400px; /* Limit width for better appearance on larger screens */
  margin: 0 auto;
  display: block;
}

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

/* General Section Styling */
.page-bnc__section {
  padding: 60px 20px;
  background-color: var(--color-background-main);
  color: var(--color-text-main);
}

.page-bnc__introduction {
  padding-top: 10px; /* Small top padding for the first content section */
}

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

.page-bnc__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

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

.page-bnc__card {
  background-color: var(--color-background-card);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-text-main);
}

.page-bnc__card-image {
  width: 100%;
  max-width: 400px; /* Example size, adjust as needed */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-bnc__card-title {
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-bottom: 15px;
  font-weight: bold;
}

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

/* List Styles */
.page-bnc__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-bnc__list-item {
  background-color: var(--color-background-card);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid var(--color-primary);
  border-radius: 5px;
  font-size: 1.1rem;
  color: var(--color-text-main);
}

.page-bnc__ordered-list {
  list-style-type: decimal;
  padding-left: 25px;
}

.page-bnc__ordered-list .page-bnc__list-item {
  background-color: transparent;
  border-left: none;
  padding: 5px 0;
  margin-bottom: 15px;
  color: var(--color-text-main);
}

.page-bnc__ordered-list .page-bnc__list-item strong {
  color: var(--color-gold);
}

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

.page-bnc__faq-item {
  background-color: var(--color-background-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-text-main);
  cursor: pointer;
  background-color: var(--color-deep-green);
  transition: background-color 0.3s ease;
}

.page-bnc__faq-question:hover {
  background-color: var(--color-primary);
}

.page-bnc__faq-item[open] .page-bnc__faq-question {
  background-color: var(--color-primary);
}

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

.page-bnc__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05rem;
  color: var(--color-text-secondary);
}

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

/* Video Section (if any, not explicitly in outline but common for games) */
.page-bnc__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  background-color: var(--color-background-main);
  padding-top: 10px; /* Small top padding for the first content section */
  box-sizing: border-box;
}

.page-bnc__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  aspect-ratio: 16 / 9; /* Maintain 16:9 aspect ratio */
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(var(--color-primary), 0.5);
}

.page-bnc__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-bnc {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-bnc__hero-section {
    min-height: 400px;
    padding: 15px;
  }

  .page-bnc__hero-content {
    padding: 15px;
    margin-top: 30px;
  }

  .page-bnc__main-title {
    font-size: 2.2rem; /* Adjusted for mobile */
  }

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

  .page-bnc__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .page-bnc__btn-primary,
  .page-bnc__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    margin: 0 auto;
  }

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

  .page-bnc__container {
    padding: 0 10px;
  }

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

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

  .page-bnc__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-bnc__card {
    padding: 20px;
  }

  .page-bnc__card-title {
    font-size: 1.2rem;
  }

  .page-bnc__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-bnc__list-item {
    font-size: 1rem;
    padding: 12px 15px;
  }

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

  .page-bnc__faq-toggle {
    font-size: 1.3rem;
  }

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

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

  .page-bnc__section,
  .page-bnc__card,
  .page-bnc__container,
  .page-bnc__video-section,
  .page-bnc__video-container,
  .page-bnc__video-wrapper,
  .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__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-bnc__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}