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

.page-bnc__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-bnc__card {
  background-color: #11271B;
  color: #F2FFF6;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bnc__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-bnc__main-title,
.page-bnc__section-title {
  color: #F2C14E; /* Gold color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-bnc__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-bnc__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  padding-top: 20px;
}

.page-bnc__card-title {
  color: #F2FFF6;
  font-size: 1.4rem;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-bnc__card-description,
.page-bnc__hero-description,
.page-bnc__section-description,
.page-bnc__text-block,
.page-bnc__list-strong {
  color: #A7D9B8;
}

.page-bnc__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px;
  position: relative;
  overflow: hidden;
}

.page-bnc__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  margin-bottom: 30px;
}

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

.page-bnc__hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 1;
}

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

.page-bnc__btn-primary,
.page-bnc__btn-secondary {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-bnc__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-bnc__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
}

.page-bnc__btn-secondary {
  background-color: transparent;
  color: #F2FFF6;
  border: 2px solid #2E7A4E;
}

.page-bnc__btn-secondary:hover {
  background-color: #2E7A4E;
  color: #F2FFF6;
}

.page-bnc__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px;
  text-align: center;
}

.page-bnc__video-wrapper {
  width: 100%;
  max-width: 960px;
  margin: 30px auto;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-bnc__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.page-bnc__video-cta {
  margin-top: 20px;
}

.page-bnc__feature-section,
.page-bnc__how-to-play-section,
.page-bnc__strategy-section,
.page-bnc__promotions-section,
.page-bnc__security-section,
.page-bnc__faq-section,
.page-bnc__cta-final-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

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

.page-bnc__feature-image,
.page-bnc__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.page-bnc__strategy-content,
.page-bnc__security-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  margin-top: 30px;
}

.page-bnc__strategy-list,
.page-bnc__security-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-bnc__strategy-list li,
.page-bnc__security-list li {
  background-color: #11271B;
  border-left: 4px solid #11A84E;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 6px;
  color: #A7D9B8;
  font-size: 1.05rem;
}

.page-bnc__list-strong {
  color: #F2FFF6;
  display: block;
  margin-bottom: 5px;
}

.page-bnc__faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

.page-bnc__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  list-style: none;
  position: relative;
}

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

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

.page-bnc__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #57E38D;
  transition: transform 0.3s ease;
}

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

.page-bnc__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8;
  font-size: 1rem;
  line-height: 1.5;
}

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

/* Floating CTA Buttons */
.page-bnc__floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-bnc__floating-btn {
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.page-bnc__floating-btn--register {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
}

.page-bnc__floating-btn--register:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-bnc__floating-btn--login {
  background-color: #F2C14E; /* Gold color */
  color: #08160F;
}

.page-bnc__floating-btn--login:hover {
  background-color: #E0B03D;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-bnc__feature-grid,
  .page-bnc__steps-grid,
  .page-bnc__promotion-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-bnc {
    font-size: 16px;
    line-height: 1.6;
  }

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

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

  .page-bnc__hero-section,
  .page-bnc__video-section,
  .page-bnc__feature-section,
  .page-bnc__how-to-play-section,
  .page-bnc__strategy-section,
  .page-bnc__promotions-section,
  .page-bnc__security-section,
  .page-bnc__faq-section,
  .page-bnc__cta-final-section {
    padding: 30px 15px;
  }

  .page-bnc__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-bnc__btn-primary,
  .page-bnc__btn-secondary,
  .page-bnc a[class*="button"],
  .page-bnc a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-bnc__cta-buttons,
  .page-bnc__button-group,
  .page-bnc__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-bnc__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    margin: 20px auto;
  }

  .page-bnc img,
  .page-bnc video,
  .page-bnc__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-bnc__feature-card,
  .page-bnc__step-card,
  .page-bnc__promotion-card {
    padding: 20px;
  }

  .page-bnc__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }

  .page-bnc__faq-answer {
    padding: 0 20px 15px;
  }

  .page-bnc__floating-cta {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }

  .page-bnc__floating-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .page-bnc__floating-cta {
    flex-direction: row;
    left: 15px;
    right: 15px;
    width: auto;
    justify-content: space-around;
  }

  .page-bnc__floating-btn {
    flex: 1;
    margin: 0 5px;
  }
}