/* style/bn-c.css */
.page-bn-c {
  font-family: 'Arial', sans-serif;
  color: #E5E5E5; /* Light grey for general text on dark background */
  background-color: #1A1A1A;
  line-height: 1.6;
}

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

/* Hero Section */
.page-bn-c__hero {
  background: linear-gradient(135deg, #1A1A1A, #333333);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFD700;
}

.page-bn-c__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  color: #FFD700; /* Gold */
}

.page-bn-c__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #E5E5E5;
}

/* General Section Styles */
.page-bn-c__section {
  padding: 60px 0;
  text-align: center;
}

.page-bn-c__section:nth-of-type(odd) {
  background-color: #222222;
}

.page-bn-c__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #FFD700; /* Gold */
  position: relative;
  padding-bottom: 15px;
}

.page-bn-c__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-bn-c__section-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #CCCCCC;
}

/* Buttons */
.page-bn-c__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-bn-c__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A1A1A;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-bn-c__btn--secondary {
  background-color: #333333;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-bn-c__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-3px);
}

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

.page-bn-c__btn--inline {
  margin-top: 15px;
}

.page-bn-c__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Why Choose Section */
.page-bn-c__why-choose .page-bn-c__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

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

.page-bn-c__why-choose .page-bn-c__feature-item:hover {
  transform: translateY(-10px);
  border-color: #FFD700;
}

.page-bn-c__why-choose .page-bn-c__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background-color: #FFD700;
  padding: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

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

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

/* Featured Games Section */
.page-bn-c__featured-games .page-bn-c__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

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

.page-bn-c__featured-games .page-bn-c__game-card:hover {
  transform: translateY(-10px);
  border-color: #FFD700;
}

.page-bn-c__featured-games .page-bn-c__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #333333;
}

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

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

.page-bn-c__featured-games .page-bn-c__game-card .page-bn-c__btn {
  margin: 0 15px 20px 15px;
}

/* How To Play Section */
.page-bn-c__how-to-play .page-bn-c__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  text-align: left;
}

.page-bn-c__how-to-play .page-bn-c__steps-list li {
  background-color: #1A1A1A;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

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

.page-bn-c__how-to-play .page-bn-c__steps-list p {
  color: #CCCCCC;
  font-size: 1em;
}

/* Tips & Strategies Section */
.page-bn-c__tips-strategies .page-bn-c__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-bn-c__tips-strategies .page-bn-c__strategy-item {
  background-color: #1A1A1A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid #333333;
}

.page-bn-c__tips-strategies .page-bn-c__strategy-item:hover {
  border-color: #FFD700;
}

.page-bn-c__tips-strategies .page-bn-c__strategy-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-bn-c__tips-strategies .page-bn-c__strategy-item p {
  color: #CCCCCC;
  font-size: 1em;
}

/* Promotions Section */
.page-bn-c__promotions .page-bn-c__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-bn-c__promotions .page-bn-c__promo-list li {
  background-color: #1A1A1A;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #FFD700;
  color: #CCCCCC;
  font-size: 1.05em;
}

.page-bn-c__promotions .page-bn-c__promo-list li strong {
  color: #FFD700;
}

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

.page-bn-c__app-download .page-bn-c__app-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-bn-c__app-download .page-bn-c__btn--app {
  background-color: #333333;
  color: #E5E5E5;
  border: 1px solid #555555;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 30px;
}

.page-bn-c__app-download .page-bn-c__btn--app:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  border-color: #FFD700;
  transform: translateY(-3px);
}

.page-bn-c__app-download .page-bn-c__app-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.page-bn-c__app-download .page-bn-c__btn--app:hover .page-bn-c__app-icon {
  filter: none; /* Reset filter on hover for app icons to show original color */
}

.page-bn-c__app-download .page-bn-c__app-mockup {
  max-width: 350px;
  width: 100%;
  margin-top: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 5px solid #FFD700;
}

/* Safety & Support Section */
.page-bn-c__safety-support .page-bn-c__safety-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-bn-c__safety-support .page-bn-c__safety-list li {
  background-color: #1A1A1A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-right: 5px solid #FFD700;
}

.page-bn-c__safety-support .page-bn-c__safety-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-bn-c__safety-support .page-bn-c__safety-list p {
  color: #CCCCCC;
  font-size: 1em;
}

/* Conclusion Section */
.page-bn-c__conclusion {
  background-color: #1A1A1A;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-bn-c__hero-title {
    font-size: 2.8em;
  }

  .page-bn-c__section-title {
    font-size: 2em;
  }

  .page-bn-c__why-choose .page-bn-c__features-grid,
  .page-bn-c__featured-games .page-bn-c__game-grid,
  .page-bn-c__tips-strategies .page-bn-c__strategy-grid,
  .page-bn-c__safety-support .page-bn-c__safety-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-bn-c__hero {
    padding: 80px 0;
  }

  .page-bn-c__hero-title {
    font-size: 2.2em;
  }

  .page-bn-c__hero-description {
    font-size: 1em;
  }

  .page-bn-c__section {
    padding: 40px 0;
  }

  .page-bn-c__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-bn-c__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-bn-c__app-download .page-bn-c__app-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-bn-c__hero-title {
    font-size: 1.8em;
  }

  .page-bn-c__section-title {
    font-size: 1.5em;
  }

  .page-bn-c__btn {
    width: 100%;
    max-width: 280px;
  }

  .page-bn-c__why-choose .page-bn-c__feature-item,
  .page-bn-c__featured-games .page-bn-c__game-card,
  .page-bn-c__tips-strategies .page-bn-c__strategy-item,
  .page-bn-c__safety-support .page-bn-c__safety-list li {
    padding: 20px;
  }

  .page-bn-c__how-to-play .page-bn-c__steps-list li {
    padding: 20px;
  }
}