.page-index {
  color: #333333; /* Dark text for light body background */
}

.page-index__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  padding-bottom: 80px;
  background-color: #0A0A0A; /* Dark background for hero */
  color: #f5f5f5;
}

.page-index__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.page-index__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-index__hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 20px;
}

.page-index__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-index__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-index__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  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__button--primary {
  background-color: #FFD700;
  color: #0A0A0A;
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-index__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-index__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-index__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 6px;
}

.page-index__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-index__section--dark-bg {
  background-color: #0A0A0A;
  color: #f5f5f5;
  margin: 0;
  max-width: none;
  padding: 80px 20px;
}

.page-index__section-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  color: #0A0A0A;
  line-height: 1.3;
}

.page-index__section--dark-bg .page-index__section-title {
  color: #FFD700;
}

.page-index__section-intro {
  font-size: 1.1em;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-index__section--dark-bg .page-index__section-intro {
  color: #cccccc;
}

.page-index__feature-grid, .page-index__game-grid, .page-index__promo-grid, .page-index__trust-grid, .page-index__steps-grid {
  display: grid;
  gap: 30px;
  justify-content: center;
}

.page-index__feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-index__feature-card, .page-index__game-card, .page-index__promo-card, .page-index__trust-item, .page-index__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index__section--dark-bg .page-index__feature-card, .page-index__section--dark-bg .page-index__game-card, .page-index__section--dark-bg .page-index__promo-card, .page-index__section--dark-bg .page-index__trust-item, .page-index__section--dark-bg .page-index__step-card {
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: #f5f5f5;
}

.page-index__feature-card:hover, .page-index__game-card:hover, .page-index__promo-card:hover, .page-index__trust-item:hover, .page-index__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.page-index__section--dark-bg .page-index__feature-card:hover, .page-index__section--dark-bg .page-index__game-card:hover, .page-index__section--dark-bg .page-index__promo-card:hover, .page-index__section--dark-bg .page-index__trust-item:hover, .page-index__section--dark-bg .page-index__step-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.page-index__feature-icon, .page-index__trust-icon {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}

.page-index__feature-title, .page-index__game-title, .page-index__promo-title, .page-index__trust-title, .page-index__step-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #0A0A0A;
}

.page-index__section--dark-bg .page-index__feature-title, .page-index__section--dark-bg .page-index__game-title, .page-index__section--dark-bg .page-index__promo-title, .page-index__section--dark-bg .page-index__trust-title, .page-index__section--dark-bg .page-index__step-title {
  color: #FFD700;
}

.page-index__game-title a, .page-index__game-title a:visited {
  color: #0A0A0A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__section--dark-bg .page-index__game-title a, .page-index__section--dark-bg .page-index__game-title a:visited {
  color: #FFD700;
}

.page-index__game-title a:hover {
  color: #e6c200;
}

.page-index__feature-description, .page-index__game-description, .page-index__promo-description, .page-index__trust-description, .page-index__step-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 20px;
}

.page-index__section--dark-bg .page-index__feature-description, .page-index__section--dark-bg .page-index__game-description, .page-index__section--dark-bg .page-index__promo-description, .page-index__section--dark-bg .page-index__trust-description, .page-index__section--dark-bg .page-index__step-description {
  color: #cccccc;
}

.page-index__game-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-index__game-image, .page-index__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index__promo-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-index__app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-index__app-image {
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.page-index__app-cta {
  text-align: center;
}

.page-index__app-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-index__trust-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-index__steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 50px;
}

.page-index__cta-bottom {
  margin-top: 60px;
  text-align: center;
}

.page-index__faq-list {
  text-align: left;
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-index__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-index__faq-item:last-child {
  margin-bottom: 0;
}

.page-index__faq-question {
  font-size: 1.3em;
  color: #0A0A0A;
  margin-bottom: 10px;
}

.page-index__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index__hero-title {
    font-size: 3em;
  }
  .page-index__section-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-index__hero-section {
    padding-bottom: 60px;
  }
  .page-index__hero-title {
    font-size: 2.2em;
  }
  .page-index__hero-description {
    font-size: 1.1em;
  }
  .page-index__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-index__button {
    width: 80%;
    max-width: 300px;
    padding: 12px 25px;
  }
  .page-index__section {
    padding: 60px 15px;
  }
  .page-index__section--dark-bg {
    padding: 60px 15px;
  }
  .page-index__section-title {
    font-size: 2em;
  }
  .page-index__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-index__feature-grid, .page-index__game-grid, .page-index__promo-grid, .page-index__trust-grid, .page-index__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-index__game-image, .page-index__promo-image {
    height: 200px;
  }
  .page-index__app-image {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .page-index__app-text {
    font-size: 1em;
  }
  .page-index__faq-question {
    font-size: 1.1em;
  }
  .page-index__faq-answer {
    font-size: 0.95em;
  }
  /* Mobile content area image constraint */
  .page-index img {
    max-width: 100%;
    height: auto;
  }
  .page-index {
    overflow-x: hidden;
  }
}