.page-game-bai-phom {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
}

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

/* Hero Section */
.page-game-bai-phom__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding as per requirement */
  padding-bottom: 40px;
  text-align: center;
  overflow: hidden;
}

.page-game-bai-phom__hero-image {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for desktop */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-game-bai-phom__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-game-bai-phom__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
  margin-top: -150px; /* Overlap slightly for visual effect */
  background: rgba(20, 12, 12, 0.7); /* Semi-transparent background for readability */
  padding: 30px;
  border-radius: 10px;
}

.page-game-bai-phom__main-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #F3C54D; /* Gold */
  line-height: 1.2;
}

.page-game-bai-phom__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF1E8; /* Text Main */
}

.page-game-bai-phom__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-game-bai-phom__btn-primary,
.page-game-bai-phom__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  max-width: 100%; /* For button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-bai-phom__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
  color: #140C0C; /* Dark text for contrast */
  border: none;
}

.page-game-bai-phom__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-game-bai-phom__btn-secondary {
  background: transparent;
  color: #F3C54D; /* Gold */
  border: 2px solid #F3C54D; /* Gold border */
}

.page-game-bai-phom__btn-secondary:hover {
  background: #F3C54D;
  color: #140C0C; /* Dark text for contrast */
}

/* General Section Styles */
.page-game-bai-phom__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F3C54D; /* Gold */
}

.page-game-bai-phom__section-intro,
.page-game-bai-phom__section-guide,
.page-game-bai-phom__section-promotions {
  padding: 60px 0;
  background-color: #140C0C; /* Background */
  color: #FFF1E8; /* Text Main */
}

.page-game-bai-phom__section-features,
.page-game-bai-phom__section-strategy,
.page-game-bai-phom__section-cta,
.page-game-bai-phom__section-faq {
  padding: 60px 0;
  background-color: #2A1212; /* Card BG */
  color: #FFF1E8; /* Text Main */
}

.page-game-bai-phom__text-block p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-game-bai-phom__text-block {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Feature Grid */
.page-game-bai-phom__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-game-bai-phom__feature-item {
  background: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-bai-phom__feature-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F3C54D; /* Gold */
}

.page-game-bai-phom__feature-description {
  font-size: 1em;
  color: #FFF1E8; /* Text Main */
}

.page-game-bai-phom__feature-image-wrapper,
.page-game-bai-phom__gameplay-image-wrapper,
.page-game-bai-phom__strategy-image-wrapper {
  max-width: 1000px;
  margin: 40px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-game-bai-phom__feature-image-wrapper img,
.page-game-bai-phom__gameplay-image-wrapper img,
.page-game-bai-phom__strategy-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Guide Steps */
.page-game-bai-phom__guide-steps {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-game-bai-phom__guide-steps li {
  position: relative;
  padding-left: 60px;
  margin-bottom: 30px;
}

.page-game-bai-phom__guide-steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: #F3C54D; /* Gold */
  color: #140C0C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-game-bai-phom__guide-step-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #F3C54D; /* Gold */
  margin-bottom: 10px;
}

/* Strategy List */
.page-game-bai-phom__strategy-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-game-bai-phom__strategy-list li {
  background: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-game-bai-phom__strategy-item-title {
  font-size: 1.25em;
  font-weight: 600;
  color: #F3C54D; /* Gold */
  margin-bottom: 10px;
}

/* Promotions */
.page-game-bai-phom__promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-game-bai-phom__promo-card {
  background: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-game-bai-phom__promo-card img {
  width: 100%;
  height: 250px; /* Fixed height for promo images */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-game-bai-phom__promo-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-game-bai-phom__promo-title a {
  color: #F3C54D; /* Gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-bai-phom__promo-title a:hover {
  color: #FFB04A;
}

.page-game-bai-phom__promo-description {
  font-size: 1em;
  color: #FFF1E8; /* Text Main */
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-bai-phom__promo-card .page-game-bai-phom__btn-secondary {
  margin: 0 20px 20px;
  align-self: center;
  width: calc(100% - 40px);
}

.page-game-bai-phom__center-buttons {
  text-align: center;
}

/* CTA Section */
.page-game-bai-phom__section-cta {
  background-color: #C61F1F; /* Main color */
  padding: 80px 0;
  text-align: center;
}

.page-game-bai-phom__flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-game-bai-phom__section-cta .page-game-bai-phom__section-title {
  color: #FFF1E8; /* Text Main */
  margin-bottom: 20px;
}

.page-game-bai-phom__section-cta p {
  font-size: 1.15em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #FFF1E8; /* Text Main */
}

/* FAQ Section */
.page-game-bai-phom__faq-list {
  max-width: 900px;
  margin: 0 auto;
}
}