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

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

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

.page-bn-c h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  color: #DC143C;
}

.page-bn-c h3 {
  font-size: 1.6em;
  color: #333;
}

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

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

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

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

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

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

.page-bn-c .btn-small:hover {
  background: #DC143C;
  color: #ffffff;
  transform: translateY(-2px);
}

/* 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, #FFD700, #DC143C);
  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;
}

.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 25px rgba(0, 0, 0, 0.4);
}

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

.page-bn-c .hero-content h1 {
  color: #ffffff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-bn-c .hero-content p {
  color: #eee;
  font-size: 1.3em;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* General Section Styling */
.page-bn-c section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.page-bn-c section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

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

.page-bn-c .game-types-section {
  background-color: #f0f0f0;
}

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

.page-bn-c .strategy-section {
  background-color: #f0f0f0;
}

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

.page-bn-c .safety-support-section {
  background-color: #f0f0f0;
}

.page-bn-c .cta-bottom-section {
  background: linear-gradient(45deg, #DC143C, #FFD700);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-bn-c .cta-bottom-section h2 {
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-bn-c .feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px 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(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-bn-c .feature-item img {
  width: 100%; /* Ensure images are not small icons */
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* 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: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-bn-c .game-card img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.page-bn-c .game-card h3 a {
  color: #DC143C;
  font-size: 1.4em;
  margin-bottom: 10px;
  display: block;
  transition: color 0.3s ease;
}

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

/* Gameplay Guide */
.page-bn-c .gameplay-guide-section ol {
  list-style-type: decimal;
  margin-left: 20px;
  padding-left: 0;
  font-size: 1.1em;
  color: #444;
}

.page-bn-c .gameplay-guide-section ol li {
  margin-bottom: 10px;
}

.page-bn-c .gameplay-guide-section ol li strong {
  color: #DC143C;
}

/* Strategy Section */
.page-bn-c .strategy-section ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
  font-size: 1.1em;
  color: #444;
}

.page-bn-c .strategy-section ul li {
  margin-bottom: 10px;
}

.page-bn-c .strategy-section ul li strong {
  color: #DC143C;
}

/* Promotions Grid */
.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: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-bn-c .promo-item img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.page-bn-c .promo-item h3 a {
  color: #DC143C;
  font-size: 1.4em;
  margin-bottom: 10px;
  display: block;
  transition: color 0.3s ease;
}

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

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

.page-bn-c .info-block {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-bn-c .info-block img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  aspect-ratio: 1/1;
}

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

.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 10px rgba(0, 0, 0, 0.05);
}

.page-bn-c .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  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;
  font-size: 1.2em;
  color: #333;
}

.page-bn-c .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #DC143C;
  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; /* Adjust as needed for content */
  padding: 25px;
  border-top: 1px solid #eee;
}

/* 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 h3 {
    font-size: 1.4em;
  }
  .page-bn-c .hero-content p {
    font-size: 1.1em;
  }
  .page-bn-c .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-bn-c .features-grid, .page-bn-c .game-cards-grid, .page-bn-c .promo-grid, .page-bn-c .info-blocks {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@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.6em;
  }
  .page-bn-c .hero-section {
    padding: 40px 15px;
  }
  .page-bn-c .hero-image {
    margin-bottom: 20px;
  }
  .page-bn-c .hero-content p {
    font-size: 1em;
  }
  .page-bn-c .cta-button {
    padding: 10px 25px;
    font-size: 1em;
    margin-top: 20px;
  }
  .page-bn-c .feature-item, .page-bn-c .game-card, .page-bn-c .promo-item, .page-bn-c .info-block {
    padding: 20px;
  }
  .page-bn-c .faq-question {
    padding: 15px 20px;
  }
  .page-bn-c .faq-question h3 {
    font-size: 1.1em;
  }
  .page-bn-c .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-bn-c h1 {
    font-size: 1.8em;
  }
  .page-bn-c h2 {
    font-size: 1.4em;
  }
  .page-bn-c p, .page-bn-c ol li, .page-bn-c ul li {
    font-size: 0.95em;
  }
  .page-bn-c .cta-button {
    width: 100%;
    max-width: 280px;
    font-size: 0.95em;
  }
  .page-bn-c .btn-small {
    width: auto;
    font-size: 0.85em;
  }
  .page-bn-c .hero-content h1 {
    line-height: 1.2;
  }
  .page-bn-c .hero-content p {
    line-height: 1.4;
  }
}