.page-bn-c {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

.page-bn-c-section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-bn-c-section:nth-child(even) {
  background-color: #f9fbfb;
}

.page-bn-c h1,
.page-bn-c h2 {
  color: #0A2463;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-bn-c h1 {
  font-size: 3.2em;
  color: #0A2463;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.page-bn-c h2 {
  font-size: 2.5em;
  border-bottom: 2px solid #FFD700;
  display: inline-block;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-bn-c h3 {
  color: #0A2463;
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

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

.page-bn-c a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-bn-c a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-bn-c-button, .page-bn-c-cta-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FFD700;
  color: #0A2463;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-bn-c-button:hover, .page-bn-c-cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-bn-c-cta-button {
  background-color: #0A2463;
  color: #FFD700;
  padding: 15px 35px;
  font-size: 1.2em;
  margin-top: 20px;
}

.page-bn-c-cta-button:hover {
  background-color: #1a3c7c; /* Slightly lighter blue */
  color: #FFD700;
}

.page-bn-c-hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0A2463, #1a3c7c);
}

.page-bn-c-hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-bn-c-hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

.page-bn-c-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #ffffff;
}

.page-bn-c-hero-content h1 {
  color: #FFD700;
  font-size: 3.8em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.page-bn-c-hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-bn-c-feature-list, .page-bn-c-step-list, .page-bn-c-tip-list, .page-bn-c-promo-list, .page-bn-c-security-list {
  list-style: none;
  padding: 0;
  margin-left: 20px;
}

.page-bn-c-feature-list li, .page-bn-c-step-list li, .page-bn-c-tip-list li, .page-bn-c-promo-list li, .page-bn-c-security-list li {
  background: #f0f8ff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  border-left: 4px solid #FFD700;
  font-size: 1.05em;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-bn-c-feature-list li strong, .page-bn-c-step-list li strong, .page-bn-c-tip-list li strong, .page-bn-c-promo-list li strong, .page-bn-c-security-list li strong {
  color: #0A2463;
}

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

.page-bn-c-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-bn-c-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-bn-c-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.page-bn-c-card h3 {
  font-size: 1.5em;
  margin: 15px 15px 10px;
  color: #0A2463;
  border-left: none;
  padding-left: 0;
}

.page-bn-c-card h3 a {
  color: #0A2463;
  text-decoration: none;
}

.page-bn-c-card h3 a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-bn-c-card p {
  padding: 0 15px;
  font-size: 0.95em;
  color: #666;
  flex-grow: 1;
}

.page-bn-c-card .page-bn-c-button {
  margin: 15px;
  width: calc(100% - 30px);
  box-sizing: border-box;
  text-decoration: none;
}

.page-bn-c-article-date {
  display: block;
  font-size: 0.9em;
  color: #999;
  padding: 0 15px 10px;
}

.page-bn-c-image-wrapper {
  margin: 40px auto;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-bn-c-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

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

.page-bn-c-button-group .page-bn-c-button, .page-bn-c-button-group .page-bn-c-cta-button {
  margin: 0 10px;
}

/* FAQ styles */
.page-bn-c-faq-list {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #0A2463;
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #1a3c7c;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #FFD700;
  border-left: none;
  padding-left: 0;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
  line-height: 1;
}

.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;
  padding: 0 25px;
  background: #fefefe;
  color: #444;
  font-size: 1.05em;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid #eee;
  border-radius: 0 0 8px 8px;
}

.faq-answer p {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-bn-c h1 {
    font-size: 2.8em;
  }
  .page-bn-c h2 {
    font-size: 2em;
  }
  .page-bn-c h3 {
    font-size: 1.6em;
  }
  .page-bn-c-section {
    padding: 40px 0;
  }
  .page-bn-c-hero-content h1 {
    font-size: 3em;
  }
  .page-bn-c-hero-content p {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-bn-c h1 {
    font-size: 2.2em;
  }
  .page-bn-c h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-bn-c h3 {
    font-size: 1.4em;
  }
  .page-bn-c p {
    font-size: 1em;
  }
  .page-bn-c-hero-section {
    padding: 40px 15px;
  }
  .page-bn-c-hero-image img {
    border-radius: 4px;
  }
  .page-bn-c-hero-content h1 {
    font-size: 2.5em;
  }
  .page-bn-c-hero-content p {
    font-size: 1em;
  }
  .page-bn-c-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-bn-c-button-group .page-bn-c-button, .page-bn-c-button-group .page-bn-c-cta-button {
    margin: 10px 0;
    display: block;
    width: 100%;
  }
  .page-bn-c-feature-list li, .page-bn-c-step-list li, .page-bn-c-tip-list li, .page-bn-c-promo-list li, .page-bn-c-security-list li {
    padding: 12px 15px;
    font-size: 0.95em;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-bn-c h1 {
    font-size: 1.8em;
  }
  .page-bn-c h2 {
    font-size: 1.6em;
  }
  .page-bn-c-hero-content h1 {
    font-size: 2em;
  }
  .page-bn-c-hero-content p {
    font-size: 0.9em;
  }
  .page-bn-c-card h3 {
    font-size: 1.3em;
  }
  .page-bn-c-card p {
    font-size: 0.9em;
  }
}