.page-game-bi {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-game-bi__hero-section {
  background: linear-gradient(135deg, #FF4500, #1E90FF);
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 40px;
}

.page-game-bi__hero-content {
  max-width: 600px;
}

.page-game-bi__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-bi__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #eee;
}

.page-game-bi__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-game-bi__hero-image-wrapper {
  flex-shrink: 0;
}

.page-game-bi__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-game-bi__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
  white-space: nowrap;
}

.page-game-bi__btn--primary {
  background-color: #FF4500;
  color: #fff;
  box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.page-game-bi__btn--primary:hover {
  background-color: #e63e00;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 69, 0, 0.6);
}

.page-game-bi__btn--secondary {
  background-color: #1E90FF;
  color: #fff;
  box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
}

.page-game-bi__btn--secondary:hover {
  background-color: #1a7ad9;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.6);
}

.page-game-bi__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 20px;
}

.page-game-bi__btn--large {
  padding: 18px 35px;
  font-size: 1.1em;
  border-radius: 35px;
}

.page-game-bi__section-title {
  font-size: 2.5em;
  color: #FF4500;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-game-bi__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #1E90FF;
  border-radius: 2px;
}

.page-game-bi__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-game-bi__about-section, .page-game-bi__games-section, .page-game-bi__download-section, .page-game-bi__strategy-section, .page-game-bi__faq-section {
  padding: 80px 0;
}

.page-game-bi__about-section {
  background-color: #fff;
}

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

.page-game-bi__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #f0f8ff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-game-bi__feature-item:hover {
  transform: translateY(-10px);
}

.page-game-bi__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: none; /* Ensure no color filters */
}

.page-game-bi__feature-title {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-game-bi__feature-text {
  color: #666;
}

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

.page-game-bi__game-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-bi__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: none; /* Ensure no color filters */
}

.page-game-bi__game-title {
  font-size: 1.4em;
  color: #FF4500;
  margin: 20px 0 10px;
}

.page-game-bi__game-text {
  color: #777;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-game-bi__game-card .page-game-bi__btn {
  margin-bottom: 20px;
}

.page-game-bi__download-section {
  background: linear-gradient(135deg, #1E90FF, #00BFFF);
  color: #fff;
  padding: 80px 0;
}

.page-game-bi__download-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-game-bi__download-text {
  flex: 1;
  min-width: 300px;
}

.page-game-bi__download-text .page-game-bi__section-title {
  color: #fff;
  text-align: left;
}

.page-game-bi__download-text .page-game-bi__section-title::after {
  background-color: #FF4500;
  left: 0;
  transform: translateX(0);
}

.page-game-bi__download-text .page-game-bi__section-description {
  color: #eee;
  text-align: left;
  margin-left: 0;
}

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

.page-game-bi__download-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #fff;
}

.page-game-bi__benefit-icon {
  width: 25px;
  height: 25px;
  margin-right: 15px;
  filter: none; /* Ensure no color filters */
}

.page-game-bi__download-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-game-bi__download-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-game-bi__download-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  filter: none; /* Ensure no color filters */
}

.page-game-bi__strategy-section {
  background-color: #fdfdfd;
}

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

.page-game-bi__strategy-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-game-bi__strategy-title {
  font-size: 1.4em;
  color: #FF4500;
  margin-bottom: 15px;
}

.page-game-bi__strategy-text {
  color: #666;
}

.page-game-bi__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-game-bi__faq-section {
  background-color: #e6f2ff;
}

.page-game-bi__faq-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-game-bi__faq-question {
  font-size: 1.3em;
  color: #1E90FF;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-bi__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FF4500;
  transition: transform 0.3s ease;
}

.page-game-bi__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-game-bi__faq-answer {
  font-size: 1em;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding-top: 0;
}

.page-game-bi__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-bi__hero-title {
    font-size: 2.8em;
  }
  .page-game-bi__hero-description {
    font-size: 1.1em;
  }
  .page-game-bi__hero-section {
    flex-direction: column-reverse;
  }
  .page-game-bi__download-content {
    flex-direction: column;
    text-align: center;
  }
  .page-game-bi__download-text .page-game-bi__section-title,
  .page-game-bi__download-text .page-game-bi__section-description {
    text-align: center;
  }
  .page-game-bi__download-text .page-game-bi__section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .page-game-bi__download-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-game-bi__hero-title {
    font-size: 2.2em;
  }
  .page-game-bi__hero-description {
    font-size: 1em;
  }
  .page-game-bi__section-title {
    font-size: 2em;
  }
  .page-game-bi__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-bi__btn--large {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-game-bi__hero-section {
    padding: 60px 0;
  }
  .page-game-bi__hero-title {
    font-size: 1.8em;
  }
  .page-game-bi__hero-description {
    font-size: 0.9em;
  }
  .page-game-bi__btn {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-game-bi__section-title {
    font-size: 1.8em;
  }
  .page-game-bi__section-description {
    font-size: 0.9em;
  }
  .page-game-bi__download-buttons {
    flex-direction: column;
  }
}