.page-bnc {
  background-color: #140C0C;
  color: #FFF1E8;
  font-family: Arial, sans-serif;
}

.page-bnc__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

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

.page-bnc__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Adjust to bring content closer to image, but not over */
  background: linear-gradient(180deg, rgba(20, 12, 12, 0) 0%, #140C0C 50%);
  width: 100%;
}

.page-bnc__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #F3C54D;
  margin-bottom: 20px;
}

.page-bnc__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-bnc__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-bnc__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.page-bnc__btn--primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  border: none;
}

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

.page-bnc__btn--secondary {
  background-color: #2A1212;
  color: #FFF1E8;
  border: 1px solid #6A1E1E;
}

.page-bnc__btn--secondary:hover {
  background-color: #6A1E1E;
}

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

.page-bnc__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #F3C54D;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-bnc__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFB04A 0%, #D86A14 100%);
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-bnc__section-description {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-bnc__about-section, .page-bnc__gameplay-section, .page-bnc__cta-section {
  padding: 60px 0;
  background-color: #140C0C;
}

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

.page-bnc__feature-card {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-bnc__feature-title {
  font-size: 1.4rem;
  color: #E53030;
  margin-bottom: 15px;
}

.page-bnc__feature-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #FFF1E8;
}

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

.page-bnc__game-card {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.page-bnc__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #6A1E1E;
  display: block;
}

.page-bnc__game-title {
  font-size: 1.5rem;
  color: #F3C54D;
  margin: 20px 0 10px;
}

.page-bnc__game-text {
  font-size: 1rem;
  color: #FFF1E8;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-bnc__btn--play {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  padding: 10px 20px;
  border-radius: 5px;
}

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

.page-bnc__cta-section {
  text-align: center;
  background-color: #2A1212;
  border-top: 1px solid #6A1E1E;
  border-bottom: 1px solid #6A1E1E;
}

.page-bnc__cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #F3C54D;
  margin-bottom: 20px;
}

.page-bnc__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-bnc__hero-content {
    margin-top: -50px;
    padding: 20px 15px;
  }

  .page-bnc__hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

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

  .page-bnc__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-bnc__btn {
    width: 100%;
  }

  .page-bnc__container {
    padding: 20px 15px;
  }

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

  .page-bnc__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-bnc__features-grid, .page-bnc__game-showcase {
    grid-template-columns: 1fr;
  }

  .page-bnc__game-image {
    height: 200px;
  }

  .page-bnc__cta-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

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

  /* Ensure all content area images are responsive */
  .page-bnc img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-bnc__hero-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .page-bnc__btn--large {
    font-size: 1rem;
    padding: 12px 25px;
  }
}