.page-bn-c {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #f8f8f8;
  line-height: 1.6;
}

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

.page-bn-c h1, .page-bn-c h2, .page-bn-c h3 {
  color: #B22222;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

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

.page-bn-c h2 {
  font-size: 2.2em;
  padding-top: 40px;
  margin-bottom: 30px;
}

.page-bn-c h3 {
  font-size: 1.6em;
  color: #333333;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-bn-c p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-bn-c a {
  color: #B22222;
  text-decoration: none;
}

.page-bn-c a:hover {
  text-decoration: underline;
}

.page-bn-c .link-text {
  font-weight: bold;
  color: #B22222;
}

.page-bn-c .highlight {
  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: 60px 20px;
  background: linear-gradient(135deg, #B22222 0%, #FFD700 100%); /* Adjusted gradient for better contrast */
}

.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;
}

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

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

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

.page-bn-c .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #B22222;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid #FFD700;
}

.page-bn-c .cta-button:hover {
  background: #B22222;
  color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border-color: #FFD700;
}

/* General Section Styling */
.page-bn-c .introduction-section, .page-bn-c .how-to-play-section, .page-bn-c .game-types-section, .page-bn-c .promotions-section, .page-bn-c .security-support-section, .page-bn-c .faq-section, .page-bn-c .latest-articles-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-bn-c .introduction-section {
  background-color: #fefefe;
}

.page-bn-c .how-to-play-section {
  background-color: #fdfdfd;
}

.page-bn-c .promotions-section {
  background-color: #fdfdfd;
}

.page-bn-c .security-support-section {
  background-color: #fefefe;
}

/* Features Grid */
.page-bn-c .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

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

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

.page-bn-c .feature-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

/* How-to-Play List */
.page-bn-c .how-to-play-section ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 40px;
}

.page-bn-c .how-to-play-section ol li {
  counter-increment: step-counter;
  margin-bottom: 30px;
  padding-left: 60px;
  position: relative;
}

.page-bn-c .how-to-play-section ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #B22222;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-bn-c .how-to-play-section ol li h3 {
  text-align: left;
  margin-top: 0;
  color: #B22222;
}

.page-bn-c .btn-small {
  display: inline-block;
  padding: 10px 25px;
  background: #FFD700;
  color: #B22222;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.95em;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  border: 1px solid #FFD700;
}

.page-bn-c .btn-small:hover {
  background: #B22222;
  color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-color: #FFD700;
}

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

.page-bn-c .game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-bn-c .game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.page-bn-c .game-card h3 {
  font-size: 1.4em;
  margin: 0 15px 10px;
  text-align: center;
  color: #333333;
}

.page-bn-c .game-card h3 a {
  color: #B22222;
}

.page-bn-c .game-card h3 a:hover {
  text-decoration: underline;
}

.page-bn-c .game-card p {
  padding: 0 15px;
  font-size: 0.95em;
  color: #555;
  height: 70px;
  overflow: hidden;
}

.page-bn-c .btn-card {
  display: inline-block;
  padding: 10px 30px;
  background: #B22222;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  border: 1px solid #B22222;
}

.page-bn-c .btn-card:hover {
  background: #FFD700;
  color: #B22222;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-color: #FFD700;
}

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

.page-bn-c .promo-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-bn-c .promo-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.page-bn-c .promo-item h3 {
  font-size: 1.4em;
  margin: 0 15px 10px;
  text-align: center;
  color: #333333;
}

.page-bn-c .promo-item h3 a {
  color: #B22222;
}

.page-bn-c .promo-item h3 a:hover {
  text-decoration: underline;
}

.page-bn-c .promo-item p {
  padding: 0 15px;
  font-size: 0.95em;
  color: #555;
  height: 60px;
  overflow: hidden;
}

.page-bn-c .btn-promo {
  display: inline-block;
  padding: 12px 30px;
  background: #B22222;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  border: 1px solid #B22222;
}

.page-bn-c .btn-promo:hover {
  background: #FFD700;
  color: #B22222;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-color: #FFD700;
}

/* Security & Support Section */
.page-bn-c .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-bn-c .info-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-bn-c .info-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-bn-c .info-item h3 {
  color: #B22222;
  font-size: 1.5em;
}

.page-bn-c .btn-contact {
  display: inline-block;
  padding: 12px 30px;
  background: #FFD700;
  color: #B22222;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 1px solid #FFD700;
}

.page-bn-c .btn-contact:hover {
  background: #B22222;
  color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-color: #FFD700;
}

/* FAQ Section */
.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;
}

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

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

.page-bn-c .faq-question h3 {
  margin: 0;
  text-align: left;
  font-size: 1.15em;
  color: #333333;
}

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

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

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

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

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

.page-bn-c .article-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-bn-c .article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.page-bn-c .article-card h3 {
  font-size: 1.3em;
  margin: 0 15px 10px;
  text-align: center;
  color: #333333;
}

.page-bn-c .article-card h3 a {
  color: #B22222;
}

.page-bn-c .article-card h3 a:hover {
  text-decoration: underline;
}

.page-bn-c .article-card p {
  padding: 0 15px;
  font-size: 0.9em;
  color: #555;
  height: 60px;
  overflow: hidden;
}

.page-bn-c .btn-read-more {
  display: inline-block;
  padding: 8px 20px;
  background: #B22222;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9em;
  margin-top: 15px;
  transition: all 0.3s ease;
  border: 1px solid #B22222;
}

.page-bn-c .btn-read-more:hover {
  background: #FFD700;
  color: #B22222;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-bn-c h1 {
    font-size: 2.4em;
  }
  .page-bn-c h2 {
    font-size: 1.8em;
  }
  .page-bn-c .hero-section {
    padding: 40px 15px;
  }
  .page-bn-c .introduction-section, .page-bn-c .how-to-play-section, .page-bn-c .game-types-section, .page-bn-c .promotions-section, .page-bn-c .security-support-section, .page-bn-c .faq-section, .page-bn-c .latest-articles-section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-bn-c h1 {
    font-size: 2em;
  }
  .page-bn-c h2 {
    font-size: 1.6em;
  }
  .page-bn-c h3 {
    font-size: 1.3em;
  }
  .page-bn-c .hero-content p {
    font-size: 1em;
  }
  .page-bn-c .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-bn-c .how-to-play-section ol li {
    padding-left: 50px;
  }
  .page-bn-c .how-to-play-section ol li::before {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }
  .page-bn-c .faq-question {
    padding: 12px 15px;
  }
  .page-bn-c .faq-question h3 {
    font-size: 1em;
  }
  .page-bn-c .faq-toggle {
    font-size: 20px;
  }
  .page-bn-c .faq-answer {
    padding: 0 15px;
  }
  .page-bn-c .faq-item.active .faq-answer {
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .page-bn-c h1 {
    font-size: 1.8em;
  }
  .page-bn-c h2 {
    font-size: 1.4em;
  }
  .page-bn-c .cta-button {
    width: 100%;
    max-width: 280px;
    box-sizing: border-box;
  }
  .page-bn-c .btn-small, .page-bn-c .btn-card, .page-bn-c .btn-promo, .page-bn-c .btn-contact, .page-bn-c .btn-read-more {
    width: 100%;
    max-width: 200px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }
}