/* style/bnc.css */
:root {
  --bnc-primary-color: #11A84E;
  --bnc-secondary-color: #22C768;
  --bnc-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --bnc-card-bg: #11271B;
  --bnc-background: #08160F;
  --bnc-text-main: #F2FFF6;
  --bnc-text-secondary: #A7D9B8;
  --bnc-border-color: #2E7A4E;
  --bnc-glow-color: #57E38D;
  --bnc-gold-color: #F2C14E;
  --bnc-divider-color: #1E3A2A;
  --bnc-deep-green: #0A4B2C;
}

.page-bnc {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--bnc-text-main); /* Default text color for dark background */
  background-color: var(--bnc-background);
}

.page-bnc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 60px;
  text-align: center;
  background-color: var(--bnc-background);
  overflow: hidden;
}

.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;
  max-width: 100%;
}

.page-bnc__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-bnc__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  line-height: 1.2;
  color: var(--bnc-gold-color);
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-bnc__description {
  font-size: 1.1em;
  color: var(--bnc-text-secondary);
  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-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-bnc__btn-primary {
  background: var(--bnc-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-bnc__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
}

.page-bnc__btn-secondary {
  background-color: transparent;
  color: var(--bnc-gold-color);
  border: 2px solid var(--bnc-gold-color);
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.3);
}

.page-bnc__btn-secondary:hover {
  background-color: rgba(242, 193, 78, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(242, 193, 78, 0.5);
}

.page-bnc__introduction-section,
.page-bnc__how-to-play-section,
.page-bnc__promotions-section,
.page-bnc__support-section {
  background-color: #ffffff;
  color: #333333;
  padding: 60px 20px;
}

.page-bnc__features-section,
.page-bnc__game-types-section,
.page-bnc__tips-section,
.page-bnc__conclusion-section {
  background-color: var(--bnc-background);
  color: var(--bnc-text-main);
  padding: 60px 20px;
}

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

.page-bnc__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--bnc-gold-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-bnc__introduction-section .page-bnc__section-title,
.page-bnc__how-to-play-section .page-bnc__section-title,
.page-bnc__promotions-section .page-bnc__section-title,
.page-bnc__support-section .page-bnc__section-title {
  color: var(--bnc-deep-green);
  text-shadow: none;
}

.page-bnc__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: inherit;
}

.page-bnc__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  object-fit: cover;
}

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

.page-bnc__feature-card,
.page-bnc__card {
  background-color: var(--bnc-card-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--bnc-text-main);
  border: 1px solid var(--bnc-border-color);
  max-width: 100%;
}

.page-bnc__feature-card:hover,
.page-bnc__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px var(--bnc-glow-color);
}

.page-bnc__card-title {
  font-size: 1.5em;
  color: var(--bnc-gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-bnc__card-text {
  font-size: 1em;
  color: var(--bnc-text-secondary);
  line-height: 1.6;
}

.page-bnc__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-bnc__step-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #333333;
}

.page-bnc__step-title {
  font-size: 1.8em;
  color: var(--bnc-deep-green);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-bnc__step-text {
  font-size: 1.1em;
  line-height: 1.7;
  color: #555555;
}

.page-bnc__game-list,
.page-bnc__promo-list,
.page-bnc__tip-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-bnc__game-item,
.page-bnc__promo-item,
.page-bnc__tip-item {
  background-color: var(--bnc-card-bg);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: var(--bnc-text-main);
  border: 1px solid var(--bnc-border-color);
}

.page-bnc__game-name,
.page-bnc__promo-title,
.page-bnc__tip-title {
  font-size: 1.6em;
  color: var(--bnc-gold-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-bnc__game-description,
.page-bnc__promo-text,
.page-bnc__tip-text {
  font-size: 1em;
  color: var(--bnc-text-secondary);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-bnc__hero-content {
    margin-top: 20px;
  }

  .page-bnc__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-bnc__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-bnc__hero-section {
    padding-bottom: 40px;
  }

  .page-bnc__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

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

  .page-bnc__description {
    font-size: 1em;
  }

  .page-bnc__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 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;
    margin: 0 auto;
  }

  .page-bnc__introduction-section,
  .page-bnc__how-to-play-section,
  .page-bnc__promotions-section,
  .page-bnc__support-section,
  .page-bnc__features-section,
  .page-bnc__game-types-section,
  .page-bnc__tips-section,
  .page-bnc__conclusion-section {
    padding: 40px 15px;
  }

  .page-bnc__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-bnc__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-bnc__text-block,
  .page-bnc__card-text,
  .page-bnc__step-text,
  .page-bnc__game-description,
  .page-bnc__promo-text,
  .page-bnc__tip-text {
    font-size: 0.95em;
  }

  .page-bnc__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-bnc__card,
  .page-bnc__feature-card,
  .page-bnc__step-item,
  .page-bnc__game-item,
  .page-bnc__promo-item,
  .page-bnc__tip-item {
    padding: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-bnc__card-title,
  .page-bnc__step-title,
  .page-bnc__game-name,
  .page-bnc__promo-title,
  .page-bnc__tip-title {
    font-size: 1.3em;
  }

  /* Mobile image and video responsiveness */
  .page-bnc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

  .page-bnc__video-section {
    padding-top: 10px !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .page-bnc__video-container,
  .page-bnc__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-bnc__hero-section {
    padding-bottom: 30px;
  }

  .page-bnc__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }

  .page-bnc__section-title {
    font-size: 1.5em;
  }

  .page-bnc__cta-buttons {
    gap: 10px;
  }

  .page-bnc__btn-primary,
  .page-bnc__btn-secondary {
    padding: 10px 15px;
    font-size: 0.9em;
  }
}