/* style/index-why-choose-1bwm-game.css */

/* Body background is dark from shared.css, so main text should be light */
.page-index-why-choose-1bwm-game {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-index-why-choose-1bwm-game__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-index-why-choose-1bwm-game__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  overflow: hidden;
}

.page-index-why-choose-1bwm-game__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-index-why-choose-1bwm-game__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-index-why-choose-1bwm-game__main-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-index-why-choose-1bwm-game__hero-description {
  font-size: 1.25rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
}

.page-index-why-choose-1bwm-game__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-why-choose-1bwm-game__btn-primary,
.page-index-why-choose-1bwm-game__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-index-why-choose-1bwm-game__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  border: none;
}

.page-index-why-choose-1bwm-game__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-index-why-choose-1bwm-game__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold */
}

.page-index-why-choose-1bwm-game__btn-secondary:hover {
  background: #F2C14E;
  color: #08160F;
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-index-why-choose-1bwm-game__section {
  padding: 80px 0;
  text-align: center;
}

.page-index-why-choose-1bwm-game__section-title {
  color: #F2C14E; /* Gold */
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-index-why-choose-1bwm-game__text-block {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-index-why-choose-1bwm-game__image-content {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.page-index-why-choose-1bwm-game__game-grid,
.page-index-why-choose-1bwm-game__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-why-choose-1bwm-game__game-card,
.page-index-why-choose-1bwm-game__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-why-choose-1bwm-game__game-card:hover,
.page-index-why-choose-1bwm-game__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.page-index-why-choose-1bwm-game__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-why-choose-1bwm-game__card-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-index-why-choose-1bwm-game__card-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-why-choose-1bwm-game__btn-link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  margin-top: auto;
}

.page-index-why-choose-1bwm-game__btn-link:hover {
  text-decoration: underline;
  color: #F2C14E; /* Gold */
}

.page-index-why-choose-1bwm-game__features-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 800px;
  text-align: left;
}

.page-index-why-choose-1bwm-game__features-list li {
  display: flex;
  align-items: center;
  color: #F2FFF6; /* Text Main */
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.page-index-why-choose-1bwm-game__feature-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-index-why-choose-1bwm-game__features-row {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-index-why-choose-1bwm-game__feature-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: center;
  flex: 1;
  min-width: 300px;
  max-width: 45%;
}

.page-index-why-choose-1bwm-game__feature-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-why-choose-1bwm-game__feature-title {
  color: #F2C14E; /* Gold */\  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-index-why-choose-1bwm-game__feature-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

.page-index-why-choose-1bwm-game__steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-index-why-choose-1bwm-game__step-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: center;
  flex: 1;
  min-width: 280px;
  max-width: 30%;
}

.page-index-why-choose-1bwm-game__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-index-why-choose-1bwm-game__step-title {
  color: #F2C14E; /* Gold */
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-index-why-choose-1bwm-game__step-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

.page-index-why-choose-1bwm-game__btn-large {
  padding: 18px 40px;
  font-size: 1.2rem;
  margin-top: 40px;
}

.page-index-why-choose-1bwm-game__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

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

.page-index-why-choose-1bwm-game__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  color: #F2FFF6; /* Text Main */
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-index-why-choose-1bwm-game__faq-question::-webkit-details-marker {
  display: none;
}

.page-index-why-choose-1bwm-game__faq-question:hover {
  background-color: #13994A;
}

.page-index-why-choose-1bwm-game__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-index-why-choose-1bwm-game__faq-answer {
  padding: 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  line-height: 1.6;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-index-why-choose-1bwm-game__faq-answer p {
  margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-index-why-choose-1bwm-game__container {
    padding: 0 15px;
  }

  .page-index-why-choose-1bwm-game__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-index-why-choose-1bwm-game__main-title {
    font-size: 2rem;
  }

  .page-index-why-choose-1bwm-game__hero-description {
    font-size: 1rem;
  }

  .page-index-why-choose-1bwm-game__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-why-choose-1bwm-game__btn-primary,
  .page-index-why-choose-1bwm-game__btn-secondary,
  .page-index-why-choose-1bwm-game a[class*="button"],
  .page-index-why-choose-1bwm-game 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-left: 15px;
    padding-right: 15px;
  }

  .page-index-why-choose-1bwm-game__section {
    padding: 50px 0;
  }

  .page-index-why-choose-1bwm-game__section-title {
    font-size: 2rem;
  }

  .page-index-why-choose-1bwm-game__text-block {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-index-why-choose-1bwm-game img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-index-why-choose-1bwm-game__section,
  .page-index-why-choose-1bwm-game__card,
  .page-index-why-choose-1bwm-game__container,
  .page-index-why-choose-1bwm-game__game-grid,
  .page-index-why-choose-1bwm-game__promo-grid,
  .page-index-why-choose-1bwm-game__features-row,
  .page-index-why-choose-1bwm-game__steps,
  .page-index-why-choose-1bwm-game__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  .page-index-why-choose-1bwm-game__game-grid,
  .page-index-why-choose-1bwm-game__promo-grid,
  .page-index-why-choose-1bwm-game__features-row,
  .page-index-why-choose-1bwm-game__steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-why-choose-1bwm-game__feature-item,
  .page-index-why-choose-1bwm-game__step-item {
    max-width: 100%;
    min-width: unset;
  }

  .page-index-why-choose-1bwm-game__features-list li {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .page-index-why-choose-1bwm-game__feature-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .page-index-why-choose-1bwm-game__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-index-why-choose-1bwm-game__faq-answer {
    font-size: 0.9rem;
    padding: 15px 20px;
  }

  .page-index-why-choose-1bwm-game__btn-large {
    font-size: 1.1rem;
    padding: 15px 25px;
  }
}