.page-game-bai {
  font-family: 'Arial', sans-serif;
  color: #F3F8FF; /* Text Main */
  background-color: #08162B; /* Deep Navy from body */
}

.page-game-bai__hero-section {
  padding-top: 10px; /* Small top padding, relying on body padding-top */
  padding-bottom: 60px;
  background-color: #08162B; /* Deep Navy */
}

.page-game-bai__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
  gap: 40px;
}

.page-game-bai__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  text-align: left;
}

.page-game-bai__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-game-bai__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #AFC4E8; /* Text Secondary */
}

.page-game-bai__hero-image {
  flex: 1 1 40%;
  min-width: 300px;
  text-align: center;
}

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

.page-game-bai__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-game-bai__cta-buttons--center {
  justify-content: center;
}

.page-game-bai__btn-primary,
.page-game-bai__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-game-bai__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
  color: #F3F8FF; /* Text Main */
  border: none;
}

.page-game-bai__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-game-bai__btn-secondary {
  background: transparent;
  color: #4FA8FF; /* Glow */
  border: 2px solid #4FA8FF; /* Glow */
}

.page-game-bai__btn-secondary:hover {
  background: #4FA8FF;
  color: #08162B; /* Deep Navy */
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-game-bai__section {
  padding: 60px 0;
  background-color: #08162B; /* Deep Navy */
}

.page-game-bai__dark-section {
  background-color: #10233F; /* Card BG */
}

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

.page-game-bai__section-title {
  font-size: 2.5rem;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-game-bai__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #AFC4E8; /* Text Secondary */
}

.page-game-bai__text-block a {
  color: #4FA8FF; /* Glow */
  text-decoration: none;
}

.page-game-bai__text-block a:hover {
  text-decoration: underline;
}

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

.page-game-bai__game-card {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #244D84; /* Border */
}

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

.page-game-bai__icon-box-media {
  width: 180px;
  height: 180px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #F2C14E; /* Gold */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-game-bai__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.page-game-bai__game-card-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-bai__game-card-title a {
  color: #F2C14E; /* Gold */
  text-decoration: none;
}

.page-game-bai__game-card-title a:hover {
  text-decoration: underline;
}

.page-game-bai__game-card-description {
  font-size: 1rem;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.6;
}

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

.page-game-bai__advantage-item {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #244D84; /* Border */
}

.page-game-bai__advantage-image {
  width: 100%;
  max-width: 400px; /* Recommended size for content images */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-bai__advantage-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-bai__advantage-description {
  font-size: 1rem;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.6;
}

.page-game-bai__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-game-bai__guide-step-item {
  background-color: #08162B; /* Deep Navy */
  border: 1px solid #244D84; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-bai__step-number {
  width: 50px;
  height: 50px;
  background-color: #F2C14E; /* Gold */
  color: #08162B; /* Deep Navy */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: -55px auto 25px;
  border: 3px solid #4FA8FF; /* Glow */
}

.page-game-bai__guide-step-item:first-child .page-game-bai__step-number {
    margin-top: -55px;
}

.page-game-bai__step-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-game-bai__step-description {
  font-size: 1rem;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.6;
}

.page-game-bai__guide-image-wrapper {
  text-align: center;
  margin-top: 40px;
}

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

.page-game-bai__promo-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 800px;
}

.page-game-bai__promo-item {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #F3F8FF; /* Text Main */
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-game-bai__promo-item::before {
  content: '⚡';
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  flex-shrink: 0;
}

.page-game-bai__promo-item a {
  color: #4FA8FF; /* Glow */
  text-decoration: none;
}

.page-game-bai__promo-item a:hover {
  text-decoration: underline;
}

.page-game-bai__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-bai__faq-item {
  background-color: #08162B; /* Deep Navy */
  border: 1px solid #244D84; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-game-bai__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F3F8FF; /* Text Main */
  cursor: pointer;
  list-style: none; /* Remove default marker */
  background-color: #113B7A; /* Primary */
  border-radius: 8px;
}

.page-game-bai__faq-question::-webkit-details-marker {
  display: none;
}

.page-game-bai__faq-qtext {
  flex-grow: 1;
}

.page-game-bai__faq-toggle {
  font-size: 1.8rem;
  font-weight: 300;
  color: #F2C14E; /* Gold */
  margin-left: 15px;
}

.page-game-bai__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #AFC4E8; /* Text Secondary */
  background-color: #10233F; /* Card BG */
  border-top: 1px solid #244D84; /* Border */
}

.page-game-bai__faq-answer p {
    margin-top: 20px;
    margin-bottom: 0;
}

.page-game-bai__faq-answer a {
  color: #4FA8FF; /* Glow */
  text-decoration: none;
}

.page-game-bai__faq-answer a:hover {
  text-decoration: underline;
}

.page-game-bai__outro-section {
  text-align: center;
  padding-bottom: 80px;
}