:root {
  --page-game-bai-primary: #11A84E;
  --page-game-bai-secondary: #22C768;
  --page-game-bai-bg: #08160F;
  --page-game-bai-card-bg: #11271B;
  --page-game-bai-text-main: #F2FFF6;
  --page-game-bai-text-secondary: #A7D9B8;
  --page-game-bai-border: #2E7A4E;
  --page-game-bai-glow: #57E38D;
  --page-game-bai-gold: #F2C14E;
  --page-game-bai-divider: #1E3A2A;
  --page-game-bai-deep-green: #0A4B2C;
  --page-game-bai-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-game-bai {
  font-family: 'Arial', sans-serif;
  color: var(--page-game-bai-text-main); /* Default text color for the page */
  background-color: var(--page-game-bai-bg); /* Dark background */
  line-height: 1.6;
  font-size: 17px;
}

.page-game-bai__section {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

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

.page-game-bai__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--page-game-bai-text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.page-game-bai__section-title--light {
  color: var(--page-game-bai-text-main);
}

.page-game-bai__section-description {
  font-size: 18px;
  color: var(--page-game-bai-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.page-game-bai__sub-title {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--page-game-bai-text-main);
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-bai__highlight {
  color: var(--page-game-bai-gold);
  font-weight: 700;
}

/* Buttons */
.page-game-bai__btn-primary,
.page-game-bai__btn-secondary,
.page-game-bai__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
  word-wrap: normal;
  box-sizing: border-box;
}

.page-game-bai__btn-primary {
  background: var(--page-game-bai-button-gradient);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-game-bai__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
}

.page-game-bai__btn-secondary {
  background: transparent;
  color: var(--page-game-bai-primary);
  border: 2px solid var(--page-game-bai-primary);
}

.page-game-bai__btn-secondary:hover {
  background: var(--page-game-bai-primary);
  color: #ffffff;
}

.page-game-bai__btn-link {
  background: none;
  color: var(--page-game-bai-gold);
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
}

.page-game-bai__btn-link:hover {
  color: var(--page-game-bai-text-main);
}

.page-game-bai__btn-link--more {
  display: block;
  text-align: center;
  margin-top: 30px;
}

.page-game-bai__text-link {
  color: var(--page-game-bai-gold);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-game-bai__text-link:hover {
  color: var(--page-game-bai-text-main);
}

/* CTA Buttons Container */
.page-game-bai__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.page-game-bai__cta-buttons--center {
  margin-top: 50px;
}

/* Hero Section */
.page-game-bai__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden; /* Prevent image overflow */
}

.page-game-bai__hero-image {
  width: 100%;
  max-height: 700px; /* Limit height for desktop */
  overflow: hidden;
  position: relative;
  z-index: -1;
}

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

.page-game-bai__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 15px;
  box-sizing: border-box;
  margin-top: -150px; /* Overlap with image slightly for visual effect */
  background: rgba(8, 22, 15, 0.8); /* Semi-transparent background for text readability */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.page-game-bai__main-title {
  font-size: clamp(36px, 5vw, 54px);
  color: var(--page-game-bai-gold);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.page-game-bai__hero-description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--page-game-bai-text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Intro Section */
.page-game-bai__intro-section .page-game-bai__article-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--page-game-bai-text-secondary);
}
.page-game-bai__intro-section p {
  margin-bottom: 1em;
}

/* Game Types Section */
.page-game-bai__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-bai__game-card {
  background-color: var(--page-game-bai-card-bg);
  border: 1px solid var(--page-game-bai-border);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-bai__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-game-bai__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-game-bai__card-title {
  font-size: 24px;
  color: var(--page-game-bai-text-main);
  margin-bottom: 10px;
  font-weight: 700;
  padding: 0 15px;
}

.page-game-bai__card-text {
  font-size: 16px;
  color: var(--page-game-bai-text-secondary);
  margin-bottom: 20px;
  padding: 0 15px;
}

/* Advantages Section */
.page-game-bai__advantages-section {
  background-color: var(--page-game-bai-deep-green);
  padding: 80px 0;
}

.page-game-bai__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-bai__advantage-item {
  background-color: var(--page-game-bai-card-bg);
  border: 1px solid var(--page-game-bai-border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-bai__advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-game-bai__advantage-title {
  font-size: 24px;
  color: var(--page-game-bai-gold);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-game-bai__advantage-text {
  font-size: 16px;
  color: var(--page-game-bai-text-secondary);
}

/* Guide Section */
.page-game-bai__guide-steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.page-game-bai__step-item {
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  text-align: center;
  background-color: var(--page-game-bai-card-bg);
  border: 1px solid var(--page-game-bai-border);
  border-radius: 12px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-bai__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-game-bai__step-icon {
  width: 60px;
  height: 60px;
  background: var(--page-game-bai-button-gradient);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 25px;
  box-shadow: 0 3px 10px rgba(17, 168, 78, 0.4);
}

.page-game-bai__step-title {
  font-size: 22px;
  color: var(--page-game-bai-text-main);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-game-bai__step-text {
  font-size: 16px;
  color: var(--page-game-bai-text-secondary);
}

/* Promotions Section */
.page-game-bai__promotions-section .page-game-bai__article-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--page-game-bai-text-secondary);
}
.page-game-bai__promo-list {
  list-style: disc;
  padding-left: 25px;
  margin: 20px auto 30px;
  max-width: 800px;
  color: var(--page-game-bai-text-secondary);
}
.page-game-bai__promo-list li {
  margin-bottom: 8px;
  font-size: 17px;
}
.page-game-bai__promo-banner {
  margin-top: 40px;
  text-align: center;
}
.page-game-bai__banner-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
}

/* Tips Section */
.page-game-bai__tips-section .page-game-bai__article-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--page-game-bai-text-secondary);
}
.page-game-bai__tips-section p {
  margin-bottom: 1em;
}

/* Support Section */
.page-game-bai__support-section {
  background-color: var(--page-game-bai-deep-green);
  padding: 80px 0;
}

.page-game-bai__support-section .page-game-bai__article-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--page-game-bai-text-secondary);
  text-align: center;
}
.page-game-bai__support-section p {
  margin-bottom: 1em;
}
.page-game-bai__support-channels {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 600px;
  text-align: center;
}
.page-game-bai__support-channels li {
  font-size: 18px;
  color: var(--page-game-bai-text-main);
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}