.page-index-core-game-features {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-index-core-game-features__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-index-core-game-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  filter: brightness(0.6); /* Darken image for text readability, not changing color */
}

.page-index-core-game-features__hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Adjust based on content */
  text-align: center;
  padding: 80px 20px;
}

.page-index-core-game-features__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-index-core-game-features__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-index-core-game-features__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-core-game-features__hero-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold main color */
  color: #121212; /* Dark text for gold background */
  padding: 15px 40px;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-core-game-features__hero-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-core-game-features__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold main color */
  text-align: center;
  margin-bottom: 60px;
  padding-top: 40px;
}

.page-index-core-game-features__text-content {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-core-game-features__text-content--centered {
  text-align: center;
}

.page-index-core-game-features__introduction-section,
.page-index-core-game-features__game-showcase-section,
.page-index-core-game-features__bonuses-section,
.page-index-core-game-features__call-to-action-section {
  padding: 80px 0;
}

.page-index-core-game-features__bg-dark-accent {
  background-color: rgba(30, 144, 255, 0.1); /* Subtle dark blue accent */
}

.page-index-core-game-features__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-index-core-game-features__key-features-section {
  padding: 80px 0;
}

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

.page-index-core-game-features__feature-card {
  background-color: rgba(255, 215, 0, 0.08); /* Light gold transparent background */
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-core-game-features__feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 215, 0, 0.15);
}

.page-index-core-game-features__card-icon {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  min-width: 200px;
  min-height: 200px;
  margin-bottom: 20px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-index-core-game-features__card-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 15px;
}

.page-index-core-game-features__card-description {
  font-size: 1em;
  color: #cccccc;
}

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

.page-index-core-game-features__game-card {
  background-color: rgba(30, 144, 255, 0.08); /* Light blue transparent background */
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(30, 144, 255, 0.2);
}

.page-index-core-game-features__game-card:hover {
  transform: translateY(-10px);
  background-color: rgba(30, 144, 255, 0.15);
}

.page-index-core-game-features__game-card-image {
  width: 100%;
  height: auto;
  max-width: 600px; /* Ensure images are not too small */
  min-width: 200px;
  min-height: 200px;
  margin-bottom: 20px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-index-core-game-features__game-card-title {
  font-size: 1.6em;
  color: #1E90FF; /* Deep blue accent color */
  margin-bottom: 10px;
}

.page-index-core-game-features__game-card-description {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-index-core-game-features__game-card-button {
  display: inline-block;
  background-color: #1E90FF; /* Deep blue accent color */
  color: #ffffff;
  padding: 10px 25px;
  font-size: 1em;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-core-game-features__game-card-button:hover {
  background-color: #1565b3;
  transform: translateY(-2px);
}

.page-index-core-game-features__experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.page-index-core-game-features__experience-content {
  order: 2;
}

.page-index-core-game-features__experience-grid .page-index-core-game-features__image-content {
  order: 1;
}

.page-index-core-game-features__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-core-game-features__list-item {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #f0f0f0;
  transition: background-color 0.3s ease;
}

.page-index-core-game-features__list-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.page-index-core-game-features__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold main color */
  color: #121212; /* Dark text for gold background */
  padding: 15px 35px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  margin-top: 30px;
}

.page-index-core-game-features__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

.page-index-core-game-features__promo-card {
  background-color: rgba(30, 144, 255, 0.08); /* Light blue transparent background */
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(30, 144, 255, 0.2);
}

.page-index-core-game-features__promo-card:hover {
  transform: translateY(-10px);
  background-color: rgba(30, 144, 255, 0.15);
}

.page-index-core-game-features__promo-card .page-index-core-game-features__card-title {
  color: #1E90FF;
}

.page-index-core-game-features__promo-card .page-index-core-game-features__card-button {
  background-color: #FFD700;
  color: #121212;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-core-game-features__promo-card .page-index-core-game-features__card-button:hover {
  background-color: #e6c200;
}

.page-index-core-game-features__call-to-action-section {
  background: linear-gradient(135deg, #1E90FF, #FFD700); /* Gradient background */
  padding: 100px 0;
  text-align: center;
  color: #121212; /* Dark text for light gradient */
  margin-top: 80px;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.page-index-core-game-features__cta-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-core-game-features__cta-title {
  font-size: 3em;
  color: #121212;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-index-core-game-features__cta-description {
  font-size: 1.3em;
  max-width: 800px;
  margin-bottom: 40px;
  color: #333333;
}

.page-index-core-game-features__cta-button--large {
  padding: 18px 50px;
  font-size: 1.4em;
  border-radius: 60px;
  background-color: #121212; /* Dark button for contrast */
  color: #FFD700; /* Gold text */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-index-core-game-features__cta-button--large:hover {
  background-color: #333333;
  color: #e6c200;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-index-core-game-features__experience-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-index-core-game-features__experience-content {
    order: 1;
  }
  .page-index-core-game-features__experience-grid .page-index-core-game-features__image-content {
    order: 2;
  }
}

@media (max-width: 768px) {
  .page-index-core-game-features__hero-title {
    font-size: 2.5em;
  }
  .page-index-core-game-features__hero-description {
    font-size: 1em;
  }
  .page-index-core-game-features__section-title {
    font-size: 2em;
  }
  .page-index-core-game-features__text-content {
    font-size: 1em;
  }
  .page-index-core-game-features__cta-title {
    font-size: 2.2em;
  }
  .page-index-core-game-features__cta-description {
    font-size: 1em;
  }
  .page-index-core-game-features__hero-container {
    min-height: 400px;
    padding: 60px 15px;
  }
  .page-index-core-game-features__introduction-section,
  .page-index-core-game-features__key-features-section,
  .page-index-core-game-features__game-showcase-section,
  .page-index-core-game-features__seamless-experience-section,
  .page-index-core-game-features__bonuses-section,
  .page-index-core-game-features__call-to-action-section {
    padding: 60px 0;
  }
  .page-index-core-game-features__image-content,
  .page-index-core-game-features__card-icon,
  .page-index-core-game-features__game-card-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-index-core-game-features__container {
    padding: 0 15px;
  }

  /* Ensure content area images do not overflow */
  .page-index-core-game-features img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Ensure main content area does not cause horizontal scroll */
  .page-index-core-game-features {
    overflow-x: hidden;
  }
}