.page-index-game-highlights {
  color: #ffffff; /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-index-game-highlights__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #8B0000 0%, rgba(139, 0, 0, 0.7) 50%, #1a1a1a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-index-game-highlights__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-index-game-highlights__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-index-game-highlights__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-index-game-highlights__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.page-index-game-highlights__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-game-highlights__hero-button--primary {
  background-color: #FFD700;
  color: #8B0000;
}

.page-index-game-highlights__hero-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-game-highlights__hero-button--secondary {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-game-highlights__hero-button--secondary:hover {
  background-color: #a00000;
  transform: translateY(-2px);
}

.page-index-game-highlights__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
}

.page-index-game-highlights__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-game-highlights__game-categories,
.page-index-game-highlights__why-us-section,
.page-index-game-highlights__cta-section,
.page-index-game-highlights__faq-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.page-index-game-highlights__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-index-game-highlights__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

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

.page-index-game-highlights__category-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-game-highlights__category-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-game-highlights__category-image {
  width: 100%;
  height: auto;
  min-height: 200px; /* Enforce minimum size */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.page-index-game-highlights__category-text {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-index-game-highlights__category-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #8B0000;
  color: #FFD700;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-game-highlights__category-button:hover {
  background-color: #a00000;
  transform: translateY(-2px);
}

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

.page-index-game-highlights__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-index-game-highlights__feature-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-index-game-highlights__feature-icon {
  width: 250px; /* Ensure minimum width */
  height: auto;
  min-height: 200px; /* Enforce minimum size */
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-index-game-highlights__feature-text {
  color: #cccccc;
  font-size: 0.95em;
}

.page-index-game-highlights__cta-bottom {
  margin-top: 50px;
}

.page-index-game-highlights__cta-section {
  background: linear-gradient(90deg, #FFD700 0%, #8B0000 100%);
  padding: 80px 20px;
  border-radius: 15px;
  margin: 80px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  color: #1a1a1a; /* Dark text for light background */
}

.page-index-game-highlights__cta-title {
  font-size: 3em;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.page-index-game-highlights__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #333333;
}

.page-index-game-highlights__cta-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-game-highlights__cta-button--primary {
  background-color: #1a1a1a;
  color: #FFD700;
}

.page-index-game-highlights__cta-button--primary:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

.page-index-game-highlights__cta-button--secondary {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-game-highlights__cta-button--secondary:hover {
  background-color: #a00000;
  transform: translateY(-3px);
}

.page-index-game-highlights__faq-container {
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-game-highlights__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index-game-highlights__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-index-game-highlights__faq-answer {
  font-size: 1em;
  color: #cccccc;
  padding-left: 10px;
}

@media (max-width: 1024px) {
  .page-index-game-highlights__hero-title {
    font-size: 2.8em;
  }
  .page-index-game-highlights__hero-description {
    font-size: 1.1em;
  }
  .page-index-game-highlights__section-title {
    font-size: 2.2em;
  }
  .page-index-game-highlights__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-index-game-highlights__hero-section {
    flex-direction: column;
    padding: 40px 15px;
  }
  .page-index-game-highlights__hero-title {
    font-size: 2.2em;
  }
  .page-index-game-highlights__hero-description {
    font-size: 1em;
  }
  .page-index-game-highlights__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-game-highlights__hero-button {
    width: 100%;
    max-width: 250px;
  }
  .page-index-game-highlights__hero-image-wrapper {
    margin-top: 30px;
  }
  .page-index-game-highlights__game-categories,
  .page-index-game-highlights__why-us-section,
  .page-index-game-highlights__cta-section,
  .page-index-game-highlights__faq-section {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-index-game-highlights__section-title {
    font-size: 1.8em;
  }
  .page-index-game-highlights__section-description {
    font-size: 0.95em;
  }
  .page-index-game-highlights__category-grid {
    grid-template-columns: 1fr;
  }
  .page-index-game-highlights__features-grid {
    grid-template-columns: 1fr;
  }
  .page-index-game-highlights__feature-icon,
  .page-index-game-highlights__category-image {
    max-width: 100%;
    height: auto;
  }
  .page-index-game-highlights__cta-section {
    padding: 50px 15px;
  }
  .page-index-game-highlights__cta-title {
    font-size: 1.8em;
  }
  .page-index-game-highlights__cta-description {
    font-size: 1em;
  }
  .page-index-game-highlights__cta-button {
    width: 100%;
    max-width: 200px;
    margin: 10px 0;
  }
  .page-index-game-highlights__faq-question {
    font-size: 1.1em;
  }
  .page-index-game-highlights__faq-answer {
    font-size: 0.9em;
  }
}