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

.page-index__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF; /* Light text for dark background */
  position: relative;
  overflow: hidden;
  padding-top: 0; /* Assuming shared.css handles body padding-top */
}

.page-index__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-index__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-index__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
}

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

.page-index__button {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-index__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-index__button--register:hover {
  background-color: #F0F0F0;
}

.page-index__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-index__button--login:hover {
  background-color: #e0a53b;
}

.page-index__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-index__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #000000;
}

.page-index__section-subtitle {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

.page-index__about-us-section, .page-index__game-showcase-section, .page-index__promotions-section, .page-index__why-choose-us-section, .page-index__app-download-section, .page-index__testimonials-section, .page-index__contact-cta-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index__about-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-index__about-us-text p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333333;
}

.page-index__about-us-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index__game-grid, .page-index__promo-grid, .page-index__benefits-grid, .page-index__testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index__game-card, .page-index__promo-card, .page-index__benefit-item, .page-index__testimonial-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-index__game-card:hover, .page-index__promo-card:hover, .page-index__benefit-item:hover, .page-index__testimonial-card:hover {
  transform: translateY(-10px);
}

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

.page-index__game-title, .page-index__promo-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

.page-index__game-title a, .page-index__promo-title a {
  text-decoration: none;
  color: inherit;
}

.page-index__game-title a:hover, .page-index__promo-title a:hover {
  color: #FCBC45;
}

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

.page-index__game-button, .page-index__promo-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index__game-button:hover, .page-index__promo-button:hover {
  background-color: #e0a53b;
}

.page-index__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-index__benefit-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

.page-index__benefit-description {
  font-size: 0.95em;
  color: #555555;
}

.page-index__app-download-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-index__app-download-content {
  flex: 1;
}

.page-index__app-description {
  font-size: 1.1em;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 30px;
}

.page-index__button--download {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-index__button--download:hover {
  background-color: #333333;
}

.page-index__app-image {
  flex: 1;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index__testimonial-quote {
  font-style: italic;
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 15px;
}

.page-index__testimonial-author {
  font-weight: bold;
  color: #000000;
}

.page-index__contact-cta-section {
  text-align: center;
}

.page-index__button--contact {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-index__button--contact:hover {
  background-color: #333333;
}

@media (max-width: 992px) {
  .page-index__hero-title {
    font-size: 2.8em;
  }
  .page-index__hero-description {
    font-size: 1.1em;
  }
  .page-index__about-us-grid, .page-index__app-download-section {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .page-index__app-download-section {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-index__hero-section {
    padding: 40px 15px;
  }
  .page-index__hero-title {
    font-size: 2.2em;
  }
  .page-index__hero-description {
    font-size: 1em;
  }
  .page-index__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index__button {
    width: 100%;
  }
  .page-index__section-title {
    font-size: 2em;
  }
  .page-index__section-subtitle {
    font-size: 1em;
  }
  .page-index__about-us-section, .page-index__game-showcase-section, .page-index__promotions-section, .page-index__why-choose-us-section, .page-index__app-download-section, .page-index__testimonials-section, .page-index__contact-cta-section {
    padding: 50px 15px;
  }
  .page-index__game-grid, .page-index__promo-grid, .page-index__benefits-grid, .page-index__testimonial-grid {
    grid-template-columns: 1fr;
  }
  /* Mobile content image overflow prevention */
  .page-index img {
    max-width: 100%;
    height: auto;
  }
  .page-index__benefit-icon {
    width: 80px;
    height: 80px;
  }
}