.page-bnc {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color, #FFF5E1); /* Default text color for dark background */
  background-color: var(--bg-color, #B71C1C); /* Default background color */
}

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

.page-bnc__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding as per instruction */
  padding-bottom: 50px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #7A0E0E 0%, #B71C1C 100%);
}

.page-bnc__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

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

.page-bnc__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 30px 20px;
  margin-top: -100px; /* Adjust to bring content slightly over image for visual flow */
  background: rgba(255, 245, 225, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 245, 225, 0.2);
}

.page-bnc__main-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #FFF5E1;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.page-bnc__hero-description {
  font-size: 1.2rem;
  color: #F2F2F2;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-bnc__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red for contrast on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-bnc__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

.page-bnc__btn-secondary {
  background: #7A0E0E; /* Deep Red */
  color: #FFF5E1;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #F2B544; /* Gold border */
  cursor: pointer;
}

.page-bnc__btn-secondary:hover {
  background: #5a0a0a;
  transform: translateY(-2px);
  border-color: #FFCC66; /* Glow on hover */
}

.page-bnc__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #C91F17; /* Main brand color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-bnc__section-title--light {
  color: #FFF5E1;
}

.page-bnc__text-block {
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-bnc__introduction-section {
  padding: 60px 0;
  background-color: #FFF5E1; /* Light background */
  color: #333333; /* Dark text for contrast */
}

.page-bnc__introduction-section .page-bnc__text-block {
  color: #333333;
}

.page-bnc__introduction-section .page-bnc__highlight {
  color: #C91F17;
  font-weight: bold;
}

.page-bnc__image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-bnc__image-grid-item {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.page-bnc__text-grid-item {
  text-align: left;
}

.page-bnc__sub-title {
  font-size: 1.8rem;
  color: #C91F17;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-bnc__games-section {
  padding: 80px 0;
  background-color: #B71C1C; /* Deep Red background */
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%237A0E0E" fill-opacity="0.2"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zm0-30V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E'); /* Subtle pattern */
  color: #FFF5E1;
}

.page-bnc__games-section .page-bnc__text-block {
  color: #F2F2F2;
}

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

.page-bnc__game-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  text-align: center;
  padding-bottom: 20px;
  border: 2px solid #F2B544; /* Border color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bnc__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 15px #FFCC66; /* Glow */
}

.page-bnc__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-bnc__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-bnc__card-title a {
  color: #FFF5E1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-bnc__card-title a:hover {
  color: #FFD86A; /* Gold hover */
}

.page-bnc__card-description {
  font-size: 0.95rem;
  color: #F2F2F2;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-bnc__guide-section {
  padding: 80px 0;
  background-color: #FFF5E1;
  color: #333333;
}

.page-bnc__guide-section .page-bnc__text-block {
  color: #333333;
}

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

.page-bnc__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  border: 1px solid #e0e0e0;
}

.page-bnc__step-icon {
  width: 60px;
  height: 60px;
  background-color: #C91F17;
  color: #FFF5E1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.page-bnc__step-title {
  font-size: 1.4rem;
  color: #C91F17;
  margin-bottom: 15px;
}

.page-bnc__strategy-section {
  padding: 80px 0;
  background-color: #7A0E0E; /* Deep Red */
  color: #FFF5E1;
}

.page-bnc__strategy-section .page-bnc__text-block {
  color: #F2F2F2;
}

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

.page-bnc__strategy-item {
  background-color: rgba(255, 245, 225, 0.1);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 245, 225, 0.2);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-bnc__strategy-item .page-bnc__sub-title {
  color: #FFD86A; /* Gold */
}

.page-bnc__promotions-section {
  padding: 80px 0;
  background-color: #FFF5E1;
  color: #333333;
}

.page-bnc__promotions-section .page-bnc__text-block {
  color: #333333;
}

.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: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid #e0e0e0;
}

.page-bnc__promo-card .page-bnc__card-image {
  height: 180px;
}

.page-bnc__promo-card .page-bnc__card-title a {
  color: #C91F17;
}

.page-bnc__promo-card .page-bnc__card-description {
  color: #555555;
}

.page-bnc__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-bnc__why-choose-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: #FFF5E1;
  text-align: center;
}

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

.page-bnc__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(122, 14, 14, 0.85); /* Deep Red overlay */
  z-index: 1;
}

.page-bnc__why-choose-content {
  position: relative;
  z-index: 2;
}

.page-bnc__why-choose-content .page-bnc__text-block {
  color: #F2F2F2;
}

.page-bnc__reason-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  text-align: left;
}

.page-bnc__reason-item {
  background-color: rgba(255, 245, 225, 0.15);
  padding: 20px;
  border-radius: 10px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 245, 225, 0.2);
}

.page-bnc__reason-item span {
  color: #FFD86A; /* Gold checkmark */
  font-size: 1.5rem;
  font-weight: bold;
}

.page-bnc__download-section {
  padding: 80px 0;
  background-color: #FFF5E1;
  color: #333333;
  text-align: center;
}

.page-bnc__download-section .page-bnc__text-block {
  color: #333333;
}

.page-bnc__download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-bnc__download-image {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.page-bnc__download-mockup-image {
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.page-bnc__faq-section {
  padding: 80px 0;
  background-color: #7A0E0E; /* Deep Red */
  color: #FFF5E1;
}

.page-bnc__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-bnc__faq-item {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid #F2B544;
}

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #C91F17; /* Main brand color for summary */
  color: #FFF5E1;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: background-color 0.3s ease;
}

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

.page-bnc__faq-question:hover {
  background-color: #E53935;
}

.page-bnc__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-bnc__faq-item[open] .page-bnc__faq-toggle {
  transform: rotate(45deg);
}

.page-bnc__faq-answer {
  padding: 20px;
  background-color: rgba(255, 245, 225, 0.1);
  color: #F2F2F2;
  font-size: 1rem;
  border-top: 1px solid rgba(255, 245, 225, 0.2);
}

.page-bnc__faq-answer p {
  margin-bottom: 15px;
  color: #F2F2F2;
  text-align: left;
}

.page-bnc__faq-answer .page-bnc__btn-secondary {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-bnc__highlight {
  color: #FFD86A;
  font-weight: bold;
}

/* --- General Image & Button Responsive Styles (Desktop) --- */
.page-bnc img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-bnc__cta-button,
.page-bnc__btn-primary,
.page-bnc__btn-secondary,
.page-bnc a[class*="button"],
.page-bnc a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-bnc__cta-buttons,
.page-bnc__button-group,
.page-bnc__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* --- Mobile Responsive Styles --- */
@media (max-width: 768px) {
  .page-bnc {
    font-size: 15px;
    line-height: 1.5;
  }

  /* HERO Section */
  .page-bnc__hero-section {
    padding-top: 10px !important; /* Small top padding */
    padding-bottom: 30px;
  }

  .page-bnc__hero-content {
    margin-top: -50px; /* Less overlap on mobile */
    padding: 20px 15px;
  }

  .page-bnc__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-bnc__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-bnc__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  /* General Images & Containers */
  .page-bnc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-bnc__container,
  .page-bnc__introduction-section,
  .page-bnc__games-section,
  .page-bnc__guide-section,
  .page-bnc__strategy-section,
  .page-bnc__promotions-section,
  .page-bnc__why-choose-section,
  .page-bnc__download-section,
  .page-bnc__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons & Button Containers */
  .page-bnc__cta-button,
  .page-bnc__btn-primary,
  .page-bnc__btn-secondary,
  .page-bnc a[class*="button"],
  .page-bnc a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-bnc__cta-buttons,
  .page-bnc__button-group,
  .page-bnc__btn-container,
  .page-bnc__download-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    flex-wrap: wrap !important;
    gap: 15px;
    flex-direction: column;
  }

  /* Introduction Section */
  .page-bnc__image-text-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-bnc__text-grid-item {
    text-align: center;
  }

  .page-bnc__sub-title {
    font-size: 1.5rem;
  }

  /* Games Section (Product Display) */
  .page-bnc__games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-bnc__game-card {
    padding-bottom: 15px;
  }

  .page-bnc__card-image {
    height: 180px;
  }

  /* Guide Section */
  .page-bnc__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Strategy Section */
  .page-bnc__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Promotions Section */
  .page-bnc__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Why Choose Section */
  .page-bnc__reason-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Download Section */
  .page-bnc__download-mockup-image {
    max-width: 90%;
  }

  /* FAQ Section */
  .page-bnc__faq-question {
    font-size: 1.1rem;
    padding: 15px;
  }

  .page-bnc__faq-answer {
    padding: 15px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .page-bnc__main-title {
    font-size: clamp(1.8rem, 9vw, 2.2rem);
  }

  .page-bnc__section-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .page-bnc__hero-description {
    font-size: 0.95rem;
  }

  .page-bnc__cta-buttons {
    gap: 10px;
  }
}