:root {
  --primary-color: #4A148C; /* Deep Purple */
  --secondary-color: #FFD700; /* Gold */
  --text-dark: #212121;
  --text-light: #ffffff;
  --background-light: #f4f4f4;
  --background-dark: #333333;
  --accent-color-light: #FFEB3B;
  --accent-color-dark: #C6A700;
}

.page-bn-c {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

.page-bn-c h1, .page-bn-c h2, .page-bn-c h3, .page-bn-c h4, .page-bn-c h5, .page-bn-c h6 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-bn-c h1 {
  font-size: 2.8em;
  text-align: center;
  color: var(--text-light);
}

.page-bn-c h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-bn-c h3 {
  font-size: 1.6em;
  margin-top: 20px;
}

.page-bn-c p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

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

.page-bn-c section {
  padding: 60px 0;
  margin-bottom: 20px;
}

/* Hero Section */
.page-bn-c .hero-section {
  background: linear-gradient(135deg, var(--primary-color), #6A1B9A);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-bn-c .hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-bn-c .hero-content {
  flex: 1;
  text-align: left;
}

.page-bn-c .hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: left;
}

.page-bn-c .hero-content p {
  font-size: 1.2em;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-bn-c .hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-bn-c .hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-bn-c .hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.page-bn-c .cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-bn-c .cta-button.primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-bn-c .cta-button.primary:hover {
  background-color: var(--accent-color-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-bn-c .cta-button.secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-bn-c .cta-button.secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Why Choose Section */
.page-bn-c .why-choose-section {
  background-color: var(--background-light);
  text-align: center;
}

.page-bn-c .why-choose-section h2 {
  color: var(--primary-color);
}

.page-bn-c .why-choose-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.15em;
}

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

.page-bn-c .feature-item {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  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 30px rgba(0, 0, 0, 0.15);
}

.page-bn-c .feature-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}

.page-bn-c .feature-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-bn-c .feature-item p {
  font-size: 1em;
  color: var(--text-dark);
}

/* Popular Games Section */
.page-bn-c .popular-games-section {
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
}

.page-bn-c .popular-games-section h2 {
  color: var(--secondary-color);
}

.page-bn-c .popular-games-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.15em;
}

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

.page-bn-c .game-card {
  background-color: var(--primary-color);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-bn-c .game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-bn-c .game-card h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
  flex-grow: 1;
}

.page-bn-c .game-card h3 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-bn-c .game-card p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.page-bn-c .btn-play {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-bn-c .btn-play:hover {
  background-color: var(--accent-color-light);
  transform: translateY(-2px);
}

/* Tips and Strategies Section */
.page-bn-c .tips-strategies-section {
  background-color: var(--background-light);
}

.page-bn-c .tips-strategies-section h2 {
  color: var(--primary-color);
}

.page-bn-c .tips-strategies-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.15em;
  text-align: center;
}

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

.page-bn-c .tip-item {
  background-color: var(--text-light);
  padding: 25px;
  border-left: 5px solid var(--primary-color);
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.page-bn-c .tip-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-bn-c .tip-item p {
  font-size: 1em;
  color: var(--text-dark);
}

/* Promotions Section */
.page-bn-c .promotions-section {
  background: linear-gradient(135deg, #6A1B9A, var(--primary-color));
  color: var(--text-light);
  text-align: center;
}

.page-bn-c .promotions-section h2 {
  color: var(--secondary-color);
}

.page-bn-c .promotions-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.15em;
}

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

.page-bn-c .promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-bn-c .promo-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.2);
}

.page-bn-c .promo-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}

.page-bn-c .promo-card h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-bn-c .promo-card p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.9);
}

.page-bn-c .center-button {
  text-align: center;
  margin-top: 40px;
}

/* How to Start Section */
.page-bn-c .how-to-start-section {
  background-color: var(--background-light);
  text-align: center;
}

.page-bn-c .how-to-start-section h2 {
  color: var(--primary-color);
}

.page-bn-c .how-to-start-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.15em;
}

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

.page-bn-c .step-item {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-bn-c .step-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}

.page-bn-c .step-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-bn-c .step-item p {
  font-size: 1em;
  color: var(--text-dark);
  flex-grow: 1;
}

.page-bn-c .btn-small {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-bn-c .btn-small:hover {
  background-color: var(--accent-color-light);
  transform: translateY(-2px);
}

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

.page-bn-c .faq-section h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-bn-c .faq-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.15em;
  text-align: center;
}

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

.faq-item {
  margin-bottom: 15px;
  background-color: var(--primary-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #6A1B9A;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: var(--secondary-color);
}

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: var(--text-light);
  color: var(--text-dark);
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 18px 25px;
}

.faq-answer p {
  margin: 0;
  font-size: 1em;
  color: var(--text-dark);
}

/* Conclusion Section */
.page-bn-c .conclusion-section {
  background: linear-gradient(135deg, var(--primary-color), #6A1B9A);
  color: var(--text-light);
  text-align: center;
  padding: 80px 0;
}

.page-bn-c .conclusion-section h2 {
  color: var(--secondary-color);
  font-size: 2.5em;
  margin-bottom: 20px;
}

.page-bn-c .conclusion-section p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.9);
}

.page-bn-c .conclusion-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-bn-c .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .page-bn-c .hero-content {
    text-align: center;
  }

  .page-bn-c .hero-content h1 {
    font-size: 2.8em;
    text-align: center;
  }

  .page-bn-c .hero-image {
    margin-top: 40px;
  }

  .page-bn-c .hero-buttons {
    justify-content: center;
  }

  .page-bn-c h2 {
    font-size: 1.8em;
  }

  .page-bn-c .features-grid, .page-bn-c .game-cards-grid, .page-bn-c .tips-list, .page-bn-c .promo-cards-grid, .page-bn-c .step-by-step-guide {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-bn-c h1 {
    font-size: 2.2em;
  }

  .page-bn-c h2 {
    font-size: 1.6em;
  }

  .page-bn-c h3 {
    font-size: 1.3em;
  }

  .page-bn-c .hero-content p, .page-bn-c .why-choose-section p, .page-bn-c .popular-games-section p, .page-bn-c .tips-strategies-section p, .page-bn-c .promotions-section p, .page-bn-c .how-to-start-section p, .page-bn-c .faq-section p, .page-bn-c .conclusion-section p {
    font-size: 1em;
  }

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

  .page-bn-c .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-bn-c .hero-buttons a {
    width: 80%;
  }

  .page-bn-c .feature-icon, .page-bn-c .promo-icon, .page-bn-c .step-icon {
    width: 80px;
    height: 80px;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 1.1em;
  }

  .faq-toggle {
    font-size: 20px;
  }

  .faq-answer {
    padding: 15px 20px;
  }
}

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

  .page-bn-c h2 {
    font-size: 1.4em;
  }

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

  .page-bn-c .hero-section {
    padding: 60px 0;
  }

  .page-bn-c .container {
    padding: 0 15px;
  }

  .page-bn-c .cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-bn-c .conclusion-buttons {
    flex-direction: column;
  }

  .page-bn-c .conclusion-buttons a {
    width: 100%;
  }
}