/* style/bn-c.css */
.page-bn-c {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #1a1a1a;
  line-height: 1.6;
}

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

.page-bn-c__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-bn-c__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #CCCCCC;
}

.page-bn-c__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-bn-c__btn--primary {
  background-color: #FFD700;
  color: #8B0000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-bn-c__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-bn-c__btn--secondary {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.page-bn-c__btn--secondary:hover {
  background-color: #a30000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.6);
}

.page-bn-c__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 10px 20px;
}

.page-bn-c__btn--outline:hover {
  background-color: #FFD700;
  color: #8B0000;
}

.page-bn-c__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 20px;
}

.page-bn-c__btn--large {
  padding: 15px 35px;
  font-size: 1.1em;
}

/* Hero Section */
.page-bn-c__hero-section {
  background: linear-gradient(135deg, #8B0000 0%, #4a0000 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-bn-c__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract_water_pattern,subtle_texture,dark_red]');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-bn-c__hero-section > .page-bn-c__container {
  position: relative;
  z-index: 1;
}

.page-bn-c__hero-title {
  font-size: 4.5em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  line-height: 1.1;
}

.page-bn-c__hero-description {
  font-size: 1.3em;
  color: #F0F0F0;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-bn-c__hero-actions .page-bn-c__btn {
  margin: 0 15px;
}

.page-bn-c__hero-image {
  max-width: 90%;
  height: auto;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Why Choose Section */
.page-bn-c__why-choose-section {
  padding: 80px 0;
  background-color: #222222;
}

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

.page-bn-c__feature-item {
  background-color: #333333;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #444;
}

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

.page-bn-c__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-bn-c__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-bn-c__feature-text {
  font-size: 1em;
  color: #CCCCCC;
}

/* Game Showcase Section */
.page-bn-c__game-showcase-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

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

.page-bn-c__game-card {
  background-color: #2b2b2b;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #444;
  display: flex;
  flex-direction: column;
}

.page-bn-c__game-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-bn-c__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-bn-c__game-title {
  font-size: 1.7em;
  color: #FFD700;
  margin: 20px 15px 10px;
}

.page-bn-c__game-text {
  font-size: 0.95em;
  color: #CCCCCC;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-bn-c__game-card .page-bn-c__btn {
  margin: 0 15px 20px;
  align-self: center;
}

/* How to Play Section */
.page-bn-c__how-to-play-section {
  padding: 80px 0;
  background-color: #222222;
}

.page-bn-c__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-bn-c__steps-list li {
  background-color: #333333;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #8B0000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-bn-c__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-bn-c__steps-list li p {
  color: #CCCCCC;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-bn-c__promotions-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  text-align: center;
}

.page-bn-c__promo-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1000px;
}

.page-bn-c__promo-list li {
  background-color: #2b2b2b;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #444;
}

.page-bn-c__promo-item-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-bn-c__promo-list li p {
  color: #CCCCCC;
}

.page-bn-c__promo-image {
  max-width: 80%;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* App Download Section */
.page-bn-c__app-download-section {
  padding: 80px 0;
  background-color: #222222;
  text-align: center;
}

.page-bn-c__app-benefits {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 700px;
  font-size: 1.1em;
  color: #F0F0F0;
}

.page-bn-c__app-benefits li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  text-align: left;
}

.page-bn-c__app-benefits li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-bn-c__app-buttons .page-bn-c__btn {
  margin: 0 15px;
  font-size: 1.1em;
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-bn-c__app-buttons .page-bn-c__btn:hover {
  background-color: #FFD700;
  color: #8B0000;
  border-color: #8B0000;
}

.page-bn-c__app-image {
  max-width: 70%;
  height: auto;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Security & Support Section */
.page-bn-c__security-support-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  text-align: center;
}

.page-bn-c__security-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
}

.page-bn-c__security-list li {
  background-color: #2b2b2b;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #444;
}

.page-bn-c__security-item-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-bn-c__security-list li p {
  color: #CCCCCC;
}

.page-bn-c__support-image {
  max-width: 80%;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* FAQ Section */
.page-bn-c__faq-section {
  padding: 80px 0;
  background-color: #222222;
}

.page-bn-c__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-bn-c__faq-item {
  background-color: #333333;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #444;
}

.page-bn-c__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-bn-c__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-bn-c__faq-item.active .page-bn-c__faq-question::after {
  transform: rotate(45deg);
}

.page-bn-c__faq-answer {
  padding: 0 25px 20px;
  color: #CCCCCC;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-bn-c__faq-item.active .page-bn-c__faq-answer {
  max-height: 200px; /* Adjust based on content */
}

.page-bn-c__faq-answer p {
  margin-bottom: 10px;
}

/* CTA Section */
.page-bn-c__cta-section {
  background: linear-gradient(135deg, #4a0000 0%, #8B0000 100%);
  padding: 100px 0;
  text-align: center;
  border-top: 5px solid #FFD700;
}

.page-bn-c__cta-actions .page-bn-c__btn {
  margin: 0 15px;
}

.page-bn-c__cta-image {
  max-width: 90%;
  height: auto;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-bn-c__hero-title {
    font-size: 3.5em;
  }
  .page-bn-c__section-title {
    font-size: 2.2em;
  }
  .page-bn-c__hero-image, .page-bn-c__promo-image, .page-bn-c__app-image, .page-bn-c__support-image, .page-bn-c__cta-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-bn-c__hero-title {
    font-size: 2.8em;
  }
  .page-bn-c__hero-description {
    font-size: 1.1em;
  }
  .page-bn-c__hero-actions .page-bn-c__btn {
    display: block;
    margin: 15px auto;
  }
  .page-bn-c__section-title {
    font-size: 1.8em;
  }
  .page-bn-c__feature-title, .page-bn-c__game-title, .page-bn-c__step-title, .page-bn-c__promo-item-title, .page-bn-c__security-item-title, .page-bn-c__faq-question {
    font-size: 1.4em;
  }
  .page-bn-c__app-buttons .page-bn-c__btn {
    display: block;
    margin: 15px auto;
  }
}

@media (max-width: 480px) {
  .page-bn-c__hero-title {
    font-size: 2.2em;
  }
  .page-bn-c__hero-section, .page-bn-c__why-choose-section, .page-bn-c__game-showcase-section, .page-bn-c__how-to-play-section, .page-bn-c__promotions-section, .page-bn-c__app-download-section, .page-bn-c__security-support-section, .page-bn-c__faq-section, .page-bn-c__cta-section {
    padding: 60px 0;
  }
  .page-bn-c__btn--large {
    font-size: 1em;
    padding: 12px 25px;
  }
}