/* Base styles */
.page-game-bai {
  font-family: Arial, sans-serif;
  color: #333333; /* Default text color for light backgrounds */
  line-height: 1.6;
  background-color: #FFFFFF; /* Explicitly set body background for clarity */
}

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

.page-game-bai__section-title {
  font-size: 32px;
  font-weight: 700;
  color: #017439; /* Brand color for titles */
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-game-bai__section-title--white {
  color: #FFFFFF;
}

.page-game-bai__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-bai__section-description--white {
  color: #f0f0f0;
}

.page-game-bai__dark-bg {
  background-color: #017439;
  color: #FFFFFF;
  padding: 60px 0;
}

.page-game-bai__light-bg {
  background-color: #FFFFFF;
  color: #333333;
  padding: 60px 0;
}

.page-game-bai__btn-primary,
.page-game-bai__btn-secondary,
.page-game-bai__game-btn,
.page-game-bai__promo-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
}

.page-game-bai__btn-primary {
  background-color: #C30808; /* Custom color for Register/Login */
  color: #FFFF00; /* Custom font color for Register/Login */
  border: 2px solid #C30808;
}

.page-game-bai__btn-primary:hover {
  background-color: #e02020;
  border-color: #e02020;
  color: #ffffff;
}

.page-game-bai__btn-secondary {
  background-color: transparent;
  color: #017439;
  border: 2px solid #017439;
}

.page-game-bai__btn-secondary:hover {
  background-color: #017439;
  color: #FFFFFF;
}

.page-game-bai__game-btn,
.page-game-bai__promo-btn {
  background-color: #017439;
  color: #FFFFFF;
  border: 1px solid #017439;
  padding: 10px 20px;
  font-size: 15px;
}

.page-game-bai__game-btn:hover,
.page-game-bai__promo-btn:hover {
  background-color: #005a2d;
  border-color: #005a2d;
}

/* Hero Section */
.page-game-bai__hero-section {
  padding-top: 10px; /* Small top padding, not --header-offset */
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden; /* Ensure no overflow */
}

.page-game-bai__hero-image {
  width: 100%;
  max-height: 675px; /* Limit height for desktop */
  overflow: hidden;
}

.page-game-bai__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Cover for desktop */
}

.page-game-bai__hero-content {
  padding: 40px 15px;
  text-align: center;
  max-width: 900px;
}

.page-game-bai__main-title {
  font-size: clamp(28px, 4vw, 48px); /* Use clamp for H1 */
  color: #017439;
  margin-bottom: 15px;
  line-height: 1.1;
  font-weight: 800;
}

.page-game-bai__hero-description {
  font-size: 18px;
  color: #555555;
  margin-bottom: 30px;
}

.page-game-bai__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}