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

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

.page-index-game-highlights__hero-section {
  background-color: #000000; /* Dark background for hero section */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-index-game-highlights__hero-content {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.page-index-game-highlights__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-index-game-highlights__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

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

.page-index-game-highlights__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-index-game-highlights__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Main color for text */
  border: 2px solid #FCBC45;
}

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

.page-index-game-highlights__button--secondary {
  background-color: transparent;
  color: #FFFFFF; /* White text */
  border: 2px solid #FFFFFF;
}

.page-index-game-highlights__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-index-game-highlights__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #000000; /* Main color */
  padding-top: 60px;
}

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

.page-index-game-highlights__game-categories {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.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: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-game-highlights__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-game-highlights__card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #000000; /* Main color */
}

.page-index-game-highlights__card-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-game-highlights__card-title a:hover {
  color: #FCBC45;
}

.page-index-game-highlights__card-text {
  padding: 0 20px;
  margin-bottom: 25px;
  color: #666666;
}

.page-index-game-highlights__card-button {
  display: inline-block;
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* White text */
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-game-highlights__card-button:hover {
  background-color: #FCBC45; /* Login color */
}

.page-index-game-highlights__exclusive-features {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-index-game-highlights__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-index-game-highlights__feature-icon {
  width: 250px; /* Ensure minimum size */
  height: 150px; /* Ensure minimum size */
  object-fit: contain;
  margin-bottom: 25px;
}

.page-index-game-highlights__feature-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #000000; /* Main color */
}

.page-index-game-highlights__feature-text {
  color: #666666;
}

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

.page-index-game-highlights__responsible-gaming {
  padding: 60px 0;
  background-color: #f2f2f2;
  text-align: center;
}

.page-index-game-highlights__link {
  color: #000000; /* Main color */
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-game-highlights__link:hover {
  color: #FCBC45; /* Login color */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index-game-highlights__hero-title {
    font-size: 2.8em;
  }

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

  .page-index-game-highlights__card-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-index-game-highlights__hero-section {
    padding: 60px 0;
  }

  .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__button {
    width: 80%;
    margin: 0 auto;
  }

  .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,
  .page-index-game-highlights__features-grid {
    grid-template-columns: 1fr;
  }

  .page-index-game-highlights__card-image,
  .page-index-game-highlights__feature-icon {
    max-width: 100%; /* Ensure images don't overflow */
    height: auto; /* Maintain aspect ratio */
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
  }

  .page-index-game-highlights__feature-icon {
    width: 100%; /* Adjust width for mobile */
    height: 200px; /* Maintain minimum height for mobile */
    object-fit: cover;
  }

  .page-index-game-highlights__card-image {
    height: 200px;
  }
}

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

  .page-index-game-highlights__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-game-highlights__section-title {
    font-size: 1.5em;
  }

  .page-index-game-highlights__section-description {
    margin-bottom: 30px;
  }
}