:root {
  --primary-color: #003366;
  --secondary-color: #FFD700;
  --text-color: #333333;
  --light-text-color: #ffffff;
  --background-light: #f8f8f8;
  --background-dark: #002244;
  --border-color: #e0e0e0;
}

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

.page-bn-c a {
  text-decoration: none;
  color: var(--primary-color);
}

.page-bn-c a:hover {
  color: var(--secondary-color);
}

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

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

.page-bn-c__text-center {
  text-align: center;
  margin-top: 30px;
}

.section-padding {
  padding: 80px 0;
}

.section-bg-light {
  background-color: var(--background-light);
}

/* Hero Banner */
.page-bn-c__hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 550px;
  background-color: var(--background-dark);
}

.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;
  text-align: center;
  padding: 40px 20px;
  z-index: 1;
}

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

.page-bn-c__hero-content {
  position: relative;
  z-index: 2;
  color: var(--light-text-color);
  max-width: 800px;
}

.page-bn-c__main-title {
  font-size: 52px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--light-text-color);
}

.page-bn-c__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-bn-c__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin: 10px;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
}

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

.page-bn-c__cta-button--secondary {
  background: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.page-bn-c__cta-button--secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* Intro Section */
.page-bn-c__intro-content p {
  margin-bottom: 15px;
  font-size: 17px;
  text-align: justify;
}

.page-bn-c__content-image {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Highlights Section */
.page-bn-c__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

.page-bn-c__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-bn-c__card-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-bn-c__card p {
  font-size: 16px;
  color: #555555;
}

/* Popular Games Section */
.page-bn-c__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-bn-c__game-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-bn-c__game-name {
  font-size: 26px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-bn-c__game-name a {
  color: var(--primary-color);
}

.page-bn-c__game-name a:hover {
  color: var(--secondary-color);
}

.page-bn-c__game-item p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
}

.page-bn-c__game-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-bn-c__game-button:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
}

/* How to Play Section */
.page-bn-c__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-bn-c__step-list li {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 25px;
  position: relative;
}

.page-bn-c__step-list li:last-child {
  margin-bottom: 0;
}

.page-bn-c__step-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--secondary-color);
  color: var(--primary-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-bn-c__step-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 10px;
  padding-left: 40px; /* Adjust for counter */
}

.page-bn-c__step-list p {
  font-size: 16px;
  color: #555555;
  padding-left: 40px;
}

.page-bn-c__inline-button {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-color);
  color: var(--light-text-color);
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  margin-top: 15px;
  margin-left: 40px;
  transition: background-color 0.3s ease;
}

.page-bn-c__inline-button:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* Strategies Section */
.page-bn-c__bullet-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-bn-c__bullet-list li {
  background: #ffffff;
  border-left: 5px solid var(--secondary-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 25px;
  margin-bottom: 20px;
}

.page-bn-c__bullet-list li:last-child {
  margin-bottom: 0;
}

.page-bn-c__list-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-weight: bold;
}

.page-bn-c__bullet-list p {
  font-size: 16px;
  color: #555555;
}

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

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

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

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

.page-bn-c__promo-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-bn-c__promo-card p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
}

.page-bn-c__promo-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--light-text-color);
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-bn-c__promo-button:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Security & Support Section */
.page-bn-c__info-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-bn-c__info-list li {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 25px;
}

/* FAQ Section */
.page-bn-c__faq-list {
  margin-top: 40px;
}

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

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

.faq-question:hover {
  background: var(--background-light);
}

.faq-question h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin: 0;
  flex-grow: 1;
}

.faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

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

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

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

.faq-answer p {
  margin-bottom: 10px;
  font-size: 16px;
}

.page-bn-c__faq-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: var(--primary-color);
}

.page-bn-c__faq-link:hover {
  color: var(--secondary-color);
}

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

.page-bn-c__news-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-bn-c__news-title {
  font-size: 22px;
  color: var(--primary-color);
  margin: 20px 20px 10px;
  font-weight: bold;
}

.page-bn-c__news-title a {
  color: var(--primary-color);
}

.page-bn-c__news-title a:hover {
  color: var(--secondary-color);
}

.page-bn-c__news-excerpt {
  font-size: 16px;
  color: #555555;
  padding: 0 20px;
  margin-bottom: 15px;
}

.page-bn-c__news-date {
  font-size: 14px;
  color: #888888;
  padding: 0 20px 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-bn-c__main-title {
    font-size: 44px;
  }
  .page-bn-c__hero-description {
    font-size: 18px;
  }
  .page-bn-c__section-title {
    font-size: 32px;
  }
  .page-bn-c__card-title, .page-bn-c__game-name, .page-bn-c__promo-title, .page-bn-c__news-title {
    font-size: 22px;
  }
  .page-bn-c__step-title, .page-bn-c__list-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  .page-bn-c__main-title {
    font-size: 36px;
  }
  .page-bn-c__hero-description {
    font-size: 16px;
  }
  .page-bn-c__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    margin: 8px;
  }
  .page-bn-c__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-bn-c__card, .page-bn-c__game-item, .page-bn-c__promo-card, .page-bn-c__news-card {
    padding: 20px;
  }
  .page-bn-c__card-image, .page-bn-c__game-image, .page-bn-c__promo-image, .page-bn-c__news-image {
    height: 180px;
  }
  .page-bn-c__step-list li {
    padding: 25px;
  }
  .page-bn-c__step-list li::before {
    width: 40px;
    height: 40px;
    font-size: 20px;
    top: 25px;
    left: -15px;
  }
  .page-bn-c__step-title, .page-bn-c__step-list p, .page-bn-c__inline-button {
    padding-left: 35px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 18px;
  }
  .faq-toggle {
    font-size: 24px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .section-padding {
    padding: 40px 0;
  }
  .page-bn-c__main-title {
    font-size: 28px;
  }
  .page-bn-c__hero-description {
    font-size: 15px;
  }
  .page-bn-c__cta-button {
    padding: 10px 25px;
    font-size: 15px;
    margin: 5px;
  }
  .page-bn-c__section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .page-bn-c__grid, .page-bn-c__game-list, .page-bn-c__promo-grid, .page-bn-c__news-grid {
    gap: 20px;
  }
  .page-bn-c__card-image, .page-bn-c__game-image, .page-bn-c__promo-image, .page-bn-c__news-image {
    height: 160px;
  }
  .page-bn-c__card-title, .page-bn-c__game-name, .page-bn-c__promo-title, .page-bn-c__news-title {
    font-size: 20px;
  }
  .page-bn-c__step-list li {
    padding: 20px;
  }
  .page-bn-c__step-list li::before {
    width: 35px;
    height: 35px;
    font-size: 18px;
    top: 20px;
    left: -10px;
  }
  .page-bn-c__step-title, .page-bn-c__step-list p, .page-bn-c__inline-button {
    padding-left: 30px;
  }
  .page-bn-c__inline-button {
    font-size: 14px;
    padding: 6px 15px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .page-bn-c__news-title {
    margin: 15px 15px 8px;
  }
  .page-bn-c__news-excerpt, .page-bn-c__news-date {
    padding: 0 15px;
  }
}