/* style/resources-latest-updates-68-game-bai.css */
.page-resources-latest-updates-68-game-bai {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #000000 (dark), so use light text */
  background-color: #000000; /* Ensure the main container has the dark background */
}

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

/* Hero Section */
.page-resources-latest-updates-68-game-bai__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  background: linear-gradient(135deg, #26A9E0, #1a7bbd); /* Brand color gradient */
  min-height: 600px;
  overflow: hidden;
}

.page-resources-latest-updates-68-game-bai__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-resources-latest-updates-68-game-bai__hero-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-latest-updates-68-game-bai__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-latest-updates-68-game-bai__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-latest-updates-68-game-bai__btn-primary,
.page-resources-latest-updates-68-game-bai__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-latest-updates-68-game-bai__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-latest-updates-68-game-bai__btn-primary:hover {
  background-color: #d16b05;
  transform: translateY(-2px);
}

.page-resources-latest-updates-68-game-bai__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-latest-updates-68-game-bai__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-resources-latest-updates-68-game-bai__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

.page-resources-latest-updates-68-game-bai__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* General Section Styling */
.page-resources-latest-updates-68-game-bai__section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-latest-updates-68-game-bai__section:last-of-type {
  border-bottom: none;
}

.page-resources-latest-updates-68-game-bai__heading {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for headings */
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-latest-updates-68-game-bai__paragraph {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  text-align: justify;
}

/* Why Update Section */
.page-resources-latest-updates-68-game-bai__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-latest-updates-68-game-bai__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white background for cards */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-resources-latest-updates-68-game-bai__card:hover {
  transform: translateY(-5px);
}

.page-resources-latest-updates-68-game-bai__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-latest-updates-68-game-bai__card-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* Download Guide Section */
.page-resources-latest-updates-68-game-bai__download-steps {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-resources-latest-updates-68-game-bai__step-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  color: #ffffff;
}

.page-resources-latest-updates-68-game-bai__step-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-latest-updates-68-game-bai__step-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-resources-latest-updates-68-game-bai__platform-options {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-resources-latest-updates-68-game-bai__image-wrapper {
  margin: 40px auto;
  text-align: center;
}

.page-resources-latest-updates-68-game-bai__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.page-resources-latest-updates-68-game-bai__note {
  font-style: italic;
  font-size: 1em;
  color: #cccccc;
  text-align: center;
  margin-top: 30px;
}

/* Features Section */
.page-resources-latest-updates-68-game-bai__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-latest-updates-68-game-bai__feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-resources-latest-updates-68-game-bai__feature-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-resources-latest-updates-68-game-bai__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Video Section */
.page-resources-latest-updates-68-game-bai__video-section {
  text-align: center;
  position: relative;
}

.page-resources-latest-updates-68-game-bai__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 40px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-latest-updates-68-game-bai__video {
  width: 100%;
  height: auto;
  display: block;
}