.page-game-bai {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: var(--deep-navy); /* Body background from shared.css */
}

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

.page-game-bai__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-bai__section-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F3F8FF; /* Text Main */
  line-height: 1.2;
}

.page-game-bai__section-description {
  font-size: 18px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-bai__sub-title {
  font-size: 28px;
  font-weight: 600;
  color: #F3F8FF;
  margin-bottom: 25px;
}

/* Hero Section */
.page-game-bai__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding as per instructions, body handles main offset */
  padding-bottom: 60px;
}

.page-game-bai__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 675px; /* Based on 1200x675 width/height in HTML, adjusted for common aspect ratios */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

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

.page-game-bai__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.page-game-bai__hero-title {
  font-size: clamp(36px, 4.5vw, 60px); /* Using clamp for responsive font size */
  font-weight: 900;
  color: #F3F8FF;
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-game-bai__hero-description {
  font-size: 20px;
  color: #AFC4E8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-bai__hero-cta-buttons,
.page-game-bai__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

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

.page-game-bai__btn-primary,
.page-game-bai__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap; /* Prevent text wrapping by default */
  box-sizing: border-box;
  max-width: 100%;
}

.page-game-bai__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(17, 59, 122, 0.4);
}

.page-game-bai__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 59, 122, 0.6);
}

.page-game-bai__btn-secondary {
  background: transparent;
  color: #4FA8FF; /* Glow color for border */
  border: 2px solid #4FA8FF;
  box-shadow: 0 0 10px rgba(79, 168, 255, 0.3);
}

.page-game-bai__btn-secondary:hover {
  background: rgba(79, 168, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(79, 168, 255, 0.5);
}

/* Introduction Section */
.page-game-bai__introduction-section {
  background-color: #08162B; /* Deep Navy from custom colors, matching body */
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-game-bai__text-block {
  font-size: 17px;
  margin-bottom: 25px;
  color: #AFC4E8;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Card Games Grid */
.page-game-bai__popular-card-games {
  background-color: #10233F; /* Card BG */
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-game-bai__card {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.page-game-bai__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-game-bai__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-game-bai__card-title {
  font-size: 22px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-game-bai__card-text {
  font-size: 15px;
  color: #AFC4E8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-bai__card-button {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  background: #1D5FD1; /* Auxiliary color */
  color: #ffffff;
  border: none;
}

.page-game-bai__card-button:hover {
  background: #2B73F6;
}

/* Fishing Game Section */
.page-game-bai__fishing-game-section {
  background-color: #08162B;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-game-bai__content-two-columns {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  text-align: left;
}

.page-game-bai__text-column {
  flex: 1;
}

.page-game-bai__image-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-game-bai__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-game-bai__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}