.page-index-top-games-showcase {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A1A2E; /* Deep midnight blue/black */
  line-height: 1.6;
}

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

.page-index-top-games-showcase__highlight {
  color: #FFD700; /* Gold for highlights */
}

.page-index-top-games-showcase__keyword {
  color: #FFD700;
  font-weight: bold;
}

/* Hero Section */
.page-index-top-games-showcase__hero-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%); /* Dark gradient for hero */
  padding: 100px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-index-top-games-showcase__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-top-games-showcase__hero-subtitle {
  font-size: 1.4em;
  color: #F0F0F0; /* Lighter text for subtitle */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-top-games-showcase__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-index-top-games-showcase__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A1A2E; /* Dark text on gold */
}

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

.page-index-top-games-showcase__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
}

.page-index-top-games-showcase__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A2E;
  transform: translateY(-3px);
}

/* Games Overview Section */
.page-index-top-games-showcase__games-overview {
  padding: 80px 0;
  background-color: #1A1A2E;
}

.page-index-top-games-showcase__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-top-games-showcase__section-description {
  font-size: 1.1em;
  color: #E0E0E0;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-top-games-showcase__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-index-top-games-showcase__game-card {
  background-color: #2A2A3E; /* Slightly lighter dark background for cards */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-top-games-showcase__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-index-top-games-showcase__game-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-index-top-games-showcase__game-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-top-games-showcase__game-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-top-games-showcase__game-card-text {
  font-size: 1em;
  color: #CCCCCC;
  margin-bottom: 20px;
}

.page-index-top-games-showcase__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 6px;
  align-self: flex-start;
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-index-top-games-showcase__btn--small:hover {
  background-color: #e6c200;
}

/* Why Choose Section */
.page-index-top-games-showcase__why-choose {
  padding: 80px 0;
  background-color: #1A1A2E;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-index-top-games-showcase__feature-item {
  text-align: center;
  background-color: #2A2A3E;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-top-games-showcase__feature-item:hover {
  transform: translateY(-5px);
}

.page-index-top-games-showcase__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

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

.page-index-top-games-showcase__feature-text {
  font-size: 0.95em;
  color: #CCCCCC;
}

/* CTA Section */
.page-index-top-games-showcase__cta-section {
  background: linear-gradient(45deg, #FFD700 0%, #e6c200 100%); /* Gold gradient for CTA */
  padding: 80px 0;
  text-align: center;
  color: #1A1A2E; /* Dark text on gold background */
  border-top: 2px solid #1A1A2E;
}

.page-index-top-games-showcase__cta-title {
  font-size: 3em;
  color: #1A1A2E;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-top-games-showcase__cta-text {
  font-size: 1.3em;
  color: #333333;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-top-games-showcase__cta-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.page-index-top-games-showcase__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-index-top-games-showcase__btn--large.page-index-top-games-showcase__btn--primary {
  background-color: #1A1A2E;
  color: #FFD700;
}

.page-index-top-games-showcase__btn--large.page-index-top-games-showcase__btn--primary:hover {
  background-color: #33334f;
  color: #FFD700;
}

.page-index-top-games-showcase__btn--large.page-index-top-games-showcase__btn--secondary {
  background-color: transparent;
  color: #1A1A2E;
  border: 2px solid #1A1A2E;
}

.page-index-top-games-showcase__btn--large.page-index-top-games-showcase__btn--secondary:hover {
  background-color: #1A1A2E;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-top-games-showcase__hero-title {
    font-size: 2.8em;
  }
  .page-index-top-games-showcase__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-top-games-showcase__section-title {
    font-size: 2.2em;
  }
  .page-index-top-games-showcase__game-categories {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-index-top-games-showcase__cta-title {
    font-size: 2.5em;
  }
  .page-index-top-games-showcase__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-index-top-games-showcase__hero-section,
  .page-index-top-games-showcase__games-overview,
  .page-index-top-games-showcase__why-choose,
  .page-index-top-games-showcase__cta-section {
    padding: 60px 0;
  }
  .page-index-top-games-showcase__hero-title {
    font-size: 2.2em;
  }
  .page-index-top-games-showcase__hero-subtitle {
    font-size: 1em;
  }
  .page-index-top-games-showcase__hero-actions,
  .page-index-top-games-showcase__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-top-games-showcase__btn,
  .page-index-top-games-showcase__btn--large {
    width: 80%;
    margin: 0 auto;
  }
  .page-index-top-games-showcase__section-title {
    font-size: 1.8em;
  }
  .page-index-top-games-showcase__game-card-title {
    font-size: 1.5em;
  }
  .page-index-top-games-showcase__cta-title {
    font-size: 2em;
  }
  .page-index-top-games-showcase__features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-top-games-showcase__hero-title {
    font-size: 1.8em;
  }
  .page-index-top-games-showcase__section-title {
    font-size: 1.6em;
  }
  .page-index-top-games-showcase__cta-title {
    font-size: 1.8em;
  }
  .page-index-top-games-showcase__btn,
  .page-index-top-games-showcase__btn--large {
    width: 95%;
  }
}