.page-bnc {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light body background */
  background-color: var(--background-color, #FFFFFF);
}

.page-bnc__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding for content */
  background: linear-gradient(180deg, #26A9E0 0%, #FFFFFF 100%);
}

.page-bnc__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-bnc__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  z-index: 1;
  color: #FFFFFF;
  margin-top: -80px; /* Overlap slightly with the image for visual flow */
}

.page-bnc__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-bnc__description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #FFFFFF;
  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-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-bnc__btn-primary {
  background: #EA7C07; /* Login color for primary action */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-bnc__btn-primary:hover {
  background: #d66a00;
  border-color: #d66a00;
}

.page-bnc__btn-secondary {
  background: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-bnc__btn-secondary:hover {
  background: #e0f2f7;
  color: #26A9E0;
}

.page-bnc__btn-large {
  min-width: 200px;
  font-size: 1.1em;
}

.page-bnc__game-showcase-section,
.page-bnc__guide-section,
.page-bnc__features-section,
.page-bnc__promotions-section,
.page-bnc__faq-section,
.page-bnc__call-to-action-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-bnc__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
}

.page-bnc__section-description {
  font-size: 1.1em;
  line-height: 1.7;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-bnc__card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  color: #333333;
}

.page-bnc__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.page-bnc__card-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-bnc__card-title a {
  color: #26A9E0;
  text-decoration: none;
}

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

.page-bnc__card-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}

.page-bnc__card-button {
  display: inline-block;
  padding: 10px 25px;
  background: #26A9E0;
  color: #FFFFFF;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  margin-top: auto;
}

.page-bnc__card-button:hover {
  background: #1e87b6;
}

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

.page-bnc__guide-item {
  background: #F8F8F8;
  border-left: 5px solid #26A9E0;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-bnc__guide-heading {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-bnc__guide-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-bnc__guide-item p a {
  color: #EA7C07;
  text-decoration: none;
  font-weight: bold;
}

.page-bnc__guide-item p a:hover {
  text-decoration: underline;
}

.page-bnc__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

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

.page-bnc__feature-item {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-bnc__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}

.page-bnc__feature-heading {
  font-size: 1.3em;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-bnc__feature-item p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
}

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

.page-bnc__promo-card {
  background: linear-gradient(145deg, #e0f7fa 0%, #ffffff 100%);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-bnc__promo-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-bnc__promo-title a {
  color: #26A9E0;
  text-decoration: none;
}

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

.page-bnc__promo-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-bnc__faq-item {
  background: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #f5f5f5;
  font-weight: bold;
  color: #333333;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-bnc__faq-question::-webkit-details-marker {
  display: none;
}

.page-bnc__faq-item[open] .page-bnc__faq-question {
  background-color: #e9e9e9;
}

.page-bnc__faq-qtext {
  flex-grow: 1;
  font-size: 1.1em;
  color: #26A9E0;
}

.page-bnc__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-bnc__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  border-top: 1px solid #eee;
}

.page-bnc__faq-answer p a {
  color: #EA7C07;
  text-decoration: none;
  font-weight: bold;
}

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

.page-bnc__call-to-action-section {
  text-align: center;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 80px 20px;
  border-radius: 15px;
  margin-bottom: 60px;
}

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

.page-bnc__call-to-action-section .page-bnc__section-description a {
  color: #FFFFFF;
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-bnc__main-title {
    font-size: 2.8em;
  }
  .page-bnc__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-bnc__hero-content {
    margin-top: -40px;
    padding: 20px 15px;
  }
  .page-bnc__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 15px;
  }
  .page-bnc__description {
    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;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-bnc__game-showcase-section,
  .page-bnc__guide-section,
  .page-bnc__features-section,
  .page-bnc__promotions-section,
  .page-bnc__faq-section,
  .page-bnc__call-to-action-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-bnc__section-title {
    font-size: 1.8em;
  }
  .page-bnc__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-bnc__card-image,
  .page-bnc__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-bnc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-bnc__card,
  .page-bnc__guide-item,
  .page-bnc__feature-item,
  .page-bnc__promo-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-bnc__faq-question {
    padding: 15px 20px;
  }
  .page-bnc__faq-qtext {
    font-size: 1em;
  }
  .page-bnc__faq-answer {
    padding: 10px 20px 15px;
  }
  .page-bnc__call-to-action-section {
    padding: 50px 15px;
  }
  .page-bnc__game-cards,
  .page-bnc__guide-steps,
  .page-bnc__features-grid,
  .page-bnc__promo-cards {
    gap: 20px;
  }
}