.page-index-featured-game-reviews {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0F1D38; /* Slightly lighter dark blue for overall background */
}

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

.page-index-featured-game-reviews__hero {
  background: linear-gradient(135deg, #1A2B5B 0%, #0F1D38 100%); /* Dark blue gradient */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 500px;
}

.page-index-featured-game-reviews__hero-content {
  flex: 1;
  max-width: 600px;
}

.page-index-featured-game-reviews__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-featured-game-reviews__hero-title .highlight {
  color: #FFD700;
}

.page-index-featured-game-reviews__hero-subtitle {
  font-size: 1.3em;
  color: #B0B0B0; /* Lighter gray for subtitle */
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-index-featured-game-reviews__hero-actions {
  display: flex;
  gap: 20px;
}

.page-index-featured-game-reviews__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
}

.page-index-featured-game-reviews__btn.primary-btn {
  background-color: #FFD700; /* Gold for primary action */
  color: #1A2B5B; /* Dark blue for text on gold */
  border: 2px solid #FFD700;
}

.page-index-featured-game-reviews__btn.primary-btn:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-featured-game-reviews__btn.secondary-btn {
  background-color: transparent;
  color: #FFD700; /* Gold for secondary action text */
  border: 2px solid #FFD700;
}

.page-index-featured-game-reviews__btn.secondary-btn:hover {
  background-color: #FFD700;
  color: #1A2B5B;
  transform: translateY(-2px);
}

.page-index-featured-game-reviews__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

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

.page-index-featured-game-reviews__intro-text {
  padding: 60px 0;
  background-color: #1A2B5B; /* Primary dark blue for intro section */
  color: #F0F0F0;
}

.page-index-featured-game-reviews__intro-text p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-index-featured-game-reviews__intro-text .text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-featured-game-reviews__intro-text .text-link:hover {
  text-decoration: underline;
}

.page-index-featured-game-reviews__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-index-featured-game-reviews__section-title .highlight {
  color: #FFD700;
}

.page-index-featured-game-reviews__section-subtitle {
  font-size: 1.2em;
  color: #B0B0B0;
  text-align: center;
  margin-bottom: 50px;
}

.page-index-featured-game-reviews__game-categories {
  padding: 80px 0;
  background-color: #0F1D38;
}

.page-index-featured-game-reviews__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-featured-game-reviews__category-card {
  background-color: #1A2B5B; /* Primary dark blue for cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-featured-game-reviews__category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-index-featured-game-reviews__category-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.page-index-featured-game-reviews__category-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-featured-game-reviews__category-description {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-index-featured-game-reviews__btn.small-btn {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 6px;
  background-color: #FFD700;
  color: #1A2B5B;
  border: none;
}

.page-index-featured-game-reviews__btn.small-btn:hover {
  background-color: #e6c200;
  transform: translateY(-1px);
}

.page-index-featured-game-reviews__review-process {
  padding: 80px 0;
  background-color: #1A2B5B;
}

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

.page-index-featured-game-reviews__process-step {
  background-color: #0F1D38;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-index-featured-game-reviews__process-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
}

.page-index-featured-game-reviews__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-featured-game-reviews__process-step p {
  font-size: 0.95em;
  color: #B0B0B0;
  line-height: 1.6;
}

.page-index-featured-game-reviews__why-ok99 {
  padding: 80px 0;
  background-color: #0F1D38;
}

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

.page-index-featured-game-reviews__feature-item {
  background-color: #1A2B5B;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-index-featured-game-reviews__feature-icon {
  width: 75px;
  height: 75px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.page-index-featured-game-reviews__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-featured-game-reviews__feature-item p {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.6;
}

.page-index-featured-game-reviews__cta {
  padding: 80px 0;
  background: linear-gradient(90deg, #1A2B5B, #0F1D38);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-featured-game-reviews__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.page-index-featured-game-reviews__cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-index-featured-game-reviews__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-featured-game-reviews__cta-description {
  font-size: 1.3em;
  color: #B0B0B0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-index-featured-game-reviews__cta-description .highlight {
  color: #FFD700;
}

.page-index-featured-game-reviews__btn.large-btn {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
  background-color: #FFD700;
  color: #1A2B5B;
  border: none;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-index-featured-game-reviews__btn.large-btn:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-index-featured-game-reviews__faq {
  padding: 80px 0;
  background-color: #0F1D38;
}

.page-index-featured-game-reviews__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-index-featured-game-reviews__faq-item {
  background-color: #1A2B5B;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-index-featured-game-reviews__faq-question {
  display: block;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-index-featured-game-reviews__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-index-featured-game-reviews__faq-item[open] .page-index-featured-game-reviews__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-featured-game-reviews__faq-question:hover {
  background-color: #2b3a63;
}

.page-index-featured-game-reviews__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.7;
  border-top: 1px solid #2b3a63;
}

.page-index-featured-game-reviews__faq-answer .text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-featured-game-reviews__faq-answer .text-link:hover {
  text-decoration: underline;
}

.page-index-featured-game-reviews__more-info {
  padding: 80px 0;
  background-color: #1A2B5B;
}

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

.page-index-featured-game-reviews__info-card {
  background-color: #0F1D38;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  text-decoration: none;
  color: #E0E0E0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-featured-game-reviews__info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-index-featured-game-reviews__info-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
}

.page-index-featured-game-reviews__info-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-featured-game-reviews__info-card p {
  font-size: 0.95em;
  color: #B0B0B0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-featured-game-reviews__hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
  }

  .page-index-featured-game-reviews__hero-content {
    max-width: 100%;
  }

  .page-index-featured-game-reviews__hero-title {
    font-size: 2.8em;
  }

  .page-index-featured-game-reviews__hero-subtitle {
    font-size: 1.1em;
  }

  .page-index-featured-game-reviews__hero-image-wrapper {
    margin-top: 40px;
    justify-content: center;
  }

  .page-index-featured-game-reviews__section-title {
    font-size: 2.2em;
  }

  .page-index-featured-game-reviews__section-subtitle {
    font-size: 1.1em;
  }

  .page-index-featured-game-reviews__cta-title {
    font-size: 2.5em;
  }

  .page-index-featured-game-reviews__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-index-featured-game-reviews__hero {
    padding: 60px 15px;
  }

  .page-index-featured-game-reviews__hero-title {
    font-size: 2.2em;
  }

  .page-index-featured-game-reviews__hero-subtitle {
    font-size: 1em;
  }

  .page-index-featured-game-reviews__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-featured-game-reviews__btn {
    width: 100%;
  }

  .page-index-featured-game-reviews__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }

  .page-index-featured-game-reviews__section-subtitle {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-index-featured-game-reviews__category-grid,
  .page-index-featured-game-reviews__process-grid,
  .page-index-featured-game-reviews__feature-grid,
  .page-index-featured-game-reviews__info-grid {
    grid-template-columns: 1fr;
  }

  .page-index-featured-game-reviews__cta-title {
    font-size: 2em;
  }

  .page-index-featured-game-reviews__cta-description {
    font-size: 1em;
  }

  .page-index-featured-game-reviews__btn.large-btn {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-index-featured-game-reviews__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-index-featured-game-reviews__faq-question::after {
    right: 20px;
  }

  .page-index-featured-game-reviews__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-index-featured-game-reviews__hero-title {
    font-size: 1.8em;
  }

  .page-index-featured-game-reviews__hero-subtitle {
    font-size: 0.9em;
  }

  .page-index-featured-game-reviews__section-title {
    font-size: 1.6em;
  }

  .page-index-featured-game-reviews__cta-title {
    font-size: 1.8em;
  }
}