/* style/bnc.css */

.page-bnc {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-bnc__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  background-color: #08160F;
}

.page-bnc__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
  margin-bottom: 30px;
}

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

.page-bnc__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-bnc__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-bnc__description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

.page-bnc__btn-primary,
.page-bnc__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-bnc__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-bnc__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-bnc__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Lighter green from button gradient */
  border: 2px solid #2E7A4E; /* Border */
}

.page-bnc__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.2);
}

.page-bnc__section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-bnc__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-bnc__about-bnc p,
.page-bnc__jackpot-connection p,
.page-bnc__promotions p,
.page-bnc__cta-final p {
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
  margin-bottom: 15px;
  font-size: 1rem;
}

.page-bnc__about-bnc p:last-child,
.page-bnc__jackpot-connection p:last-child,
.page-bnc__promotions p:last-child,
.page-bnc__cta-final p:last-child {
  margin-bottom: 0;
}

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

.page-bnc__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bnc__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(42, 209, 111, 0.2);
}

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

.page-bnc__card-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-bnc__feature-card p,
.page-bnc__promo-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

.page-bnc__ordered-list {
  list-style: none;
  counter-reset: item;
  padding: 0;
  margin-top: 40px;
}

.page-bnc__ordered-list li {
  counter-increment: item;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  padding-left: 40px;
}

.page-bnc__ordered-list li::before {
  content: counter(item);
  background-color: #13994A; /* From button gradient */
  color: #F2FFF6; /* Text Main */
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  position: absolute;
  left: 0;
  top: 0;
}

.page-bnc__list-title {
  font-size: 1.2rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 5px;
  font-weight: 600;
}

.page-bnc__ordered-list li p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  margin-top: 0;
  text-align: left;
}

.page-bnc__ordered-list li a {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-bnc__flex-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page-bnc__text-block {
  flex: 1;
}

.page-bnc__image-block {
  flex: 1;
  text-align: center;
}

.page-bnc__image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.page-bnc__promo-card .page-bnc__btn-primary {
  margin-top: 20px;
}

.page-bnc__promo-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-bnc__promo-note a {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-bnc__faq {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-bnc__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #2E7A4E;
}

.page-bnc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B;
  list-style: none;
}

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