/* style/bn-c.css */
.page-bn-c {
  font-family: 'Arial', sans-serif;
  color: #333;
  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: #2C3E50;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

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

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

.page-bn-c__btn--primary {
  background-color: #E74C3C;
  color: #fff;
}

.page-bn-c__btn--primary:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

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

.page-bn-c__btn--secondary:hover {
  background-color: #2C3E50;
  color: #fff;
  transform: translateY(-2px);
}

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

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

/* Hero Section */
.page-bn-c__hero-section {
  background: linear-gradient(135deg, #2C3E50, #E74C3C);
  color: #fff;
  padding: 100px 0;
  display: flex;
  align-items: center;
  min-height: 600px;
}

.page-bn-c__hero-content {
  flex: 1;
  padding-right: 40px;
}

.page-bn-c__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.page-bn-c__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.page-bn-c__hero-actions .page-bn-c__btn--secondary {
  border-color: #fff;
  color: #fff;
}

.page-bn-c__hero-actions .page-bn-c__btn--secondary:hover {
  background-color: #fff;
  color: #E74C3C;
}

.page-bn-c__hero-image-wrapper {
  flex: 1;
  text-align: right;
}

.page-bn-c__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.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: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  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 25px rgba(0, 0, 0, 0.15);
}

.page-bn-c__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.page-bn-c__feature-title {
  font-size: 1.5em;
  color: #2C3E50;
  margin-bottom: 10px;
}

.page-bn-c__feature-text {
  color: #666;
}

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

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

.page-bn-c__game-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-bn-c__game-title {
  font-size: 1.4em;
  color: #2C3E50;
  margin: 20px 0 10px;
}

.page-bn-c__game-text {
  color: #666;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-bn-c__game-card .page-bn-c__btn {
  margin-bottom: 20px;
}

/* Strategy Section */
.page-bn-c__strategy-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-bn-c__strategy-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c__strategy-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.page-bn-c__strategy-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-bn-c__strategy-title {
  font-size: 1.4em;
  color: #E74C3C;
  margin-bottom: 10px;
}

.page-bn-c__strategy-text {
  color: #555;
}

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

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

.page-bn-c__benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-bn-c__benefit-list li {
  background-color: #f0f4f8;
  padding: 20px;
  border-left: 5px solid #2C3E50;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333;
  display: flex;
  align-items: flex-start;
}

.page-bn-c__list-icon {
  font-size: 1.5em;
  color: #E74C3C;
  margin-right: 15px;
  line-height: 1;
}

.page-bn-c__list-strong {
  color: #2C3E50;
}

.page-bn-c__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-bn-c__cta-center .page-bn-c__btn {
  margin: 0 10px;
}

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

.page-bn-c__faq-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

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

.page-bn-c__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #E74C3C;
}

.page-bn-c__faq-question.active::after {
  content: '-';
}

.page-bn-c__faq-answer {
  color: #666;
  font-size: 1.05em;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-bn-c__faq-question.active + .page-bn-c__faq-answer {
  display: block;
}

/* Final CTA Section */
.page-bn-c__final-cta-section {
  padding: 80px 0;
  background-color: #2C3E50;
  color: #fff;
  text-align: center;
}

.page-bn-c__final-cta-section .page-bn-c__section-title {
  color: #fff;
}

.page-bn-c__final-cta-section .page-bn-c__section-title::after {
  background-color: #E74C3C;
}

.page-bn-c__final-cta-section .page-bn-c__section-description {
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-bn-c__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 80px 0 40px;
    min-height: auto;
  }

  .page-bn-c__hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

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

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

  .page-bn-c__hero-actions .page-bn-c__btn {
    margin-bottom: 15px;
    margin-right: 0;
    display: block;
  }

  .page-bn-c__hero-image-wrapper {
    text-align: center;
  }

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

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

  .page-bn-c__features-grid,
  .page-bn-c__game-grid,
  .page-bn-c__strategy-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

  .page-bn-c__cta-center .page-bn-c__btn {
    margin: 10px 0;
    display: block;
  }
}