.page-bnc {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--color-card-bg);
  padding-bottom: 40px;
}

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

.page-bnc__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text-main);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  padding-top: 40px;
}

.page-bnc__paragraph {
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-secondary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-bnc__paragraph--highlight {
  font-weight: 600;
  color: var(--color-gold);
}

.page-bnc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px;
  overflow: hidden;
}

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

.page-bnc__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--color-deep-navy), var(--color-card-bg));
}

.page-bnc__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-bnc__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-bnc__main-title {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.page-bnc__intro-text {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-bnc__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.page-bnc__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
}

.page-bnc__cta-button--secondary {
  background: var(--color-gold);
  color: var(--color-deep-navy);
}

.page-bnc__cta-button--secondary:hover {
  background: #E0B03E;
}

.page-bnc__cta-button--small {
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 30px;
}

.page-bnc__cta-button--large {
  padding: 20px 50px;
  font-size: 24px;
  border-radius: 60px;
}

.page-bnc__intro-section,
.page-bnc__quick-access-section,
.page-bnc__features-section,
.page-bnc__promotions-section,
.page-bnc__safety-support-section,
.page-bnc__how-to-play-section,
.page-bnc__faq-section,
.page-bnc__blog-section,
.page-bnc__cta-download-section {
  padding: 60px 0;
  background-color: var(--color-card-bg);
  position: relative;
  overflow: hidden;
}

.page-bnc__intro-section::before,
.page-bnc__features-section::before,
.page-bnc__promotions-section::before,
.page-bnc__safety-support-section::before,
.page-bnc__how-to-play-section::before,
.page-bnc__faq-section::before,
.page-bnc__blog-section::before,
.page-bnc__cta-download-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-divider);
}

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

.page-bnc__feature-item {
  background-color: var(--color-deep-navy);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
}

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

.page-bnc__feature-item img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px var(--color-glow));
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-bnc__feature-title {
  font-size: 22px;
  color: var(--text-main);
  margin-bottom: 10px;
  font-weight: 700;
}

.page-bnc__feature-description {
  font-size: 15px;
  color: var(--text-secondary);
}

.page-bnc__quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-bnc__quick-link-item {
  background: var(--color-deep-navy);
  color: var(--text-main);
  text-decoration: none;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
}

.page-bnc__quick-link-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  background: linear-gradient(45deg, var(--color-deep-navy), #1A3F70);
}

.page-bnc__link-icon {
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--color-glow);
}

.page-bnc__link-text {
  font-size: 16px;
  font-weight: 600;
}

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

.page-bnc__game-card {
  background-color: var(--color-deep-navy);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
}

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

.page-bnc__game-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-bnc__game-card .page-bnc__game-title {
  font-size: 22px;
  color: var(--text-main);
  padding: 20px 20px 10px;
  font-weight: 700;
}

.page-bnc__game-card .page-bnc__game-description {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 0 20px 20px;
  text-align: left;
}

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

.page-bnc__promo-card {
  background-color: var(--color-deep-navy);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

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

.page-bnc__promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-bnc__promo-card .page-bnc__promo-title {
  font-size: 20px;
  color: var(--text-main);
  padding: 20px 20px 10px;
  font-weight: 700;
}

.page-bnc__promo-card .page-bnc__promo-description {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 0 20px 20px;
  text-align: left;
  flex-grow: 1;
}

.page-bnc__promo-card .page-bnc__cta-button--small {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
}

.page-bnc__view-all-promos {
  display: block;
  text-align: center;
  margin-top: 40px;
  color: var(--color-glow);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-bnc__view-all-promos:hover {
  color: #fff;
  text-decoration: underline;
}

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

.page-bnc__safety-item {
  background-color: var(--color-deep-navy);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
}

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

.page-bnc__safety-item img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px var(--color-glow));
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-bnc__safety-title {
  font-size: 22px;
  color: var(--text-main);
  margin-bottom: 10px;
  font-weight: 700;
}

.page-bnc__safety-description {
  font-size: 15px;
  color: var(--text-secondary);
}

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

.page-bnc__step-item {
  background-color: var(--color-deep-navy);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-bnc__step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-glow);
  color: var(--color-deep-navy);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--text-main);
}

.page-bnc__step-title {
  font-size: 22px;
  color: var(--text-main);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-bnc__step-description {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-bnc__faq-list {
  margin-top: 40px;
}

details.page-bnc__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-deep-navy);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

details.page-bnc__faq-item summary.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main);
  font-weight: 600;
  font-size: 18px;
}

details.page-bnc__faq-item summary.page-bnc__faq-question::-webkit-details-marker {
  display: none;
}

details.page-bnc__faq-item summary.page-bnc__faq-question:hover {
  background: #1A3F70;
}

.page-bnc__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}

.page-bnc__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--color-glow);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  line-height: 1;
}

details.page-bnc__faq-item .page-bnc__faq-answer {
  padding: 0 25px 25px;
  background: var(--color-card-bg);
  border-radius: 0 0 12px 12px;
}

details.page-bnc__faq-item .page-bnc__faq-answer p {
  text-align: left;
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

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

.page-bnc__blog-card {
  background-color: var(--color-deep-navy);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
}

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

.page-bnc__blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-bnc__blog-card .page-bnc__blog-title {
  font-size: 20px;
  color: var(--text-main);
  padding: 20px 20px 10px;
  font-weight: 700;
}

.page-bnc__blog-card .page-bnc__blog-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-bnc__blog-card .page-bnc__blog-title a:hover {
  color: var(--color-glow);
}

.page-bnc__blog-card .page-bnc__blog-meta {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 0 20px;
  margin-bottom: 10px;
}

.page-bnc__blog-card .page-bnc__blog-excerpt {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 0 20px 20px;
  text-align: left;
}

.page-bnc__view-all-posts {
  display: block;
  text-align: center;
  margin-top: 40px;
  color: var(--color-glow);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-bnc__view-all-posts:hover {
  color: #fff;
  text-decoration: underline;
}

.page-bnc__cta-download-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--color-deep-navy), var(--primary-color));
  border-top: 1px solid var(--color-divider);
}

.page-bnc__cta-download-section .page-bnc__section-title {
  color: var(--text-main);
  margin-bottom: 25px;
  padding-top: 0;
}

.page-bnc__cta-download-section .page-bnc__paragraph {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 900px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-bnc__main-title {
    font-size: clamp(28px, 4.5vw, 48px);
  }
  .page-bnc__intro-text {
    font-size: clamp(16px, 2.2vw, 20px);
  }
  .page-bnc__cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }
  .page-bnc__cta-button--large {
    padding: 18px 45px;
    font-size: 22px;
  }
  .page-bnc__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }
  .page-bnc__paragraph {
    font-size: 16px;
  }
  .page-bnc__feature-item img, .page-bnc__safety-item img {
    
    
  }
  .page-bnc__feature-title, .page-bnc__safety-title, .page-bnc__step-title {
    font-size: 20px;
  }
  .page-bnc__game-card img {
    height: 200px;
  }
  .page-bnc__promo-card img {
    
  }
}

@media (max-width: 768px) {
  .page-bnc {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-bnc__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-bnc__hero-image {
    border-radius: 8px;
  }
  .page-bnc__main-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 15px;
  }
  .page-bnc__intro-text {
    font-size: clamp(15px, 2.5vw, 18px);
    margin-bottom: 30px;
  }
  .page-bnc__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-bnc__cta-button,
  .page-bnc__cta-button--secondary,
  .page-bnc__cta-button--small,
  .page-bnc__cta-button--large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 20px !important;
    font-size: 18px !important;
    border-radius: 40px !important;
  }
  .page-bnc__container {
    padding: 0 15px;
  }
  .page-bnc__section-title {
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 15px;
    padding-top: 30px;
  }
  .page-bnc__paragraph {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .page-bnc__feature-item, .page-bnc__safety-item, .page-bnc__step-item,
  .page-bnc__game-card, .page-bnc__promo-card, .page-bnc__blog-card {
    padding: 20px;
  }
  .page-bnc__feature-item img, .page-bnc__safety-item img {
    
    
  }
  .page-bnc__feature-title, .page-bnc__safety-title, .page-bnc__step-title {
    font-size: 18px;
  }
  .page-bnc__game-card img {
    
  }
  .page-bnc__promo-card img {
    
  }
  .page-bnc__quick-links-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .page-bnc__link-icon {
    font-size: 30px;
  }
  .page-bnc__link-text {
    font-size: 14px;
  }
  details.page-bnc__faq-item summary.page-bnc__faq-question {
    padding: 15px 20px;
  }
  .page-bnc__faq-qtext {
    font-size: 16px;
  }
  .page-bnc__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  details.page-bnc__faq-item .page-bnc__faq-answer {
    padding: 0 20px 20px;
  }
  details.page-bnc__faq-item .page-bnc__faq-answer p {
    font-size: 15px;
  }
  .page-bnc__blog-card img {
    
  }
  .page-bnc__blog-card .page-bnc__blog-title {
    font-size: 18px;
  }
  .page-bnc__view-all-promos, .page-bnc__view-all-posts {
    font-size: 16px;
  }
}