.page-index-game-highlights {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #FFFFFF;
}

.page-index-game-highlights__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

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

.page-index-game-highlights__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-game-highlights__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;
  border: none;
  cursor: pointer;
}

.page-index-game-highlights__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-index-game-highlights__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-index-game-highlights__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-index-game-highlights__button--login:hover {
  background-color: #e0a538;
  transform: translateY(-2px);
}

.page-index-game-highlights__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-index-game-highlights__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-index-game-highlights__section {
  padding: 80px 20px;
  text-align: center;
}

.page-index-game-highlights__section--about {
  background-color: #FFFFFF;
  color: #333333;
}

.page-index-game-highlights__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #000000;
  font-weight: bold;
}

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

.page-index-game-highlights__container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-index-game-highlights__image-item {
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-index-game-highlights__image-item:hover {
  transform: translateY(-8px);
}

.page-index-game-highlights__image-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-index-game-highlights__image-caption {
  font-size: 1.4em;
  color: #000000;
  padding: 20px 15px;
  font-weight: 600;
}

.page-index-game-highlights__section--games {
  background-color: #f5f5f5;
  color: #333333;
}

.page-index-game-highlights__game-category {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
  text-align: left;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.page-index-game-highlights__game-category--reverse {
  flex-direction: row-reverse;
  text-align: right;
}

.page-index-game-highlights__game-category-content {
  flex: 1;
}

.page-index-game-highlights__game-category-image {
  flex: 1;
  min-width: 300px;
}

.page-index-game-highlights__game-category-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index-game-highlights__game-category-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-game-highlights__game-category-text {
  font-size: 1.05em;
  color: #555555;
  margin-bottom: 30px;
}

.page-index-game-highlights__section--promotions {
  background-color: #000000;
  color: #FFFFFF;
}

.page-index-game-highlights__section--promotions .page-index-game-highlights__section-title {
  color: #FCBC45;
}

.page-index-game-highlights__section--promotions .page-index-game-highlights__section-description {
  color: #e0e0e0;
}

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

.page-index-game-highlights__promo-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease;
}

.page-index-game-highlights__promo-card:hover {
  transform: translateY(-8px);
}

.page-index-game-highlights__promo-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-index-game-highlights__promo-title {
  font-size: 1.6em;
  color: #FCBC45;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-index-game-highlights__promo-text {
  font-size: 1em;
  color: #cccccc;
  padding: 0 20px;
  margin-bottom: 25px;
}

.page-index-game-highlights__section--mobile {
  background-color: #FFFFFF;
  color: #333333;
}

.page-index-game-highlights__mobile-actions {
  margin-top: 40px;
  margin-bottom: 50px;
}

.page-index-game-highlights__button--download {
  background-color: #000000;
  color: #FFFFFF;
}

.page-index-game-highlights__button--download:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-index-game-highlights__mobile-image {
  max-width: 800px;
  margin: 0 auto;
}

.page-index-game-highlights__mobile-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.page-index-game-highlights__section--cta {
  background-color: #FCBC45;
  color: #000000;
  padding: 100px 20px;
}

.page-index-game-highlights__section--cta .page-index-game-highlights__section-title {
  color: #000000;
  font-size: 3em;
}

.page-index-game-highlights__section--cta .page-index-game-highlights__section-description {
  color: #333333;
  font-size: 1.2em;
  margin-bottom: 60px;
}

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

.page-index-game-highlights__cta-actions .page-index-game-highlights__button--register {
  background-color: #000000;
  color: #FFFFFF;
}

.page-index-game-highlights__cta-actions .page-index-game-highlights__button--register:hover {
  background-color: #333333;
}

.page-index-game-highlights__cta-actions .page-index-game-highlights__button--login {
  background-color: #FFFFFF;
  color: #000000;
}

.page-index-game-highlights__cta-actions .page-index-game-highlights__button--login:hover {
  background-color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-game-highlights__hero-title {
    font-size: 3em;
  }
  .page-index-game-highlights__game-category {
    flex-direction: column;
    text-align: center;
  }
  .page-index-game-highlights__game-category--reverse {
    flex-direction: column;
    text-align: center;
  }
  .page-index-game-highlights__game-category-content,
  .page-index-game-highlights__game-category-image {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-index-game-highlights__hero-title {
    font-size: 2.5em;
  }
  .page-index-game-highlights__hero-description {
    font-size: 1em;
  }
  .page-index-game-highlights__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-game-highlights__section {
    padding: 60px 15px;
  }
  .page-index-game-highlights__section-title {
    font-size: 2.2em;
  }
  .page-index-game-highlights__section-description {
    font-size: 0.95em;
  }
  .page-index-game-highlights__image-grid,
  .page-index-game-highlights__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-index-game-highlights__game-category {
    padding: 30px 20px;
  }
  .page-index-game-highlights__game-category-title {
    font-size: 1.8em;
  }
  .page-index-game-highlights__promo-title {
    font-size: 1.4em;
  }
  .page-index-game-highlights__section--cta .page-index-game-highlights__section-title {
    font-size: 2.5em;
  }
  /* Ensure images do not overflow on mobile */
  .page-index-game-highlights img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-index-game-highlights__hero-title {
    font-size: 2em;
  }
  .page-index-game-highlights__hero-actions {
    flex-direction: column;
  }
  .page-index-game-highlights__section-title {
    font-size: 1.8em;
  }
  .page-index-game-highlights__game-category-title {
    font-size: 1.5em;
  }
  .page-index-game-highlights__section--cta .page-index-game-highlights__section-title {
    font-size: 2em;
  }
  .page-index-game-highlights__cta-actions {
    flex-direction: column;
  }
}