.page-game-bai {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main for overall page on dark background */
  background: #0A0A0A; /* Background color from custom palette */
  line-height: 1.6;
}

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

.page-game-bai__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
  line-height: 1.2;
}

.page-game-bai__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFF6D6; /* Text Main */
}

.page-game-bai__article-body p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #FFF6D6; /* Text Main */
}

.page-game-bai__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-game-bai__btn-primary,
.page-game-bai__btn-secondary,
.page-game-bai__text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  word-wrap: break-word; /* Allow text wrap for buttons */
  box-sizing: border-box; /* Include padding/border in width */
}

.page-game-bai__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text on light gradient for contrast */
  border: none;
}

.page-game-bai__btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-game-bai__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow color */
  border: 2px solid #3A2A12; /* Border color */
}

.page-game-bai__btn-secondary:hover {
  background: #222222;
  border-color: #FFD36B;
  color: #FFF6D6;
}

.page-game-bai__btn-small {
  padding: 8px 18px;
  font-size: 14px;
}

.page-game-bai__text-link {
  color: #FFD36B; /* Glow color for text links */
  text-decoration: underline;
  padding: 0;
  border: none;
  background: none;
  font-size: 16px;
  font-weight: normal;
}

.page-game-bai__text-link:hover {
  color: #FFF6D6; /* Text Main */
}

/* Hero Section */
.page-game-bai__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, not --header-offset */
  background: #0A0A0A; /* Background color */
}

.page-game-bai__hero-image-wrapper {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.page-game-bai__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Default for desktop */
  display: block;
}

.page-game-bai__hero-content {
  max-width: 900px;
  margin: 40px auto 80px;
  text-align: center;
  padding: 0 20px;
}

.page-game-bai__hero-title {
  font-size: clamp(32px, 5vw, 48px); /* H1 clamp font-size */
  font-weight: 800;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}