.page-index-game-diversity-showcase {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-index-game-diversity-showcase__hero {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-game-diversity-showcase__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-game-diversity-showcase__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

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

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

.page-index-game-diversity-showcase__btn--primary {
  background-color: #FFCC00;
  color: #003366; /* Deep blue text on gold button */
}

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

.page-index-game-diversity-showcase__btn--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-index-game-diversity-showcase__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-3px);
}

.page-index-game-diversity-showcase__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-index-game-diversity-showcase__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-game-diversity-showcase__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-game-diversity-showcase__section--dark {
  background-color: #003366;
  color: #fff;
}

.page-index-game-diversity-showcase__section--dark .page-index-game-diversity-showcase__section-title,
.page-index-game-diversity-showcase__section--dark .page-index-game-diversity-showcase__game-title {
  color: #FFCC00;
}

.page-index-game-diversity-showcase__section-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  color: #003366;
}

.page-index-game-diversity-showcase__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555;
}

.page-index-game-diversity-showcase__section--dark .page-index-game-diversity-showcase__section-description {
  color: #e0e0e0;
}

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

.page-index-game-diversity-showcase__grid-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-game-diversity-showcase__section--dark .page-index-game-diversity-showcase__grid-item {
  background-color: #002244; /* Slightly lighter dark blue for cards */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-index-game-diversity-showcase__grid-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.page-index-game-diversity-showcase__game-img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFCC00;
}

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

.page-index-game-diversity-showcase__section--dark .page-index-game-diversity-showcase__game-title {
  color: #FFCC00;
}

.page-index-game-diversity-showcase__game-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-index-game-diversity-showcase__section--dark .page-index-game-diversity-showcase__game-description {
  color: #ccc;
}

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

.page-index-game-diversity-showcase__feature-list li {
  background-color: #002244;
  border-left: 5px solid #FFCC00;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #e0e0e0;
}

.page-index-game-diversity-showcase__icon {
  color: #FFCC00;
  font-size: 1.5em;
  margin-right: 10px;
  vertical-align: middle;
}

.page-index-game-diversity-showcase__feature-title {
  font-size: 1.2em;
  color: #FFCC00;
  vertical-align: middle;
}

.page-index-game-diversity-showcase__cta-banner {
  background: linear-gradient(45deg, #003366, #001a33);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-index-game-diversity-showcase__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFCC00;
}

.page-index-game-diversity-showcase__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-index-game-diversity-showcase__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.page-index-game-diversity-showcase__faq {
  padding: 60px 0;
  text-align: center;
}

.page-index-game-diversity-showcase__faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-game-diversity-showcase__faq-question {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-game-diversity-showcase__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

.page-index-game-diversity-showcase__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-game-diversity-showcase__faq-answer {
  font-size: 1em;
  color: #666;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-index-game-diversity-showcase__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-game-diversity-showcase__hero-title {
    font-size: 2.8em;
  }

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

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

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

  .page-index-game-diversity-showcase__btn--large {
    width: 100%;
    max-width: 300px;
  }

  .page-index-game-diversity-showcase__grid {
    grid-template-columns: 1fr;
  }

  .page-index-game-diversity-showcase__feature-list {
    grid-template-columns: 1fr;
  }
}

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

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

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

  .page-index-game-diversity-showcase__section {
    padding: 40px 0;
  }

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

  .page-index-game-diversity-showcase__cta-banner {
    padding: 60px 0;
  }

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

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

  .page-index-game-diversity-showcase__faq-question {
    font-size: 1.3em;
  }
}

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

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

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

  .page-index-game-diversity-showcase__btn--large {
    max-width: none;
  }
}