.page-index {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-index__hero-section {
  position: relative;
  background-color: #000000;
  padding: 0;
  overflow: hidden;
}

.page-index__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-index__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-index__hero-title {
  font-size: 3.5em;
  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;
}

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

.page-index__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.page-index__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for primary button */
}

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

.page-index__button--secondary {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Register button color */
  border: 2px solid #FCBC45;
}

.page-index__button--secondary:hover {
  background-color: #1a1a1a;
  border-color: #e0a53b;
}

.page-index__button--text {
  background: none;
  color: #000000;
  padding: 10px 0;
  min-width: unset;
  border: none;
  text-decoration: underline;
}

.page-index__button--text:hover {
  color: #FCBC45;
}

.page-index__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  color: #000000;
  position: relative;
  padding-bottom: 15px;
}

.page-index__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-index__about-section,
.page-index__promo-section,
.page-index__games-section,
.page-index__trust-section,
.page-index__download-section,
.page-index__cta-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-index__about-section .page-index__button--text {
  display: block;
  margin-top: 40px;
  text-align: center;
}

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

.page-index__grid-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-index__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-index__feature-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-index__feature-text {
  font-size: 1em;
  color: #555555;
}

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

.page-index__promo-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-index__promo-details {
  flex: 1;
  max-width: 50%;
}

.page-index__promo-subtitle {
  font-size: 2em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-index__promo-text {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 25px;
}

.page-index__promo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index__promo-list-item {
  font-size: 1em;
  color: #333333;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-index__promo-list-item::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #FCBC45;
}

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

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

.page-index__game-card {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index__game-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-index__game-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-index__game-description {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index__game-card .page-index__button--primary {
  width: fit-content;
  margin: 0 auto;
}

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

.page-index__trust-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-index__trust-details {
  flex: 1;
  max-width: 50%;
}

.page-index__trust-text {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 30px;
}

.page-index__download-section {
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
}

.page-index__download-section .page-index__section-title {
  color: #FFFFFF;
}

.page-index__download-section .page-index__section-title::after {
  background-color: #FCBC45;
}

.page-index__download-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-index__download-section .page-index__button--primary {
  background-color: #FCBC45;
  color: #000000;
}

.page-index__download-section .page-index__button--primary:hover {
  background-color: #e0a53b;
}

.page-index__cta-section {
  text-align: center;
  background-color: #f0f0f0;
}

.page-index__cta-description {
  font-size: 1.3em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index__hero-title {
    font-size: 2.8em;
  }
  .page-index__hero-description {
    font-size: 1.1em;
  }
  .page-index__promo-content,
  .page-index__trust-content {
    flex-direction: column;
    text-align: center;
  }
  .page-index__promo-image,
  .page-index__promo-details,
  .page-index__trust-image,
  .page-index__trust-details {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-index__hero-section {
    padding: 40px 0;
  }
  .page-index__hero-title {
    font-size: 2.2em;
  }
  .page-index__hero-description {
    font-size: 1em;
  }
  .page-index__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-index__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-index__about-section,
  .page-index__promo-section,
  .page-index__games-section,
  .page-index__trust-section,
  .page-index__download-section,
  .page-index__cta-section {
    padding: 60px 0;
  }
  .page-index__feature-image,
  .page-index__promo-image,
  .page-index__game-image,
  .page-index__trust-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
    min-width: 200px;
    min-height: 200px;
  }
  .page-index__promo-subtitle {
    font-size: 1.8em;
  }
  .page-index__promo-list-item {
    text-align: left;
  }
  .page-index__trust-content {
    flex-direction: column;
  }
  .page-index__download-text {
    font-size: 1em;
  }
  .page-index__cta-description {
    font-size: 1.1em;
  }
  /* Ensure no horizontal overflow */
  .page-index {
    overflow-x: hidden;
  }
  .page-index__container {
    padding: 0 15px;
  }
}ize: 1.8em;
  }
  .page-index__section-subtitle {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-index__features-section, .page-index__games-showcase, .page-index__bonus-guide-section, .page-index__app-section, .page-index__testimonials-section, .page-index__faq-preview-section, .page-index__final-cta-section {
    padding: 60px 0;
  }
  .page-index__features-grid, .page-index__games-grid, .page-index__steps-grid, .page-index__testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index__app-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-index__game-image {
    height: 200px;
  }
  /* Mobile content area image constraints */
  .page-index img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-index__hero-title {
    font-size: 1.8em;
  }
  .page-index__section-title {
    font-size: 1.5em;
  }
}