.page-bn-c {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Dark Blue */
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #1a1a2e; /* Slightly lighter than pure black for depth */
  --background-medium: #2a2a4a;
  --accent-color: #FF4500; /* Orange-Red for highlights */
  font-family: 'Arial', sans-serif;
  color: var(--text-light);
  background-color: var(--background-dark);
}

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

/* 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, var(--secondary-color) 0%, #000040 100%); /* Dark blue gradient */
  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: 2;
}

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

.page-bn-c .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

.page-bn-c .hero-image img:hover {
  transform: scale(1.03);
}

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

.page-bn-c .hero-content h1 {
  font-size: 3.5em;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-bn-c .hero-content p {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-bn-c .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.5em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-bn-c .cta-button:hover {
  background: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-bn-c section {
  padding: 80px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-bn-c section:nth-of-type(even) {
  background-color: var(--background-medium);
}

.page-bn-c h2 {
  font-size: 2.8em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-bn-c h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-bn-c p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Introduction Section */
.page-bn-c .introduction-section p {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.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-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-bn-c .feature-item .feature-icon {
  width: 200px; /* Minimum size */
  height: 200px; /* Minimum size */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
}

.page-bn-c .feature-item h3 {
  color: var(--primary-color);
  margin-top: 0;
}

/* Gameplay Guide Section */
.page-bn-c .subsection-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
}

.page-bn-c .gameplay-guide-section ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
}

.page-bn-c .gameplay-guide-section ol li {
  background-color: var(--secondary-color);
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-left: 80px;
}

.page-bn-c .gameplay-guide-section ol li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 30px;
  top: 30px;
  background-color: var(--primary-color);
  color: var(--text-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-bn-c .gameplay-guide-section ol li h3 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-bn-c .button-small {
  display: inline-block;
  padding: 10px 25px;
  background: var(--accent-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
}

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

/* Strategy Section */
.page-bn-c .strategy-section ul {
  list-style: none;
  padding: 0;
}

.page-bn-c .strategy-section ul li {
  background-color: var(--background-medium);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.page-bn-c .strategy-section ul li:hover {
  background-color: #3a3a60;
}

.page-bn-c .strategy-section ul li h3 {
  color: var(--primary-color);
  margin-top: 0;
}

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

.page-bn-c .promo-card {
  background-color: var(--secondary-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c .promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}

.page-bn-c .promo-card .promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-bn-c .promo-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.5em;
  margin-bottom: 15px;
  display: block;
  transition: color 0.3s ease;
}

.page-bn-c .promo-card h3 a:hover {
  color: var(--accent-color);
}

.page-bn-c .promo-card p {
  font-size: 1em;
  line-height: 1.6;
  color: #c0c0c0;
  margin-bottom: 20px;
}

.page-bn-c .cta-button-small {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-bn-c .cta-button-small:hover {
  background: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Why Choose Section */
.page-bn-c .why-choose-section ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-bn-c .why-choose-section ul li {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-bn-c .why-choose-section ul li:hover {
  transform: translateY(-8px);
}

.page-bn-c .why-choose-section ul li h3 {
  color: var(--primary-color);
  margin-top: 0;
}

/* FAQ Section */
.page-bn-c .faq-section {
  background-color: var(--background-medium);
}

.page-bn-c .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-bn-c .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--secondary-color);
  border: 1px solid #000040;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-bn-c .faq-question:hover {
  background: #000099; /* Slightly lighter dark blue */
}

.page-bn-c .faq-question h3 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.25em;
}

.page-bn-c .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

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

.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: #0d0d26; /* Darker background for answer */
  color: #e0e0e0;
}

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

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

.page-bn-c .faq-answer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

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

/* Call to Action Section */
.page-bn-c .call-to-action-section {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--text-dark);
}

.page-bn-c .call-to-action-section h2 {
  color: var(--text-dark);
  text-shadow: none;
  font-size: 3em;
}

.page-bn-c .call-to-action-section p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.2em;
  color: var(--text-dark);
}

.page-bn-c .call-to-action-section .cta-button {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-bn-c .call-to-action-section .cta-button:hover {
  background: #000060;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-bn-c .hero-content h1 {
    font-size: 2.8em;
  }
  .page-bn-c .hero-content p {
    font-size: 1.1em;
  }
  .page-bn-c .cta-button {
    padding: 15px 35px;
    font-size: 1.3em;
  }
  .page-bn-c h2 {
    font-size: 2.2em;
  }
  .page-bn-c h3 {
    font-size: 1.6em;
  }
  .page-bn-c p {
    font-size: 1em;
  }
  .page-bn-c .features-grid, .page-bn-c .promo-cards-grid, .page-bn-c .why-choose-section ul {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-bn-c .hero-section {
    padding: 40px 15px;
  }
  .page-bn-c .hero-content h1 {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-bn-c .hero-content p {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-bn-c .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-bn-c section {
    padding: 60px 0;
  }
  .page-bn-c h2 {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-bn-c h3 {
    font-size: 1.4em;
  }
  .page-bn-c .gameplay-guide-section ol li {
    padding: 20px 20px 20px 60px;
  }
  .page-bn-c .gameplay-guide-section ol li::before {
    left: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    font-size: 1.2em;
  }
  .page-bn-c .promo-card .promo-image {
    height: 200px;
  }
  .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: 20px;
  }
  .page-bn-c .call-to-action-section h2 {
    font-size: 2.2em;
  }
  .page-bn-c .call-to-action-section p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-bn-c .hero-content h1 {
    font-size: 1.8em;
  }
  .page-bn-c .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-bn-c h2 {
    font-size: 1.5em;
  }
  .page-bn-c h3 {
    font-size: 1.2em;
  }
  .page-bn-c .features-grid, .page-bn-c .promo-cards-grid, .page-bn-c .why-choose-section ul {
    grid-template-columns: 1fr;
  }
  .page-bn-c .call-to-action-section h2 {
    font-size: 1.8em;
  }
}