.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 section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-bn-c h1,
.page-bn-c h2 {
  color: #0056B3;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-bn-c h1 {
  font-size: 3em;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-bn-c h2 {
  font-size: 2.5em;
}

.page-bn-c h3 {
  color: #0056B3;
  font-size: 1.5em;
  margin-bottom: 15px;
}

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

.page-bn-c ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-bn-c ul li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-bn-c .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #0056B3;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
}

.page-bn-c .cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* 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, #0056B3, #003f80);
  color: #ffffff;
  overflow: hidden;
}

.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;
  z-index: 1;
}

.page-bn-c .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-bn-c .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-bn-c .hero-content p {
  font-size: 1.3em;
  max-width: 800px;
  margin: 20px auto 30px auto;
  color: #e0e0e0;
}

/* Content Sections */
.page-bn-c .section-intro, 
.page-bn-c .section-rules, 
.page-bn-c .section-promotions, 
.page-bn-c .section-app-download {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  padding: 40px;
}

.page-bn-c .content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-bn-c .content-wrapper.reverse {
  flex-direction: row-reverse;
}

.page-bn-c .content-image {
  flex: 1;
  max-width: 50%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-bn-c .content-image.left {
  margin-right: 20px;
}

.page-bn-c .content-image.right {
  margin-left: 20px;
}

.page-bn-c .text-content {
  flex: 1;
}

/* Feature Grid */
.page-bn-c .section-features {
  background-color: #f0f7ff;
  padding: 60px 0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.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-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  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 6px 20px rgba(0, 0, 0, 0.1);
}

.page-bn-c .feature-item .feature-icon {
  width: 250px; /* Enforce minimum size */
  height: 200px; /* Enforce minimum size */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-bn-c .feature-item h3 {
  color: #0056B3;
  font-size: 1.4em;
  margin-top: 0;
}

/* FAQ Section */
.page-bn-c .section-faq {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  padding: 40px;
}

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

.page-bn-c .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.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;
  font-size: 1.25em;
  color: #333;
}

.page-bn-c .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #0056B3;
  transition: transform 0.3s ease;
}

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

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

.page-bn-c .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
}

.page-bn-c .faq-answer p {
  margin-bottom: 0;
  font-size: 1.05em;
}

/* Contact and Related Games Sections */
.page-bn-c .section-contact, .page-bn-c .section-related-games {
  text-align: center;
  background-color: #e6f2ff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 50px;
  margin-bottom: 40px;
}

.page-bn-c .section-contact ul {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

.page-bn-c .section-contact ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-bn-c h1 {
    font-size: 2.5em;
  }
  .page-bn-c h2 {
    font-size: 2em;
  }
  .page-bn-c .content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-bn-c .content-wrapper.reverse {
    flex-direction: column;
  }
  .page-bn-c .content-image {
    max-width: 80%;
    margin-bottom: 30px;
  }
  .page-bn-c .content-image.left, .page-bn-c .content-image.right {
    margin-left: auto;
    margin-right: auto;
  }
  .page-bn-c .feature-grid {
    grid-template-columns: 1fr;
  }
  .page-bn-c .feature-item .feature-icon {
    width: 200px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .page-bn-c section {
    padding: 40px 0;
  }
  .page-bn-c h1 {
    font-size: 2em;
  }
  .page-bn-c h2 {
    font-size: 1.8em;
  }
  .page-bn-c .hero-content p {
    font-size: 1em;
  }
  .page-bn-c .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-bn-c .section-intro, 
  .page-bn-c .section-rules, 
  .page-bn-c .section-promotions, 
  .page-bn-c .section-app-download, 
  .page-bn-c .section-faq, 
  .page-bn-c .section-contact, 
  .page-bn-c .section-related-games {
    padding: 25px;
  }
  .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: 20px;
  }
  .page-bn-c .faq-answer {
    padding: 0 20px;
  }
  .page-bn-c .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}