.page-index-game-features {
  color: #333333;
}

.page-index-game-features__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-index-game-features__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-index-game-features__hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-index-game-features__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-index-game-features__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-index-game-features__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #F0F0F0;
  line-height: 1.5;
}

.page-index-game-features__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-index-game-features__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-index-game-features__button--register:hover {
  background-color: #F0F0F0;
  transform: translateY(-2px);
}

.page-index-game-features__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-index-game-features__button--login:hover {
  background-color: #E0A030;
  transform: translateY(-2px);
}

.page-index-game-features__introduction-section,
.page-index-game-features__game-categories-section,
.page-index-game-features__unique-selling-points-section,
.page-index-game-features__how-to-start-section,
.page-index-game-features__cta-section,
.page-index-game-features__faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.page-index-game-features__introduction-title,
.page-index-game-features__game-categories-title,
.page-index-game-features__unique-selling-points-title,
.page-index-game-features__how-to-start-title,
.page-index-game-features__cta-title,
.page-index-game-features__faq-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #000000;
  font-weight: bold;
}

.page-index-game-features__introduction-text,
.page-index-game-features__game-categories-description,
.page-index-game-features__unique-selling-points-description,
.page-index-game-features__how-to-start-description,
.page-index-game-features__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 40px;
}

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

.page-index-game-features__category-card,
.page-index-game-features__usp-item,
.page-index-game-features__step-card {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-index-game-features__category-card:hover,
.page-index-game-features__usp-item:hover,
.page-index-game-features__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-index-game-features__category-image,
.page-index-game-features__usp-icon {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure content images are not too small */
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-game-features__category-card-title,
.page-index-game-features__usp-item-title,
.page-index-game-features__step-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #000000;
  font-weight: bold;
}

.page-index-game-features__category-link {
  color: #000000;
  text-decoration: none;
}

.page-index-game-features__category-link:hover {
  text-decoration: underline;
}

.page-index-game-features__category-card-text,
.page-index-game-features__usp-item-text,
.page-index-game-features__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
}

.page-index-game-features__button--explore,
.page-index-game-features__button--view-promos,
.page-index-game-features__button--contact-us,
.page-index-game-features__button--step-register,
.page-index-game-features__button--step-deposit,
.page-index-game-features__button--step-play,
.page-index-game-features__button--view-all-faq {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 5px;
}

.page-index-game-features__button--explore:hover,
.page-index-game-features__button--view-promos:hover,
.page-index-game-features__button--contact-us:hover,
.page-index-game-features__button--step-register:hover,
.page-index-game-features__button--step-deposit:hover,
.page-index-game-features__button--step-play:hover,
.page-index-game-features__button--view-all-faq:hover {
  background-color: #E0A030;
  transform: translateY(-2px);
}

.page-index-game-features__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  border-radius: 10px;
  margin-top: 60px;
  margin-bottom: 60px;
}

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

.page-index-game-features__cta-description {
  color: #F0F0F0;
  font-size: 1.3em;
  margin-bottom: 40px;
}

.page-index-game-features__button--cta-register {
  background-color: #FCBC45;
  color: #000000;
  margin-right: 20px;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-game-features__button--cta-register:hover {
  background-color: #E0A030;
  transform: translateY(-2px);
}

.page-index-game-features__button--cta-download {
  background-color: #FFFFFF;
  color: #000000;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-game-features__button--cta-download:hover {
  background-color: #F0F0F0;
  transform: translateY(-2px);
}

.page-index-game-features__faq-item {
  text-align: left;
  margin-bottom: 30px;
  border-bottom: 1px solid #EEEEEE;
  padding-bottom: 20px;
}

.page-index-game-features__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.page-index-game-features__faq-question {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-game-features__faq-answer {
  font-size: 1.1em;
  line-height: 1.7;
  color: #666666;
}

@media (max-width: 1024px) {
  .page-index-game-features__hero-title {
    font-size: 3em;
  }
  .page-index-game-features__hero-description {
    font-size: 1.2em;
  }
  .page-index-game-features__introduction-title,
  .page-index-game-features__game-categories-title,
  .page-index-game-features__unique-selling-points-title,
  .page-index-game-features__how-to-start-title,
  .page-index-game-features__cta-title,
  .page-index-game-features__faq-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index-game-features__hero-section {
    padding: 40px 15px;
  }
  .page-index-game-features__hero-title {
    font-size: 2.5em;
  }
  .page-index-game-features__hero-description {
    font-size: 1em;
  }
  .page-index-game-features__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-game-features__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-index-game-features__introduction-section,
  .page-index-game-features__game-categories-section,
  .page-index-game-features__unique-selling-points-section,
  .page-index-game-features__how-to-start-section,
  .page-index-game-features__cta-section,
  .page-index-game-features__faq-section {
    padding: 40px 15px;
  }
  .page-index-game-features__introduction-title,
  .page-index-game-features__game-categories-title,
  .page-index-game-features__unique-selling-points-title,
  .page-index-game-features__how-to-start-title,
  .page-index-game-features__cta-title,
  .page-index-game-features__faq-title {
    font-size: 1.8em;
  }
  .page-index-game-features__introduction-text,
  .page-index-game-features__game-categories-description,
  .page-index-game-features__unique-selling-points-description,
  .page-index-game-features__how-to-start-description,
  .page-index-game-features__cta-description {
    font-size: 0.95em;
  }
  .page-index-game-features__category-grid,
  .page-index-game-features__usp-grid,
  .page-index-game-features__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-index-game-features__category-image,
  .page-index-game-features__usp-icon {
    max-width: 100%;
    height: auto;
  }
  .page-index-game-features__cta-title {
    font-size: 2em;
  }
  .page-index-game-features__cta-description {
    font-size: 1.1em;
  }
  .page-index-game-features__button--cta-register,
  .page-index-game-features__button--cta-download {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
    max-width: 300px;
  }
  .page-index-game-features__faq-question {
    font-size: 1.3em;
  }
  .page-index-game-features__faq-answer {
    font-size: 1em;
  }
  /* Ensure all images within content area are responsive and don't overflow */
  .page-index-game-features img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
}