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

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

.page-bnc__section-title {
  font-size: 2.5em;
  color: var(--text-main-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-bnc__section-description {
  font-size: 1.1em;
  color: var(--text-secondary-color);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.page-bnc__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.page-bnc__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-bnc__text-block {
  flex: 1;
  color: var(--text-main-color);
}

.page-bnc__text-block p {
  margin-bottom: 15px;
  color: var(--text-secondary-color);
}

.page-bnc__text-block h3 {
  color: var(--text-main-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-bnc__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-bnc__content-image {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
}

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

.page-bnc__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-bnc__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-bnc__btn-secondary {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-block;
  margin-left: 20px;
  cursor: pointer;
}

.page-bnc__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.page-bnc__btn-small {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.page-bnc__btn-small:hover {
  transform: translateY(-2px);
}

/* Hero Section */
.page-bnc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* body handles --header-offset */
  padding-bottom: 60px;
  background-color: var(--background-color);
}

.page-bnc__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-bnc__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Pull content up slightly over the image for visual flow */
  position: relative;
  z-index: 1;
  background-color: var(--card-bg-color);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-bnc__main-title {
  color: var(--gold-color);
  font-size: clamp(2em, 4vw, 3.5em);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-bnc__intro-text {
  color: var(--text-secondary-color);
  font-size: 1.2em;
  margin-bottom: 30px;
}

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

/* Intro Section */
.page-bnc__intro-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

/* Video Section */
.page-bnc__video-section {
  padding: 80px 0;
  background-color: var(--deep-green-color);
}

.page-bnc__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-bnc__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

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

.page-bnc__video-caption {
  text-align: center;
  font-style: italic;
  color: var(--text-secondary-color);
  margin-top: 20px;
}

/* Games Section */
.page-bnc__games-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

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

.page-bnc__game-card {
  background-color: var(--card-bg-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  padding-bottom: 20px;
}

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

.page-bnc__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-bnc__game-title {
  font-size: 1.6em;
  color: var(--text-main-color);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-bnc__game-title a {
  color: var(--text-main-color);
  text-decoration: none;
}

.page-bnc__game-title a:hover {
  color: var(--primary-color);
}

.page-bnc__game-description {
  color: var(--text-secondary-color);
  font-size: 0.95em;
  margin-bottom: 20px;
  padding: 0 15px;
}

/* Benefits Section */
.page-bnc__benefits-section {
  padding: 80px 0;
  background-color: var(--deep-green-color);
}

.page-bnc__benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-bnc__benefit-item {
  background-color: var(--card-bg-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-bnc__benefit-item h3 {
  color: var(--gold-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-bnc__benefit-item p {
  color: var(--text-secondary-color);
}

/* Guide Section */
.page-bnc__guide-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

.page-bnc__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

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

.page-bnc__step-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-bnc__step-card p {
  color: var(--text-secondary-color);
  font-size: 1em;
}

.page-bnc__step-card p a {
  color: var(--gold-color);
  text-decoration: none;
  font-weight: bold;
}

.page-bnc__step-card p a:hover {
  text-decoration: underline;
}

/* Promotions Section */
.page-bnc__promotions-section {
  padding: 80px 0;
  background-color: var(--deep-green-color);
}

.page-bnc__promotion-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-bnc__promotion-card {
  background-color: var(--card-bg-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  padding-bottom: 20px;
}

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

.page-bnc__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-bnc__promotion-title {
  font-size: 1.6em;
  color: var(--text-main-color);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-bnc__promotion-description {
  color: var(--text-secondary-color);
  font-size: 0.95em;
  margin-bottom: 20px;
  padding: 0 15px;
}

/* FAQ Section */
.page-bnc__faq-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

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

.page-bnc__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-bnc__faq-item summary {
  list-style: none;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: var(--text-main-color);
  font-size: 1.1em;
  position: relative;
}

.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-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--primary-color);
}

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

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

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

.page-bnc__faq-answer a {
  color: var(--gold-color);
  text-decoration: none;
  font-weight: bold;
}

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

/* Conclusion Section */
.page-bnc__conclusion-section {
  padding: 80px 0;
  background-color: var(--deep-green-color);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-bnc__content-wrapper {
    flex-direction: column;
  }

  .page-bnc__content-wrapper--reverse {
    flex-direction: column;
  }

  .page-bnc__image-block {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-bnc__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-bnc__section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }

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

  .page-bnc__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-bnc__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

  .page-bnc__btn-primary,
  .page-bnc__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-bnc__btn-primary--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }

  .page-bnc__section,
  .page-bnc__card,
  .page-bnc__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .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 {
    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__game-list,
  .page-bnc__promotion-list,
  .page-bnc__guide-steps {
    grid-template-columns: 1fr;
  }

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

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

  .page-bnc__hero-section,
  .page-bnc__intro-section,
  .page-bnc__video-section,
  .page-bnc__games-section,
  .page-bnc__benefits-section,
  .page-bnc__guide-section,
  .page-bnc__promotions-section,
  .page-bnc__faq-section,
  .page-bnc__conclusion-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-bnc__hero-section .page-bnc__container,
  .page-bnc__intro-section .page-bnc__container,
  .page-bnc__video-section .page-bnc__container,
  .page-bnc__games-section .page-bnc__container,
  .page-bnc__benefits-section .page-bnc__container,
  .page-bnc__guide-section .page-bnc__container,
  .page-bnc__promotions-section .page-bnc__container,
  .page-bnc__faq-section .page-bnc__container,
  .page-bnc__conclusion-section .page-bnc__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}