.page-bnc {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #FFFFFF;
}

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

.page-bnc__section {
  padding: 60px 0;
}

.page-bnc__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-bnc__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

/* Video Section */
.page-bnc__video-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small decorative top padding */
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f0f8ff; /* Light blue background for video section */
}

.page-bnc__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-bnc__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.page-bnc__video-caption {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.page-bnc__video-title {
  font-size: clamp(24px, 3.5vw, 38px);
  color: #000000;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-bnc__video-description {
  font-size: 17px;
  color: #555555;
  margin-bottom: 30px;
}

/* Hero Section */
.page-bnc__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  background-color: #FFFFFF;
}

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

.page-bnc__hero-content {
  text-align: center;
  max-width: 900px;
}

.page-bnc__main-title {
  font-size: clamp(32px, 5vw, 56px);
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

.page-bnc__hero-description {
  font-size: 20px;
  color: #333333;
  margin-bottom: 40px;
}

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

/* Buttons */
.page-bnc__btn-primary,
.page-bnc__btn-secondary,
.page-bnc__btn-link,
.page-bnc__btn-small {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.page-bnc__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-bnc__btn-primary:hover {
  background-color: #1a8cc7;
  border-color: #1a8cc7;
}

.page-bnc__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-bnc__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1a8cc7;
}

.page-bnc__btn-link {
  color: #26A9E0;
  text-decoration: underline;
  padding: 0;
  border: none;
  background: none;
  font-size: 16px;
  white-space: normal;
}

.page-bnc__btn-link:hover {
  color: #1a8cc7;
}

.page-bnc__btn-small {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  background-color: #EA7C07;
  color: #FFFFFF;
  border: 1px solid #EA7C07;
}

.page-bnc__btn-small:hover {
  background-color: #d16e06;
  border-color: #d16e06;
}

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

.page-bnc__feature-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-bnc__feature-title {
  font-size: 24px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-bnc__feature-text {
  font-size: 16px;
  color: #555555;
}

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

.page-bnc__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}

.page-bnc__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-bnc__game-name {
  font-size: 22px;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
  padding: 0 15px;
}

.page-bnc__game-desc {
  font-size: 15px;
  color: #666666;
  margin-bottom: 20px;
  padding: 0 15px;
  flex-grow: 1;
}

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

.page-bnc__step-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-bnc__step-title {
  font-size: 24px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-bnc__step-text {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-bnc__tips-section {
  margin-top: 60px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-bnc__tips-title {
  font-size: 28px;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-bnc__tips-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-bnc__tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-bnc__tips-list li {
  font-size: 17px;
  color: #333333;
  padding-left: 25px;
  position: relative;
}

.page-bnc__tips-list li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #26A9E0;
}

/* Promotions Section */
.page-bnc__promotions {
  background-color: #f0f8ff;
}

.page-bnc__promo-banner {
  width: 100%;
  height: auto;
  max-width: 1000px;
  display: block;
  margin: 0 auto 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-bnc__promo-details {
  margin-top: 30px;
  text-align: left;
}

.page-bnc__promo-subtitle {
  font-size: 24px;
  color: #000000;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-bnc__promo-text {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
}

/* Mobile Experience Section */
.page-bnc__mobile-experience {
  background-color: #FFFFFF;
  text-align: center;
}

.page-bnc__mobile-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-bnc__app-download {
  margin-top: 30px;
}

.page-bnc__app-title {
  font-size: 28px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-bnc__app-text {
  font-size: 17px;
  color: #555555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-bnc__faq-section {
  background-color: #f0f8ff;
}

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

.page-bnc__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-bnc__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  color: #26A9E0;
  background-color: #FFFFFF;
  position: relative;
}

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

.page-bnc__faq-qtext {
  flex-grow: 1;
  padding-right: 10px;
}

.page-bnc__faq-toggle {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-bnc__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 16px;
  color: #555555;
  border-top: 1px solid #eee;
}

.page-bnc__faq-answer p {
    margin-bottom: 10px;
}

.page-bnc__faq-answer a {
    color: #26A9E0;
    text-decoration: underline;
}

.page-bnc__faq-answer a:hover {
    color: #1a8cc7;
}

/* Conclusion Section */
.page-bnc__conclusion {
  background-color: #26A9E0;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-bnc__conclusion .page-bnc__section-title {
  color: #FFFFFF;
  margin-bottom: 25px;
}

.page-bnc__conclusion .page-bnc__section-description {
  color: #f0f0f0;
  margin-bottom: 50px;
}

.page-bnc__conclusion .page-bnc__btn-primary {
  background-color: #EA7C07;
  border-color: #EA7C07;
}

.page-bnc__conclusion .page-bnc__btn-primary:hover {
  background-color: #d16e06;
  border-color: #d16e06;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-bnc__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }

  .page-bnc__main-title {
    font-size: clamp(30px, 4.5vw, 50px);
  }

  .page-bnc__hero-description {
    font-size: 18px;
  }

  .page-bnc__video-wrapper {
    padding-bottom: 60%; /* Adjust for slightly wider aspect on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-bnc__container {
    padding: 0 15px;
  }

  .page-bnc__section {
    padding: 40px 0;
  }

  .page-bnc__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-bnc__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-bnc__btn-primary,
  .page-bnc__btn-secondary,
  .page-bnc__btn-small,
  .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: 16px;
  }

  .page-bnc__hero-section {
    padding: 20px 15px;
  }

  .page-bnc__main-title {
    font-size: clamp(28px, 6vw, 40px);
    margin-bottom: 15px;
  }

  .page-bnc__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-bnc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-bnc__section,
  .page-bnc__card,
  .page-bnc__container,
  .page-bnc__video-section,
  .page-bnc__video-container,
  .page-bnc__video-wrapper,
  .page-bnc__cta-buttons,
  .page-bnc__button-group,
  .page-bnc__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-bnc__video-section {
    padding-top: 10px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-bnc__video-wrapper {
    padding-bottom: 75% !important; /* 4:3 Aspect Ratio for mobile to be more prominent */
    margin-bottom: 20px !important;
    border-radius: 0 !important;
  }

  .page-bnc__video-title {
    font-size: clamp(20px, 5vw, 30px);
  }

  .page-bnc__video-description {
    font-size: 15px;
  }

  .page-bnc video,
  .page-bnc__video {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
  }

  .page-bnc__feature-item,
  .page-bnc__game-card,
  .page-bnc__step-item {
    padding: 20px;
  }

  .page-bnc__feature-title,
  .page-bnc__game-name,
  .page-bnc__step-title {
    font-size: 20px;
  }

  .page-bnc__promo-banner {
    border-radius: 0 !important;
  }

  .page-bnc__app-title {
    font-size: 24px;
  }

  .page-bnc__faq-item summary {
    font-size: 16px;
    padding: 15px 20px;
  }

  .page-bnc__faq-answer {
    padding: 10px 20px 15px 20px;
    font-size: 15px;
  }

  .page-bnc__conclusion {
    padding: 60px 15px;
  }

  .page-bnc__tips-section {
    padding: 20px;
  }

  .page-bnc__tips-title {
    font-size: 24px;
  }
}