.page-index-top-games {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

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

.page-index-top-games__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
  text-align: center;
  gap: 40px;
}

.page-index-top-games__hero-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  text-align: left;
}

.page-index-top-games__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-top-games__hero-description {
  font-size: 1.2em;
  color: #e5dfd3;
  margin-bottom: 30px;
}

.page-index-top-games__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-top-games__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-index-top-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-index-top-games__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-index-top-games__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-top-games__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-index-top-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-top-games__btn--small {
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 30px;
  margin-top: 15px;
}

.page-index-top-games__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 25px;
  padding-top: 60px;
}

.page-index-top-games__section-description {
  font-size: 1.1em;
  color: #ccc;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-top-games__featured-games {
  padding: 60px 0;
  background-color: #1A202C;
}

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

.page-index-top-games__game-card {
  background-color: #2a3340;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-top-games__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-index-top-games__game-image {
  width: 100%;
  max-width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

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

.page-index-top-games__game-text {
  color: #ccc;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-top-games__why-choose {
  padding: 80px 0;
  background-color: #1A202C;
}

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

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

.page-index-top-games__feature-item:hover {
  transform: translateY(-8px);
}

.page-index-top-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

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

.page-index-top-games__feature-text {
  color: #ccc;
  font-size: 1em;
}

.page-index-top-games__how-to-start {
  padding: 80px 0;
  background-color: #1A202C;
}

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

.page-index-top-games__step-item {
  background-color: #2a3340;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-top-games__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #1A202C;
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 25px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

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

.page-index-top-games__step-text {
  color: #ccc;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-top-games__cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1A202C 0%, #0a111a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-top-games__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-top-games__cta-description {
  font-size: 1.2em;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-top-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-index-top-games__cta-image {
  max-width: 400px;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-index-top-games__faq {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-index-top-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-top-games__faq-item {
  background-color: #2a3340;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-index-top-games__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-top-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-index-top-games__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-top-games__faq-answer {
  color: #ccc;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-index-top-games__faq-answer.open {
  max-height: 500px; /* Adjust as needed */
  padding-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-top-games__hero {
    flex-direction: column;
    text-align: center;
  }

  .page-index-top-games__hero-content {
    text-align: center;
  }

  .page-index-top-games__hero-title {
    font-size: 2.5em;
  }

  .page-index-top-games__section-title {
    font-size: 2.2em;
  }

  .page-index-top-games__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index-top-games__hero {
    padding: 60px 0;
  }

  .page-index-top-games__hero-title {
    font-size: 2em;
  }

  .page-index-top-games__hero-description {
    font-size: 1em;
  }

  .page-index-top-games__section-title {
    font-size: 1.8em;
  }

  .page-index-top-games__section-description {
    font-size: 0.95em;
  }

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

  .page-index-top-games__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-index-top-games__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-index-top-games__cta-image {
    max-width: 300px;
  }
}

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

  .page-index-top-games__section-title {
    font-size: 1.6em;
  }

  .page-index-top-games__game-title,
  .page-index-top-games__feature-title,
  .page-index-top-games__step-title {
    font-size: 1.5em;
  }

  .page-index-top-games__faq-question {
    font-size: 1.2em;
  }

  .page-index-top-games__btn {
    width: 100%;
    margin-left: 0 !important;
    margin-top: 10px;
  }

  .page-index-top-games__cta-buttons .page-index-top-games__btn {
    margin-top: 15px;
  }
}