/* style/bnc.css */

/* Body background is #08160F (dark), so main text color should be light (#F2FFF6) */
.page-bnc {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: transparent; /* Body will handle background-color from shared.css */
  line-height: 1.6;
}

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

.page-bnc__section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-bnc__section:last-of-type {
  border-bottom: none;
}

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

.page-bnc__text-block {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-bnc__text-block a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

.page-bnc__text-block a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-bnc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-bnc__hero-image-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

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

.page-bnc__hero-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  background-color: #08160F; /* Background */
  width: 100%;
  box-sizing: border-box;
}

.page-bnc__hero-title {
  font-size: clamp(36px, 5vw, 56px); 
  font-weight: 800;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-bnc__hero-description {
  font-size: 18px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.5;
}

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

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

.page-bnc__btn-primary,
.page-bnc__btn-secondary,
.page-bnc__btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  border: 2px solid transparent;
}

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

.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: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  border-color: #2E7A4E; /* Border */
}

.page-bnc__btn-secondary:hover {
  background: #11A84E; /* Main */
  border-color: #11A84E;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.3);
}

.page-bnc__btn-tertiary {
  background: #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
}

.page-bnc__btn-tertiary:hover {
  background: #11A84E; /* Main */
  transform: translateY(-1px);
}

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

.page-bnc__card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-bnc__card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-bnc__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-bnc__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-bnc__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-bnc__card-title a:hover {
  color: #57E38D; /* Glow */
}

.page-bnc__card-description {
  font-size: 15px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}