/* style/bn-c.css */
.page-bn-c {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-bn-c__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-bn-c__hero-section {
  background: linear-gradient(135deg, #FFD700, #8B0000);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-bn-c__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-bn-c__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #eee;
}

.page-bn-c__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-bn-c__btn--primary {
  background-color: #FFD700;
  color: #8B0000;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-bn-c__btn--primary:hover {
  background-color: #e6c200;
  box-shadow: 0 7px 20px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}

.page-bn-c__btn--secondary {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-bn-c__btn--secondary:hover {
  background-color: #6a0000;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.page-bn-c__section-title {
  font-size: 2.8em;
  color: #8B0000;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-bn-c__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #555;
}

.page-bn-c__features-section, .page-bn-c__how-to-play-section, .page-bn-c__tips-section, .page-bn-c__promo-section, .page-bn-c__platform-section, .page-bn-c__commitment-section, .page-bn-c__faq-section, .page-bn-c__cta-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-bn-c__features-section {
  background-color: #fdf8e6;
}

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

.page-bn-c__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-bn-c__feature-item:hover {
  transform: translateY(-10px);
}

.page-bn-c__feature-img {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-bn-c__feature-heading {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-bn-c__feature-text {
  font-size: 1em;
  color: #666;
}

.page-bn-c__how-to-play-section {
  background-color: #ffeccf;
}

.page-bn-c__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-bn-c__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-bn-c__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #8B0000;
  color: #FFD700;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-bn-c__step-heading {
  font-size: 1.6em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-bn-c__step-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.page-bn-c__tips-section {
  background-color: #fff;
}

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

.page-bn-c__tips-list li {
  background-color: #fdf8e6;
  padding: 25px 30px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-bn-c__list-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-bn-c__tips-list p {
  color: #555;
  font-size: 1.05em;
}

.page-bn-c__promo-section {
  text-align: center;
  background-color: #8B0000;
  color: #fff;
}

.page-bn-c__promo-section .page-bn-c__section-title {
  color: #FFD700;
}

.page-bn-c__promo-section .page-bn-c__section-description {
  color: #ffe0b3;
}

.page-bn-c__promo-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-bn-c__platform-section {
  text-align: center;
}

.page-bn-c__platform-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-bn-c__platform-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.page-bn-c__platform-icon:hover {
  transform: scale(1.1);
}

.page-bn-c__commitment-section {
  background-color: #fdf8e6;
}

.page-bn-c__commitment-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-bn-c__commitment-list li {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-bn-c__commitment-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-bn-c__commitment-list .page-bn-c__list-heading {
  color: #8B0000;
  font-size: 1.7em;
}

.page-bn-c__commitment-list p {
  color: #666;
}

.page-bn-c__faq-section {
  background-color: #fff;
}

.page-bn-c__faq-item {
  background-color: #fdf8e6;
  margin-bottom: 15px;
  border-radius: 8px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-bn-c__faq-question {
  font-size: 1.3em;
  color: #8B0000;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page-bn-c__faq-answer {
  font-size: 1em;
  color: #555;
  padding-left: 10px;
  border-left: 3px solid #FFD700;
}

.page-bn-c__cta-section {
  background: linear-gradient(90deg, #8B0000, #FFD700);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  margin-top: 20px;
  border-radius: 8px;
}

.page-bn-c__cta-title {
  font-size: 3em;
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-bn-c__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #eee;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-bn-c__hero-title {
    font-size: 2.5em;
  }

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

  .page-bn-c__feature-grid, .page-bn-c__steps-grid, .page-bn-c__commitment-list {
    grid-template-columns: 1fr;
  }

  .page-bn-c__platform-icons {
    flex-direction: column;
    gap: 20px;
  }

  .page-bn-c__cta-title {
    font-size: 2.2em;
  }

  .page-bn-c__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-bn-c__hero-title {
    font-size: 2em;
  }

  .page-bn-c__hero-description {
    font-size: 1em;
  }

  .page-bn-c__section-title {
    font-size: 1.8em;
  }

  .page-bn-c__section-description {
    font-size: 0.95em;
  }

  .page-bn-c__feature-heading, .page-bn-c__step-heading, .page-bn-c__list-heading, .page-bn-c__faq-question {
    font-size: 1.4em;
  }

  .page-bn-c__cta-title {
    font-size: 1.8em;
  }
}