.page-game-bai {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.page-game-bai__hero-section {
  padding-top: 10px;
  padding-bottom: 40px;
}

.page-game-bai__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.page-game-bai__hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(17, 168, 78, 0.35);
  border: 1px solid #2E7A4E;
}

.page-game-bai__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.page-game-bai__hero-content {
  text-align: center;
}

.page-game-bai__main-title {
  color: #F2FFF6;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-bai__hero-desc {
  color: #A7D9B8;
  font-size: 1.125rem;
  max-width: 820px;
  margin: 0 auto 24px;
}

.page-game-bai__hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.page-game-bai__btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  max-width: 100%;
}

.page-game-bai__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.35);
}

.page-game-bai__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(42, 209, 111, 0.5);
}

.page-game-bai__btn--secondary {
  background: #11271B;
  color: #57E38D;
  border: 2px solid #2E7A4E;
}

.page-game-bai__btn--secondary:hover {
  border-color: #57E38D;
  transform: translateY(-2px);
}

.page-game-bai__intro-section {
  padding: 50px 0;
  background: #0A4B2C;
}

.page-game-bai__section-title {
  color: #F2FFF6;
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.3;
}

.page-game-bai__text {
  color: #F2FFF6;
  font-size: 1.05rem;
  margin-bottom: 18px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-bai__games-section {
  padding: 60px 0;
}

.page-game-bai__games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.page-game-bai__game-card {
  background: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-game-bai__game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(17, 168, 78, 0.3);
}

.page-game-bai__game-card img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.page-game-bai__card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 20px 20px 10px;
}

.page-game-bai__card-title a {
  color: #57E38D;
  text-decoration: none;
}

.page-game-bai__card-title a:hover {
  color: #F2C14E;
}

.page-game-bai__card-text {
  color: #A7D9B8;
  font-size: 0.98rem;
  margin: 0 20px 22px;
}

.page-game-bai__features-section {
  padding: 60px 0;
  background: #0A4B2C;
}

.page-game-bai__features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.page-game-bai__feature-item {
  background: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-game-bai__feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(17, 168, 78, 0.3);
}

.page-game-bai__feature-item img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 18px;
}

.page-game-bai__feature-title {
  color: #F2FFF6;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-game-bai__feature-text {
  color: #A7D9B8;
  font-size: 0.98rem;
}

.page-game-bai__guide-section {
  padding: 60px 0;
}

.page-game-bai__guide-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.page-game-bai__step {
  background: #11271B;
  border-left: 4px solid #22C768;
  border-radius: 12px;
  padding: 22px;
}

.page-game-bai__step-title {
  color: #57E38D;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-game-bai__step-text {
  color: #A7D9B8;
  font-size: 0.98rem;
}

.page-game-bai__guide-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.page-game-bai__faq-section {
  padding: 60px 0;
  background: #0A4B2C;
}

.page-game-bai__faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-game-bai__faq-item {
  background: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  padding: 22px;
}

.page-game-bai__faq-question {
  color: #F2FFF6;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-game-bai__faq-answer {
  color: #A7D9B8;
  font-size: 0.98rem;
}

.page-game-bai__cta-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #13994A 0%, #0A4B2C 100%);
  text-align: center;
}

.page-game-bai__cta-title {
  color: #F2FFF6;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-game-bai__cta-text {
  color: #F2FFF6;
  font-size: 1.1rem;
  max-width: 780px;
  margin: 0 auto 28px;
}

.page-game-bai__cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .page-game-bai__games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-game-bai__features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-game-bai {
    max-width: 100%;
    overflow-x: hidden;
  }
  .page-game-bai__hero-section {
    padding-top: 10px;
    padding-bottom: 28px;
  }
  .page-game-bai__hero-container {
    width: 100%;
    padding: 0 14px;
    gap: 18px;
  }
  .page-game-bai__hero-image img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-game-bai__main-title {
    font-size: 1.6rem;
  }
  .page-game-bai__hero-desc {
    font-size: 1rem;
  }
  .page-game-bai__hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-game-bai__btn {
    width: 100%;
    max-width: 100%;
    padding: 13px 20px;
  }
  .page-game-bai__section-title {
    font-size: 1.5rem;
  }
  .page-game-bai__games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-game-bai__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-game-bai__guide-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .page-game-bai__guide-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .page-game-bai__cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-game-bai__cta-title {
    font-size: 1.5rem;
  }
  .page-game-bai__intro-section,
  .page-game-bai__games-section,
  .page-game-bai__features-section,
  .page-game-bai__guide-section,
  .page-game-bai__faq-section,
  .page-game-bai__cta-section {
    padding: 40px 0;
  }
  .page-game-bai img {
    max-width: 100% !important;
    height: auto !important;
  }
}