/* General styles for the Game Bài page */
.page-game-bai {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main color for dark body background #140C0C */
  background-color: #140C0C; /* Body background color */
}

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

.page-game-bai__section {
  padding: 60px 0;
  border-bottom: 1px solid #6A1E1E; /* Border color */
}

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

.page-game-bai__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFF1E8; /* Text Main color */
  position: relative;
  padding-bottom: 15px;
}

.page-game-bai__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
  border-radius: 2px;
}

.page-game-bai__description-text {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
  color: #FFF1E8; /* Text Main color */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-bai__text-block p {
  margin-bottom: 15px;
  font-size: 17px;
  color: #FFF1E8; /* Text Main color */
}

.page-game-bai__text-block strong {
  color: #F3C54D; /* Gold color */
}

.page-game-bai__sub-title {
  font-size: 24px;
  font-weight: bold;
  color: #F3C54D; /* Gold color */
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Hero Section */
.page-game-bai__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, shared.css handles body padding */
  display: flex;
  flex-direction: column; /* Ensure image is above content */
  align-items: center;
  text-align: center;
  overflow: hidden; /* Prevent content overflow */
}

.page-game-bai__hero-image {
  width: 100%;
  height: auto;
  max-height: 600px; /* Limit height for desktop */
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px; /* Space between image and content */
}}