.page-bnc {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-bnc__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-bnc__light-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

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

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

.page-bnc__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
}

.page-bnc__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-bnc__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-bnc__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-bnc__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-bnc__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-bnc__btn-secondary {
  background: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
  margin-left: 15px;
}

.page-bnc__btn-secondary:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Border with some opacity */
  transform: translateY(-2px);
}

.page-bnc__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-bnc__section-description {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-bnc__features-section, .page-bnc__games-showcase, .page-bnc__guide-section, .page-bnc__tips-section, .page-bnc__promotions-section, .page-bnc__safety-section, .page-bnc__faq-section, .page-bnc__cta-final-section {
  padding: 80px 0;
}

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

.page-bnc__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  color: #F2FFF6; /* Text Main */
}

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

.page-bnc__feature-icon, .page-bnc__game-image, .page-bnc__promo-image, .page-bnc__tip-icon {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
}

.page-bnc__feature-heading, .page-bnc__game-title, .page-bnc__promo-title, .page-bnc__tip-heading {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-bnc__feature-text, .page-bnc__game-description, .page-bnc__promo-text, .page-bnc__tip-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-bnc__game-card .page-bnc__cta-button {
  margin-top: 20px;
  margin-left: 0;
  width: auto;
}

.page-bnc__view-all-button-container {
  text-align: center;
  margin-top: 60px;
}

.page-bnc__step-item {
  text-align: center;
  position: relative;
  padding: 20px;
  border-radius: 10px;
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
}

.page-bnc__step-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2AD16F; /* Button top gradient color */
  margin-bottom: 15px;
}

.page-bnc__step-heading {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-bnc__step-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-bnc__safety-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
}

.page-bnc__safety-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
}

.page-bnc__safety-item::before {
  content: '✔';
  color: #2AD16F; /* Button top gradient color */
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.5rem;
}

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

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

.page-bnc__faq-item {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid #2E7A4E;
}

.page-bnc__faq-item[open] .page-bnc__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

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

.page-bnc__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #2AD16F;
  transition: transform 0.3s ease;
}

.page-bnc__faq-item[open] .page-bnc__faq-toggle {
  transform: rotate(45deg);
}

.page-bnc__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-bnc__faq-answer p {
  margin: 0;
}

.page-bnc__cta-final-section {
  text-align: center;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-bnc__hero-content {
    padding: 20px;
  }
  .page-bnc__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-bnc__hero-description {
    font-size: 1rem;
  }
  .page-bnc__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-bnc__hero-section {
    min-height: 450px;
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-bnc__hero-content {
    padding: 15px;
  }
  .page-bnc__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-bnc__hero-description {
    font-size: 0.95rem;
  }
  .page-bnc__cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
    margin-left: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-bnc__btn-secondary {
    margin-top: 15px;
  }
  .page-bnc__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-bnc__features-section, .page-bnc__games-showcase, .page-bnc__guide-section, .page-bnc__tips-section, .page-bnc__promotions-section, .page-bnc__safety-section, .page-bnc__faq-section, .page-bnc__cta-final-section {
    padding: 60px 0;
  }
  .page-bnc__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-bnc__feature-grid, .page-bnc__game-grid, .page-bnc__steps-grid, .page-bnc__tips-grid, .page-bnc__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-bnc__card {
    padding: 25px;
  }
  .page-bnc__feature-icon, .page-bnc__game-image, .page-bnc__promo-image, .page-bnc__tip-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-bnc__safety-item {
    font-size: 1rem;
    padding: 15px;
  }
  .page-bnc__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-bnc__faq-answer {
    padding: 15px;
  }
  /* Ensure all content containers are responsive */
  .page-bnc__section, .page-bnc__card, .page-bnc__container, .page-bnc__hero-section, .page-bnc__features-section, .page-bnc__games-showcase, .page-bnc__guide-section, .page-bnc__tips-section, .page-bnc__promotions-section, .page-bnc__safety-section, .page-bnc__faq-section, .page-bnc__cta-final-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-bnc__main-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
  .page-bnc__hero-description {
    font-size: 0.9rem;
  }
  .page-bnc__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .page-bnc__section-description {
    font-size: 0.9rem;
  }
  .page-bnc__step-number {
    font-size: 2rem;
  }
  .page-bnc__step-heading {
    font-size: 1.2rem;
  }
}