.page-index-review-bk8 {
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-index-review-bk8__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Desktop: Adjust based on fixed header height */
  background: linear-gradient(135deg, #1E3A8A, #F59E0B); /* Brand colors for hero background */
  color: #ffffff;
}

.page-index-review-bk8__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-review-bk8__hero-image-main {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
}

.page-index-review-bk8__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-index-review-bk8__main-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-index-review-bk8__subtitle {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-index-review-bk8__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color); /* F59E0B */
  color: #1E3A8A; /* Dark text for light button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-review-bk8__cta-button:hover {
  background: #e08e00; /* Slightly darker secondary color */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-review-bk8__cta-button--center {
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 40px;
}

.page-index-review-bk8__cta-button--small {
  padding: 10px 25px;
  font-size: 16px;
  margin-top: 20px;
}

.page-index-review-bk8__section {
  padding: 40px 20px;
  background-color: #0a0a0a; /* Dark background from body */
}

.page-index-review-bk8__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-review-bk8__card {
  background: #1A1A1A; /* Darker card background for contrast on body bg */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 40px;
  color: #ffffff; /* Light text for dark card background */
  margin-bottom: 30px;
}

.page-index-review-bk8__light-bg {
  background: #ffffff; /* White background for better readability in specific sections */
  color: #333333; /* Dark text for light background */
}

.page-index-review-bk8__section-title {
  font-size: 32px;
  font-weight: bold;
  color: #F59E0B; /* Accent color for titles */
  margin-bottom: 30px;
  text-align: center;
}

.page-index-review-bk8__card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #f0f0f0; /* Slightly lighter text for dark cards */
}

.page-index-review-bk8__light-bg p {
  color: #333333;
}

.page-index-review-bk8__image-content {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  object-fit: cover;
}

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

.page-index-review-bk8__game-item {
  background: #2A2A2A; /* Even darker card for items */
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-review-bk8__game-item:hover {
  transform: translateY(-5px);
}

.page-index-review-bk8__game-icon-large {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

.page-index-review-bk8__game-title {
  font-size: 20px;
  font-weight: bold;
  color: #F59E0B;
  margin-bottom: 10px;
}

.page-index-review-bk8__game-item p {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.6;
}

.page-index-review-bk8__advantage-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-index-review-bk8__advantage-item {
  background: #2A2A2A;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-review-bk8__advantage-item:hover {
  transform: translateY(-5px);
}

.page-index-review-bk8__feature-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

.page-index-review-bk8__advantage-item h3 {
  font-size: 20px;
  font-weight: bold;
  color: #F59E0B;
  margin-bottom: 10px;
}

.page-index-review-bk8__advantage-item p {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.6;
}

.page-index-review-bk8__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-index-review-bk8__step-item {
  background: #2A2A2A;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-review-bk8__step-item:hover {
  transform: translateY(-5px);
}

.page-index-review-bk8__step-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

.page-index-review-bk8__step-item h3 {
  font-size: 20px;
  font-weight: bold;
  color: #F59E0B;
  margin-bottom: 10px;
}

.page-index-review-bk8__step-item p {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.6;
  flex-grow: 1;
}

.page-index-review-bk8__call-to-action-text {
  text-align: center;
  font-size: 18px;
  margin-top: 40px;
  font-weight: bold;
  color: #F59E0B;
}

.page-index-review-bk8__faq-section {
  padding-bottom: 60px;
}

.page-index-review-bk8__faq-list {
  margin-top: 30px;
}

.page-index-review-bk8__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: #2A2A2A; /* Dark background for FAQ item */
}

.page-index-review-bk8__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: #cccccc; /* Light text for dark answer background */
}

.page-index-review-bk8__faq-item.active .page-index-review-bk8__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #1A1A1A; /* Slightly lighter dark background for active answer */
  border-radius: 0 0 5px 5px;
}

.page-index-review-bk8__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #1E3A8A; /* Brand primary color for question background */
  border: 1px solid #1A1A1A;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff; /* Light text for dark question background */
}

.page-index-review-bk8__faq-question:hover {
  background: #152d6b; /* Slightly darker primary color */
  border-color: #152d6b;
}

.page-index-review-bk8__faq-question:active {
  background: #0f204c;
}

.page-index-review-bk8__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
}

.page-index-review-bk8__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #F59E0B; /* Accent color for toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-index-review-bk8__faq-item.active .page-index-review-bk8__faq-toggle {
  color: #ffffff;
}

.page-index-review-bk8 .highlight {
  color: #F59E0B;
  font-weight: bold;
}

/* All images base responsive styles */
.page-index-review-bk8 img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive design */
@media (max-width: 1024px) {
  .page-index-review-bk8__main-title {
    font-size: 36px;
  }
  .page-index-review-bk8__subtitle {
    font-size: 18px;
  }
  .page-index-review-bk8__section-title {
    font-size: 28px;
  }
  .page-index-review-bk8__card {
    padding: 30px;
  }
  .page-index-review-bk8__game-grid, .page-index-review-bk8__advantage-list, .page-index-review-bk8__guide-steps {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-index-review-bk8__hero-section {
    padding-top: 140px !important; /* Mobile: Adjust based on fixed header height */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-review-bk8__main-title {
    font-size: 28px;
  }
  .page-index-review-bk8__subtitle {
    font-size: 16px;
  }
  .page-index-review-bk8__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 20px;
  }
  .page-index-review-bk8__section {
    padding: 20px 15px;
  }
  .page-index-review-bk8__container {
    padding-left: 0;
    padding-right: 0;
  }
  .page-index-review-bk8__card {
    padding: 20px;
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-index-review-bk8__light-bg.page-index-review-bk8__card {
    margin-left: 0;
    margin-right: 0;
  }
  .page-index-review-bk8__section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .page-index-review-bk8__card p {
    font-size: 15px;
  }
  .page-index-review-bk8__game-grid, .page-index-review-bk8__advantage-list, .page-index-review-bk8__guide-steps {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .page-index-review-bk8__game-item, .page-index-review-bk8__advantage-item, .page-index-review-bk8__step-item {
    padding: 20px;
  }
  .page-index-review-bk8__game-icon-large, .page-index-review-bk8__feature-icon, .page-index-review-bk8__step-icon {
    max-width: 120px;
    margin-bottom: 15px;
  }
  .page-index-review-bk8__game-title, .page-index-review-bk8__advantage-item h3, .page-index-review-bk8__step-item h3 {
    font-size: 18px;
  }
  .page-index-review-bk8__call-to-action-text {
    font-size: 16px;
    margin-top: 30px;
  }
  .page-index-review-bk8__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-index-review-bk8__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-index-review-bk8__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-index-review-bk8__faq-answer {
    padding: 0 15px;
  }
  .page-index-review-bk8__faq-item.active .page-index-review-bk8__faq-answer {
    padding: 15px !important;
  }
  .page-index-review-bk8 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-index-review-bk8__section,
  .page-index-review-bk8__card,
  .page-index-review-bk8__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0px;
    padding-right: 0px;
  }
}