.page-bnc {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

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

.page-bnc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small padding-top to avoid header overlap */
  background-color: #F4F7FB;
}

.page-bnc__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-bnc__hero-content {
  text-align: center;
  padding: 0 20px 40px;
  max-width: 900px;
}

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

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

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

.page-bnc__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-bnc__button--register,
.page-bnc__button--login,
.page-bnc__button--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
}

.page-bnc__button--play {
  background-color: #FFFFFF;
  color: #2F6BFF;
  border: 1px solid #2F6BFF;
}

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

.page-bnc__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-bnc__about-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  border-radius: 8px;
  margin: 40px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-bnc__text-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1F2D3D;
  margin-bottom: 25px;
  text-align: justify;
}

.page-bnc__image-content {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-bnc__features-section {
  padding: 60px 0;
}

.page-bnc__features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-bnc__feature-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-bnc__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-bnc__feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-bnc__call-to-action-section {
  background-color: #2F6BFF;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  margin-top: 60px;
}

.page-bnc__call-to-action-section .page-bnc__section-title {
  color: #FFFFFF;
}

.page-bnc__call-to-action-section .page-bnc__text-content {
  color: #FFFFFF;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-bnc__hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .page-bnc__section-title {
    font-size: 1.8rem;
  }

  .page-bnc__features-list {
    grid-template-columns: 1fr;
  }

  .page-bnc__hero-buttons {
    flex-direction: column;
  }

  .page-bnc__button {
    width: 100%;
    max-width: 250px;
  }

  .page-bnc__hero-image,
  .page-bnc__image-content {
    max-width: 100%;
    height: auto;
  }
  
  .page-bnc__about-section, .page-bnc__features-section, .page-bnc__call-to-action-section {
    padding: 30px 0;
  }
  .page-bnc__container {
    padding: 15px;
  }
}

/* Ensure all content area images are responsive and do not overflow */
@media (max-width: 768px) {
  .page-bnc img {
    max-width: 100%;
    height: auto;
  }
}