/* style/index-top-games-showcase.css */
.page-index-top-games-showcase {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A2239; /* Deep Ocean Blue */
  line-height: 1.6;
}

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

.page-index-top-games-showcase__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #0A2239 0%, #1A3E5C 100%); /* Dark blue gradient */
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-index-top-games-showcase__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-top-games-showcase__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-index-top-games-showcase__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold */
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-index-top-games-showcase__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #FFFACD; /* Light gold for readability */
}

.page-index-top-games-showcase__cta-button {
  display: inline-block;
  background-color: #DC143C; /* Red */
  color: #FFFFFF; /* White */
  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;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.page-index-top-games-showcase__cta-button:hover {
  background-color: #FF4500; /* Darker red on hover */
  transform: translateY(-3px);
}

.page-index-top-games-showcase__hero-image-wrapper {
  margin-top: 40px;
  max-width: 80%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-top-games-showcase__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-index-top-games-showcase__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin: 60px 0 30px;
  position: relative;
}

.page-index-top-games-showcase__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #DC143C; /* Red underline */
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.page-index-top-games-showcase__why-choose, .page-index-top-games-showcase__security-support, .page-index-top-games-showcase__promotions, .page-index-top-games-showcase__guide, .page-index-top-games-showcase__conclusion {
  padding: 60px 0;
  background-color: #1A3E5C; /* Slightly lighter dark blue */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-index-top-games-showcase__why-choose {
  background-color: #0A2239;
}

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

.page-index-top-games-showcase__feature-item {
  background-color: #1A3E5C; /* Darker blue for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-index-top-games-showcase__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

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

.page-index-top-games-showcase__feature-description {
  color: #E0E0E0;
}

.page-index-top-games-showcase__game-categories {
  padding: 60px 0;
  background-color: #0A2239;
}

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

.page-index-top-games-showcase__game-card {
  background-color: #1A3E5C; /* Darker blue for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-top-games-showcase__game-card:hover {
  transform: translateY(-10px);
}

.page-index-top-games-showcase__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index-top-games-showcase__game-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  padding: 20px 20px 10px;
}

.page-index-top-games-showcase__game-description {
  font-size: 1em;
  color: #E0E0E0;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-index-top-games-showcase__game-button {
  display: inline-block;
  background-color: #DC143C; /* Red */
  color: #FFFFFF; /* White */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-index-top-games-showcase__game-button:hover {
  background-color: #FF4500;
}

.page-index-top-games-showcase__cta-button--small {
  padding: 12px 25px;
  font-size: 1em;
}

.page-index-top-games-showcase__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-top-games-showcase__step-item {
  background-color: #1A3E5C;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-index-top-games-showcase__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-top-games-showcase__step-description {
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-index-top-games-showcase__small-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #0A2239; /* Dark blue text on gold */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-index-top-games-showcase__small-button:hover {
  background-color: #FFC107; /* Darker gold on hover */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-top-games-showcase__hero-title {
    font-size: 2.8em;
  }
  .page-index-top-games-showcase__section-title {
    font-size: 2em;
  }
  .page-index-top-games-showcase__hero-description, .page-index-top-games-showcase__text {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-index-top-games-showcase__hero {
    padding: 60px 0;
  }
  .page-index-top-games-showcase__hero-title {
    font-size: 2.2em;
  }
  .page-index-top-games-showcase__section-title {
    font-size: 1.8em;
  }
  .page-index-top-games-showcase__hero-image-wrapper {
    max-width: 95%;
  }
}

@media (max-width: 576px) {
  .page-index-top-games-showcase__hero-title {
    font-size: 1.8em;
  }
  .page-index-top-games-showcase__hero-description {
    font-size: 0.9em;
  }
  .page-index-top-games-showcase__section-title {
    font-size: 1.5em;
  }
  .page-index-top-games-showcase__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-index-top-games-showcase__game-title {
    font-size: 1.4em;
  }
  .page-index-top-games-showcase__game-description {
    font-size: 0.9em;
  }
  .page-index-top-games-showcase__feature-title, .page-index-top-games-showcase__step-title {
    font-size: 1.3em;
  }
}