.page-bnc {
  background-color: #0D0E12;
  color: #FFF3E6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

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

.page-bnc__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

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

.page-bnc__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  z-index: 1;
  position: relative;
  background-color: #17191F; /* Slightly darker background for text readability */
  border-radius: 8px;
  margin-top: -80px; /* Pull content up slightly over the image, but not overlapping text */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-bnc__hero-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFF3E6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-bnc__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-bnc__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-bnc__section-title--gradient {
  background: linear-gradient(to right, #FFB04D, #FFA53A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback for browsers that don't support background-clip */
}

.page-bnc__section-description {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF3E6;
}

.page-bnc__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 150px;
  text-align: center;
}

.page-bnc__btn--primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  border: 2px solid #A84F0C;
}

.page-bnc__btn--primary:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #FFA53A 100%);
  box-shadow: 0 0 15px #FFB04D;
}

.page-bnc__btn--secondary {
  background-color: #17191F;
  color: #FFF3E6;
  border: 2px solid #A84F0C;
}

.page-bnc__btn--secondary:hover {
  background-color: #2a2c34;
  box-shadow: 0 0 10px #A84F0C;
}

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

.page-bnc__feature-card {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #A84F0C;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  background-color: #17191F;
}

.page-bnc__feature-icon {
  width: 100%; /* Ensure image fills card */
  max-width: 250px; /* Max width for feature icon */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
  object-fit: cover;
}

.page-bnc__feature-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #FFF3E6;
}

.page-bnc__feature-text {
  font-size: 1rem;
  color: #FFF3E6;
}

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

.page-bnc__game-card {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #A84F0C;
  background-color: #17191F;
}

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

.page-bnc__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency in grid */
  object-fit: cover;
  display: block;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-bnc__game-title {
  color: #FFF3E6;
  font-size: 1.2rem;
  padding: 15px;
  text-align: center;
}

.page-bnc__button-container {
  text-align: center;
  margin-top: 40px;
}

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

.page-bnc__step-item {
  background-color: #17191F;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #A84F0C;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-bnc__step-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #FFA53A;
}

.page-bnc__step-text {
  font-size: 1rem;
  color: #FFF3E6;
}

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

.page-bnc__promo-card {
  background-color: #17191F;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #A84F0C;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-bnc__promo-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
  object-fit: cover;
}

.page-bnc__promo-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #FFF3E6;
}

.page-bnc__promo-text {
  font-size: 1rem;
  color: #FFF3E6;
}

.page-bnc__join-buttons {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 849px) {
  .page-bnc__hero-content {
    margin-top: -40px; /* Adjust margin for smaller screens */
    padding: 25px 15px;
  }
  .page-bnc__hero-image-wrapper {
    padding-bottom: 75%; /* Adjust aspect ratio for better mobile display */
  }
  .page-bnc__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* More compact grid */
  }
  .page-bnc__game-image {
    height: 150px; /* Adjust height for mobile */
  }
  .page-bnc__feature-card, .page-bnc__step-item, .page-bnc__promo-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .page-bnc__hero-image,
  .page-bnc__feature-icon,
  .page-bnc__game-image,
  .page-bnc__promo-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
  .page-bnc {
    overflow-x: hidden;
  }
}

@media (max-width: 549px) {
  .page-bnc__hero-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-bnc__hero-description {
    font-size: 1rem;
  }
  .page-bnc__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .page-bnc__features-grid,
  .page-bnc__steps-list,
  .page-bnc__promo-cards {
    grid-template-columns: 1fr; /* Single column layout for very small screens */
  }
  .page-bnc__game-grid {
    grid-template-columns: 1fr; /* Single column layout for very small screens */
  }
  .page-bnc__hero-image-wrapper {
    padding-bottom: 100%; /* Make hero image square on very small screens */
  }
  .page-bnc__hero-content {
    margin-top: -60px; /* Adjust margin */
  }
  .page-bnc__btn {
    width: 100%;
    max-width: 250px;
  }
  .page-bnc__join-buttons {
    flex-direction: column;
    align-items: center;
  }
  /* Content area images minimum size check */
  .page-bnc img {
    min-width: 200px !important;
    min-height: 200px !important;
    width: 100% !important;
    height: auto !important;
  }
}