.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 .text-center {
  text-align: center;
}

.page-bn-c .section-intro, .page-bn-c .section-features, .page-bn-c .section-how-to-play, .page-bn-c .section-strategy, .page-bn-c .section-promotions, .page-bn-c .section-faq, .page-bn-c .section-cta-bottom {
  padding: 60px 0;
}

.page-bn-c h1, .page-bn-c h2, .page-bn-c h3 {
  color: #4B0082; /* Deep Purple */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-bn-c h1 {
  font-size: 3.2em;
  text-align: center;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-bn-c h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
}

.page-bn-c h3 {
  font-size: 1.8em;
  margin-top: 25px;
}

.page-bn-c p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-bn-c a {
  color: #4B0082;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-bn-c a:hover {
  color: #FFD700;
}

/* Hero Section */
.page-bn-c .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #4B0082, #1a0033); /* Dark purple gradient for depth */
  color: #ffffff;
}

.page-bn-c .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-bn-c .hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-bn-c .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-bn-c .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-bn-c .hero-content p {
  color: #e0e0e0;
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-bn-c .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700; /* Gold */
  color: #4B0082; /* Deep Purple */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-bn-c .cta-button:hover {
  background: #ffd000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-bn-c .cta-button.secondary {
  background: #4B0082;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-bn-c .cta-button.secondary:hover {
  background: #3a0066;
  border-color: #ffd000;
}

/* Section Intro */
.page-bn-c .section-intro {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin: 40px auto;
}

/* Feature Grid */
.page-bn-c .section-features {
  background-color: #f0f2f5;
}

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

.page-bn-c .feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-bn-c .feature-item .feature-icon {
  width: 150px; /* Larger icon size */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-bn-c .feature-item h3 {
  color: #4B0082;
  font-size: 1.5em;
}

.page-bn-c .section-how-to-play ol {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding: 0;
}

.page-bn-c .section-how-to-play ol li {
  counter-increment: my-awesome-counter;
  background: #ffffff;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 70px;
}

.page-bn-c .section-how-to-play ol li::before {
  content: counter(my-awesome-counter);
  position: absolute;
  left: 20px;
  top: 30px;
  background: #FFD700; /* Gold */
  color: #4B0082; /* Deep Purple */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-bn-c .section-how-to-play ol li h3 {
  color: #4B0082;
  margin-top: 0;
  margin-bottom: 10px;
}

/* Strategy Section */
.page-bn-c .section-strategy {
  background-color: #f0f2f5;
}

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

.page-bn-c .strategy-item {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c .strategy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-bn-c .strategy-item .strategy-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-bn-c .strategy-item h3 {
  color: #4B0082;
  font-size: 1.6em;
}

/* Promotions Section */
.page-bn-c .section-promotions {
  background: linear-gradient(135deg, #4B0082, #6a00a8);
  color: #ffffff;
}

.page-bn-c .section-promotions h2 {
  color: #FFD700;
}

.page-bn-c .section-promotions p {
  color: #e0e0e0;
}

.page-bn-c .promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-bn-c .promo-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.page-bn-c .promo-card:hover {
  transform: translateY(-5px);
}

.page-bn-c .promo-card h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-bn-c .promo-card p {
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-bn-c .btn-promo {
  display: inline-block;
  padding: 12px 25px;
  background: #FFD700;
  color: #4B0082;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-bn-c .btn-promo:hover {
  background: #ffd000;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-bn-c .section-faq {
  background-color: #ffffff;
}

.page-bn-c .faq-list {
  margin-top: 40px;
}

.page-bn-c .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-bn-c .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fdfdfd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-bn-c .faq-question:hover {
  background: #f5f5f5;
}

.page-bn-c .faq-question h3 {
  margin: 0;
  color: #4B0082;
  font-size: 1.2em;
  flex-grow: 1;
}

.page-bn-c .faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
  line-height: 1;
  margin-left: 15px;
}

.page-bn-c .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #4B0082;
}

.page-bn-c .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background: #f9f9f9;
  padding: 0 25px;
}

.page-bn-c .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid #eee;
}

.page-bn-c .faq-item.active .faq-answer p {
  margin-bottom: 0;
}

/* Bottom CTA Section */
.page-bn-c .section-cta-bottom {
  background: #4B0082;
  color: #ffffff;
  padding: 80px 0;
}

.page-bn-c .section-cta-bottom h2 {
  color: #FFD700;
}

.page-bn-c .section-cta-bottom p {
  color: #e0e0e0;
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-bn-c h1 {
    font-size: 2.5em;
  }
  .page-bn-c h2 {
    font-size: 2em;
  }
  .page-bn-c .hero-content p {
    font-size: 1.1em;
  }
  .page-bn-c .cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-bn-c .feature-item, .page-bn-c .strategy-item, .page-bn-c .promo-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-bn-c .section-intro, .page-bn-c .section-features, .page-bn-c .section-how-to-play, .page-bn-c .section-strategy, .page-bn-c .section-promotions, .page-bn-c .section-faq, .page-bn-c .section-cta-bottom {
    padding: 40px 0;
  }
  .page-bn-c h1 {
    font-size: 2em;
  }
  .page-bn-c h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-bn-c h3 {
    font-size: 1.4em;
  }
  .page-bn-c p {
    font-size: 1em;
  }
  .page-bn-c .hero-section {
    padding: 60px 15px;
  }
  .page-bn-c .hero-image {
    margin-bottom: 20px;
  }
  .page-bn-c .cta-button {
    padding: 12px 30px;
    font-size: 1em;
    margin-top: 15px;
  }
  .page-bn-c .feature-grid, .page-bn-c .strategy-grid, .page-bn-c .promotion-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-bn-c .section-how-to-play ol li {
    padding: 20px 20px 20px 55px;
  }
  .page-bn-c .section-how-to-play ol li::before {
    left: 15px;
    top: 20px;
    width: 30px;
    height: 30px;
    font-size: 1.2em;
  }
  .page-bn-c .faq-question {
    padding: 15px 20px;
  }
  .page-bn-c .faq-question h3 {
    font-size: 1.1em;
  }
  .page-bn-c .faq-toggle {
    font-size: 1.8em;
  }
  .page-bn-c .faq-answer {
    padding: 0 20px;
  }
  .page-bn-c .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-bn-c h1 {
    font-size: 1.8em;
  }
  .page-bn-c h2 {
    font-size: 1.6em;
  }
  .page-bn-c .cta-button {
    width: 100%;
    box-sizing: border-box;
  }
}