/* style/bn-c.css */
:root {
  --page-bn-c-primary-color: #0A2038;
  --page-bn-c-secondary-color: #FFD700;
  --page-bn-c-text-dark: #333333;
  --page-bn-c-text-light: #ffffff;
  --page-bn-c-background-light: #f4f7fa;
  --page-bn-c-background-dark: #1a3a5a;
  --page-bn-c-border-color: #e0e0e0;
}

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

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

.page-bn-c .hero-banner {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: var(--page-bn-c-text-light);
}

.page-bn-c .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-bn-c .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-bn-c .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--page-bn-c-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-bn-c .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-bn-c .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--page-bn-c-secondary-color);
  color: var(--page-bn-c-primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-bn-c .cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-bn-c .large-cta {
  font-size: 1.5em;
  padding: 20px 50px;
  margin-top: 40px;
}

.page-bn-c .section-title {
  font-size: 2.5em;
  color: var(--page-bn-c-primary-color);
  text-align: center;
  margin-bottom: 40px;
  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: var(--page-bn-c-secondary-color);
  border-radius: 2px;
}

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

.page-bn-c .section-intro {
  background: var(--page-bn-c-background-light);
}

.page-bn-c .section-text {
  text-align: center;
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--page-bn-c-text-dark);
}

.page-bn-c .highlight-text {
  color: var(--page-bn-c-primary-color);
  font-weight: bold;
}

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

.page-bn-c .feature-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  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-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-bn-c .feature-title {
  font-size: 1.8em;
  color: var(--page-bn-c-primary-color);
  margin-bottom: 15px;
}

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

.page-bn-c .section-games {
  background: linear-gradient(145deg, var(--page-bn-c-background-dark) 0%, var(--page-bn-c-primary-color) 100%);
  color: var(--page-bn-c-text-light);
}

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

.page-bn-c .section-games .section-text {
  color: var(--page-bn-c-text-light);
}

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

.page-bn-c .game-card {
  background: #2a4c6e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-bn-c .game-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid var(--page-bn-c-secondary-color);
}

.page-bn-c .game-title {
  font-size: 1.6em;
  color: var(--page-bn-c-secondary-color);
  padding: 20px 20px 10px;
  flex-grow: 1;
}

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

.page-bn-c .game-title .page-bn-c.game-link:hover {
  color: #fff;
}

.page-bn-c .game-description {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 20px 20px;
}

.page-bn-c .section-guide {
  background: var(--page-bn-c-background-light);
}

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

.page-bn-c .step-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-bn-c .step-item:hover {
  transform: translateY(-8px);
}

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

.page-bn-c .step-title {
  font-size: 1.6em;
  color: var(--page-bn-c-primary-color);
  margin-bottom: 15px;
}

.page-bn-c .step-title .page-bn-c.step-link {
  color: var(--page-bn-c-primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-bn-c .step-title .page-bn-c.step-link:hover {
  color: var(--page-bn-c-secondary-color);
}

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

.page-bn-c .section-strategy {
  background: var(--page-bn-c-background-dark);
  color: var(--page-bn-c-text-light);
}

.page-bn-c .section-strategy .section-title {
  color: var(--page-bn-c-secondary-color);
}

.page-bn-c .section-strategy .section-text {
  color: var(--page-bn-c-text-light);
}

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

.page-bn-c .strategy-item {
  background: #2a4c6e;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-bn-c .strategy-title {
  font-size: 1.7em;
  color: var(--page-bn-c-secondary-color);
  margin-bottom: 15px;
}

.page-bn-c .strategy-description {
  font-size: 1em;
  color: #cccccc;
}

.page-bn-c .section-promotions {
  background: var(--page-bn-c-background-light);
}

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

.page-bn-c .promo-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c .promo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-bn-c .promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-bn-c .promo-title {
  font-size: 1.8em;
  color: var(--page-bn-c-primary-color);
  margin-bottom: 15px;
}

.page-bn-c .promo-title .page-bn-c.promo-link {
  color: var(--page-bn-c-primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-bn-c .promo-title .page-bn-c.promo-link:hover {
  color: var(--page-bn-c-secondary-color);
}

.page-bn-c .promo-description {
  font-size: 1em;
  color: var(--page-bn-c-text-dark);
}

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

.page-bn-c .cta-bottom .page-bn-c.cta-text {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: var(--page-bn-c-primary-color);
}

.page-bn-c .section-safety {
  background: var(--page-bn-c-background-dark);
  color: var(--page-bn-c-text-light);
}

.page-bn-c .section-safety .section-title {
  color: var(--page-bn-c-secondary-color);
}

.page-bn-c .section-safety .section-text {
  color: var(--page-bn-c-text-light);
}

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

.page-bn-c .safety-item {
  background: #2a4c6e;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-bn-c .safety-image {
  width: 100%;
  height: 200px;
  object-fit: contain; /* Use contain for icons/logos */
  margin-bottom: 25px;
}

.page-bn-c .safety-title {
  font-size: 1.7em;
  color: var(--page-bn-c-secondary-color);
  margin-bottom: 15px;
}

.page-bn-c .safety-description {
  font-size: 1em;
  color: #cccccc;
}

.page-bn-c .section-faq {
  background: var(--page-bn-c-background-light);
}

.page-bn-c .faq-list {
  margin-top: 50px;
}

.page-bn-c .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--page-bn-c-border-color);
  border-radius: 8px;
  overflow: hidden;
}

.page-bn-c .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-bn-c .faq-question:hover {
  background: #f0f0f0;
}

.page-bn-c .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--page-bn-c-primary-color);
}

.page-bn-c .faq-question .page-bn-c.faq-link {
  color: var(--page-bn-c-primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-bn-c .faq-question .page-bn-c.faq-link:hover {
  color: var(--page-bn-c-secondary-color);
}

.page-bn-c .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--page-bn-c-secondary-color);
  transition: transform 0.3s ease;
}

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

.page-bn-c .faq-answer p {
  margin: 0;
  padding-bottom: 15px;
}

.page-bn-c .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 25px;
  transition: max-height 0.4s ease-in, padding 0.4s ease-in;
}

.page-bn-c .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--page-bn-c-primary-color);
}

.page-bn-c .section-conclusion {
  background: linear-gradient(145deg, var(--page-bn-c-primary-color) 0%, var(--page-bn-c-background-dark) 100%);
  color: var(--page-bn-c-text-light);
  text-align: center;
}

.page-bn-c .section-conclusion .section-title {
  color: var(--page-bn-c-secondary-color);
}

.page-bn-c .section-conclusion .section-text {
  color: var(--page-bn-c-text-light);
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-bn-c .hero-title {
    font-size: 2.5em;
  }
  .page-bn-c .hero-description {
    font-size: 1.1em;
  }
  .page-bn-c .section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-bn-c .hero-banner {
    height: 400px;
  }
  .page-bn-c .hero-title {
    font-size: 2em;
  }
  .page-bn-c .hero-description {
    font-size: 1em;
  }
  .page-bn-c .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-bn-c .large-cta {
    font-size: 1.2em;
    padding: 15px 40px;
  }
  .page-bn-c section {
    padding: 50px 0;
  }
  .page-bn-c .feature-item, .page-bn-c .game-card, .page-bn-c .step-item, .page-bn-c .strategy-item, .page-bn-c .promo-item, .page-bn-c .safety-item {
    padding: 20px;
  }
  .page-bn-c .feature-image, .page-bn-c .game-image, .page-bn-c .step-image, .page-bn-c .promo-image, .page-bn-c .safety-image {
    height: 180px;
    margin-bottom: 20px;
  }
  .page-bn-c .feature-title, .page-bn-c .game-title, .page-bn-c .step-title, .page-bn-c .strategy-title, .page-bn-c .promo-title, .page-bn-c .safety-title {
    font-size: 1.5em;
  }
  .page-bn-c .faq-question {
    padding: 15px 20px;
  }
  .page-bn-c .faq-question h3 {
    font-size: 1.1em;
  }
  .page-bn-c .faq-toggle {
    font-size: 1.5em;
  }
  .page-bn-c .faq-answer {
    padding: 0 20px;
  }
  .page-bn-c .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-bn-c .hero-banner {
    height: 350px;
  }
  .page-bn-c .hero-title {
    font-size: 1.8em;
  }
  .page-bn-c .hero-description {
    font-size: 0.9em;
  }
  .page-bn-c .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-bn-c .section-title {
    font-size: 1.8em;
  }
  .page-bn-c .section-text {
    font-size: 0.95em;
  }
  .page-bn-c .feature-image, .page-bn-c .game-image, .page-bn-c .step-image, .page-bn-c .promo-image, .page-bn-c .safety-image {
    height: 150px;
  }
  .page-bn-c .feature-title, .page-bn-c .game-title, .page-bn-c .step-title, .page-bn-c .strategy-title, .page-bn-c .promo-title, .page-bn-c .safety-title {
    font-size: 1.3em;
  }
  .page-bn-c .faq-question h3 {
    font-size: 1em;
  }
  .page-bn-c .faq-toggle {
    font-size: 1.3em;
  }
}