/* style/bn-c.css */

/* Global styles for the page content, ensuring contrast */
.page-bn-c {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for text on dark background */
  background-color: #000000; /* Main background is black */
  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.5em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
}

.page-bn-c__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-bn-c__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-bn-c__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #000000; /* Black text on gold */
  border: 2px solid #FFD700;
}

.page-bn-c__btn--primary:hover {
  background-color: #b39700; /* Darker gold on hover */
  color: #ffffff;
}

.page-bn-c__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-bn-c__btn--secondary:hover {
  background-color: #FFD700;
  color: #000000;
}

.page-bn-c__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

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

.page-bn-c__center-cta {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

/* Hero Section */
.page-bn-c__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000 0%, #333333 100%); /* Dark gradient background */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.page-bn-c__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

.page-bn-c__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-bn-c__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

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

.page-bn-c__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-bn-c__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Intro Section */
.page-bn-c__intro-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

/* Game Types Section */
.page-bn-c__game-types-section {
  padding: 60px 0;
  background-color: #000000;
}

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

.page-bn-c__game-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-bn-c__game-card:hover {
  transform: translateY(-10px);
}

.page-bn-c__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-bn-c__game-card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-bn-c__game-card-description {
  font-size: 0.95em;
  color: #B0B0B0;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-bn-c__cta-text {
  text-align: center;
  font-style: italic;
  margin-top: 30px;
  color: #FFD700;
}

/* Tips Section */
.page-bn-c__tips-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

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

.page-bn-c__tip-item {
  background-color: #000000;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-bn-c__tip-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-bn-c__tip-description {
  font-size: 1em;
  color: #E0E0E0;
}

/* Advantages Section */
.page-bn-c__advantages-section {
  padding: 60px 0;
  background-color: #000000;
}

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

.page-bn-c__advantage-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-bn-c__advantage-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
  /* No filter property to change color */
}

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

.page-bn-c__advantage-description {
  font-size: 1em;
  color: #B0B0B0;
}

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

.page-bn-c__faq-list {
  margin-top: 40px;
}

.page-bn-c__faq-item {
  background-color: #000000;
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-bn-c__faq-question {
  font-size: 1.25em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-bn-c__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-bn-c__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-bn-c__faq-answer {
  font-size: 1em;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-bn-c__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

/* Final CTA Section */
.page-bn-c__cta-final-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-bn-c__hero-title {
    font-size: 2.8em;
  }
  .page-bn-c__hero-description {
    font-size: 1.1em;
  }
  .page-bn-c__section-title {
    font-size: 2em;
  }
  .page-bn-c__game-grid, .page-bn-c__tips-grid, .page-bn-c__advantage-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-bn-c__hero-section {
    padding: 60px 15px;
  }
  .page-bn-c__hero-title {
    font-size: 2.2em;
  }
  .page-bn-c__hero-description {
    font-size: 1em;
  }
  .page-bn-c__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-bn-c__btn--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-bn-c__section-title {
    font-size: 1.8em;
  }
  .page-bn-c__text-content {
    font-size: 1em;
  }
  .page-bn-c__game-grid, .page-bn-c__tips-grid, .page-bn-c__advantage-grid {
    grid-template-columns: 1fr;
  }
}

@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%;
  }
  .page-bn-c__hero-actions {
    gap: 10px;
  }
}