.page-index-game-showcase {
  color: #ffffff; /* Light text for dark body background */
}

.page-index-game-showcase__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background-color: #000000; /* Main color */
  padding-bottom: 60px;
  text-align: center;
}

.page-index-game-showcase__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

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

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

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

.page-index-game-showcase__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  min-width: 180px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-index-game-showcase__button--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #000000; /* Dark text for light background */
  border: 2px solid #FFD700;
}

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

.page-index-game-showcase__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Auxiliary color */
  border: 2px solid #FFD700;
}

.page-index-game-showcase__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-index-game-showcase__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: unset;
}

.page-index-game-showcase__button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-index-game-showcase__hero-image-wrapper {
  width: 100%;
  max-width: 100%; /* Prevent overflow */
  overflow: hidden;
}

.page-index-game-showcase__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-index-game-showcase__featured-games-section,
.page-index-game-showcase__why-choose-section,
.page-index-game-showcase__cta-section,
.page-index-game-showcase__faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #0d0d0d; /* Slightly lighter dark background for sections */
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-index-game-showcase__section-subtitle {
  font-size: 1.2em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-game-showcase__game-card {
  background-color: rgba(255, 255, 255, 0.05); /* Very subtle white tint */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px; /* Space for button */
}

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

.page-index-game-showcase__game-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 15px;
}

.page-index-game-showcase__game-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-index-game-showcase__game-card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-index-game-showcase__game-card-title a:hover {
  text-decoration: underline;
}

.page-index-game-showcase__game-card-description {
  font-size: 0.95em;
  color: #b0b0b0;
  margin-bottom: 20px;
  padding: 0 15px;
  flex-grow: 1;
}

.page-index-game-showcase__why-choose-content {
  text-align: center;
}

.page-index-game-showcase__features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-index-game-showcase__feature-item {
  background-color: rgba(255, 215, 0, 0.05); /* Subtle gold background */
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

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

.page-index-game-showcase__feature-icon {
  width: 200px; /* Min size for icons */
  height: 200px; /* Min size for icons */
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow for icons */
}

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

.page-index-game-showcase__feature-description {
  font-size: 0.95em;
  color: #b0b0b0;
}

.page-index-game-showcase__read-more-text {
  font-size: 1.1em;
  color: #cccccc;
  margin-top: 40px;
  line-height: 1.7;
  text-align: left;
}

.page-index-game-showcase__cta-section {
  background: linear-gradient(135deg, #000000 0%, #333333 100%); /* Dark gradient */
  text-align: center;
  padding: 80px 20px;
  border-radius: 10px;
}

.page-index-game-showcase__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.page-index-game-showcase__cta-description {
  font-size: 1.4em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-game-showcase__faq-section {
  margin-bottom: 60px;
}

.page-index-game-showcase__faq-item {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

.page-index-game-showcase__faq-answer {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index-game-showcase__hero-title {
    font-size: 3em;
  }
  .page-index-game-showcase__section-title {
    font-size: 2.2em;
  }
  .page-index-game-showcase__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-index-game-showcase__hero-section {
    flex-direction: column;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    padding-bottom: 40px;
  }

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

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

  .page-index-game-showcase__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-game-showcase__button {
    width: 80%;
    max-width: 300px;
  }

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

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

  .page-index-game-showcase__game-grid,
  .page-index-game-showcase__features-list {
    grid-template-columns: 1fr;
  }

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

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

  .page-index-game-showcase__feature-icon {
    width: 200px; /* Still minimum 200px */
    height: 200px; /* Still minimum 200px */
  }

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

  .page-index-game-showcase__cta-description {
    font-size: 1.2em;
  }

  .page-index-game-showcase__button--large {
    font-size: 1.1em;
    padding: 18px 30px;
  }

  /* Ensure content images are responsive */
  .page-index-game-showcase__game-card-image,
  .page-index-game-showcase__feature-icon,
  .page-index-game-showcase__hero-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-index-game-showcase__hero-title {
    font-size: 2em;
  }
  .page-index-game-showcase__section-title {
    font-size: 1.6em;
  }
  .page-index-game-showcase__cta-title {
    font-size: 1.8em;
  }
  .page-index-game-showcase__button {
    width: 90%;
  }
  .page-index-game-showcase__featured-games-section,
  .page-index-game-showcase__why-choose-section,
  .page-index-game-showcase__cta-section,
  .page-index-game-showcase__faq-section {
    padding: 40px 15px;
  }
}

/* Ensure no image filters are applied */
.page-index-game-showcase img {
  filter: none; /* Explicitly ensure no filter is applied */
}

/* Content area image size enforcement */
.page-index-game-showcase__game-card-image,
.page-index-game-showcase__feature-icon {
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px; /* Enforce minimum display size */
}