.page-index {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Auxiliary dark background */
}

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

.page-index__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Primary gold for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-index__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 60px;
  color: #B0B0B0; /* Slightly lighter gray for descriptions */
}

.page-index__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-index__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-index__btn--primary:hover {
  background-color: #E0B800;
  border-color: #E0B800;
}

.page-index__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-index__btn--large {
  padding: 15px 35px;
  font-size: 1.1em;
}

.page-index__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-index__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index__btn--outline:hover {
  background-color: #FFD700;
  color: #1A202C;
}

/* Hero Section */
.page-index__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #3a3f4a 100%); /* Darker gradient for hero */
  text-align: center;
  gap: 40px;
}

.page-index__hero-content {
  max-width: 800px;
}

.page-index__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index__hero-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

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

.page-index__hero-image-wrapper {
  width: 100%;
  max-width: 700px;
  margin-top: 40px;
}

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

/* About Section */
.page-index__about {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-index__about-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-index__about-text {
  flex: 1;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-index__about-text p {
  margin-bottom: 20px;
}

.page-index__about-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-index__about-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Games Section */
.page-index__games {
  padding: 80px 0;
  background-color: #282c36; /* Slightly lighter dark for contrast */
}

.page-index__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-index__game-card {
  background-color: #1A202C;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-index__game-card-image {
  width: 100%;
  max-width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-index__game-card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index__game-card-description {
  font-size: 1em;
  color: #B0B0B0;
  flex-grow: 1;
}

/* Promotions Section */
.page-index__promotions {
  padding: 80px 0;
  background-color: #1A202C;
}

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

.page-index__promo-card {
  background-color: #282c36;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-index__promo-card-image {
  width: 100%;
  max-width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-index__promo-card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index__promo-card-description {
  font-size: 1em;
  color: #B0B0B0;
  flex-grow: 1;
}

/* Security Section */
.page-index__security {
  padding: 80px 0;
  background-color: #282c36;
}

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

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

.page-index__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-index__feature-description {
  font-size: 1em;
  color: #B0B0B0;
}

/* CTA Section */
.page-index__cta {
  background: linear-gradient(45deg, #FFD700, #E0B800);
  padding: 80px 20px;
  text-align: center;
  color: #1A202C; /* Dark text on light gold background */
}

.page-index__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #1A202C;
}

.page-index__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #333;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__cta .page-index__btn--large {
  margin: 0 10px;
}

.page-index__cta .page-index__btn--outline {
  border-color: #1A202C;
  color: #1A202C;
}

.page-index__cta .page-index__btn--outline:hover {
  background-color: #1A202C;
  color: #FFD700;
}

/* Detail Pages Section */
.page-index__detail-pages {
  padding: 80px 0;
  background-color: #1A202C;
}

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

.page-index__detail-card {
  background-color: #282c36;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-index__detail-card-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  flex-grow: 1;
}

.page-index__detail-card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__detail-card-title a:hover {
  color: #E0B800;
}

.page-index__detail-card-description {
  font-size: 1em;
  color: #B0B0B0;
  flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index__hero {
    flex-direction: column;
  }

  .page-index__hero-title {
    font-size: 2.8em;
  }

  .page-index__about-grid {
    flex-direction: column;
  }

  .page-index__about-image-wrapper {
    order: -1; /* Image above text on smaller screens */
  }

  .page-index__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-index__hero {
    padding: 60px 15px;
  }

  .page-index__hero-title {
    font-size: 2.2em;
  }

  .page-index__hero-description {
    font-size: 1.1em;
  }

  .page-index__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-index__section-title {
    font-size: 2em;
    padding-top: 40px;
  }

  .page-index__section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .page-index__games, .page-index__promotions, .page-index__security, .page-index__about, .page-index__cta, .page-index__detail-pages {
    padding: 60px 0;
  }

  .page-index__game-card, .page-index__promo-card, .page-index__feature-item, .page-index__detail-card {
    padding: 20px;
  }

  .page-index__cta-title {
    font-size: 2em;
  }
}

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

  .page-index__hero-description {
    font-size: 0.95em;
  }

  .page-index__section-title {
    font-size: 1.8em;
  }

  .page-index__cta-title {
    font-size: 1.8em;
  }
}border-color: var(--page-index-text-light);
}

.page-index__cta-actions .page-index__btn--secondary:hover {
  background-color: var(--page-index-text-light);
  color: var(--page-index-secondary-color);
}

/* Download App Section */
.page-index__download-app {
  padding: 60px 0;
  background-color: var(--page-index-bg-light);
  text-align: center;
}

.page-index__app-download-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-index__btn--app {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1em;
  padding: 12px 30px;
}

.page-index__btn--ios {
  background-color: #000000;
  color: var(--page-index-text-light);
  border: 2px solid #000000;
}

.page-index__btn--ios:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-index__btn--android {
  background-color: #3DDC84;
  color: var(--page-index-text-light);
  border: 2px solid #3DDC84;
}

.page-index__btn--android:hover {
  background-color: darken(#3DDC84, 10%);
  border-color: darken(#3DDC84, 10%);
}

.page-index__app-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.page-index__app-screenshot {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}

/* Detail Pages Section */
.page-index__detail-pages {
  padding: 60px 0;
  background-color: var(--page-index-bg-dark);
  color: var(--page-index-text-light);
}

.page-index__detail-pages .page-index__section-title {
  color: var(--page-index-accent-color);
}

.page-index__detail-pages .page-index__section-title::after {
  background-color: var(--page-index-accent-color);
}

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

.page-index__detail-item {
  background-color: var(--page-index-primary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index__detail-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-index__detail-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-index__detail-title a {
  color: var(--page-index-accent-color);
  text-decoration: none;
}

.page-index__detail-title a:hover {
  text-decoration: underline;
}

.page-index__detail-description {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index__detail-item .page-index__btn {
  background-color: var(--page-index-secondary-color);
  border-color: var(--page-index-secondary-color);
  color: var(--page-index-text-light);
}

.page-index__detail-item .page-index__btn:hover {
  background-color: darken(var(--page-index-secondary-color), 10%);
  border-color: darken(var(--page-index-secondary-color), 10%);
}

/* Why Choose Us Section */
.page-index__why-choose-us {
  padding: 60px 0;
  background-color: var(--page-index-bg-light);
}

.page-index__reason-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-index__reason-list li {
  background-color: #f9f9f9;
  border-left: 5px solid var(--page-index-secondary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.05em;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index__reason-list li strong {
  color: var(--page-index-primary-color);
}

/* FAQ Section */
.page-index__faq {
  padding: 60px 0;
  background-color: var(--page-index-primary-color);
  color: var(--page-index-text-light);
}

.page-index__faq .page-index__section-title {
  color: var(--page-index-accent-color);
}

.page-index__faq .page-index__section-title::after {
  background-color: var(--page-index-accent-color);
}

.page-index__faq-item {
  background-color: var(--page-index-bg-dark);
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index__faq-question {
  font-size: 1.3em;
  color: var(--page-index-accent-color);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-index__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index__faq-answer {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.8);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-index__faq-answer.show {
  max-height: 200px; /* Adjust as needed */
}

.page-index__faq-answer a {
  color: var(--page-index-secondary-color);
  text-decoration: none;
}

.page-index__faq-answer a:hover {
  text-decoration: underline;
}

/* Final CTA Section */
.page-index__final-cta {
  background: linear-gradient(135deg, var(--page-index-secondary-color) 0%, #a2352a 100%);
  color: var(--page-index-text-light);
  padding: 100px 0;
  text-align: center;
}

.page-index__final-cta-title {
  color: var(--page-index-text-light);
  font-size: 3em;
  margin-bottom: 25px;
}

.page-index__final-cta-title::after {
  background-color: var(--page-index-accent-color);
}

.page-index__final-cta-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 50px;
  color: rgba(255, 255, 255, 0.95);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index__hero-title {
    font-size: 2.8em;
  }
  .page-index__hero-description {
    font-size: 1.1em;
  }
  .page-index__section-title {
    font-size: 2em;
  }
  .page-index__cta-title,
  .page-index__final-cta-title {
    font-size: 2.5em;
  }
  .page-index__feature-grid, .page-index__game-grid, .page-index__promo-grid, .page-index__detail-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index__hero {
    padding: 60px 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__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-index__app-download-links {
    flex-direction: column;
    gap: 15px;
  }
  .page-index__btn--app {
    width: 80%;
    margin: 0 auto;
  }
  .page-index__section-title {
    font-size: 1.8em;
  }
  .page-index__cta-title,
  .page-index__final-cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-index__hero-title {
    font-size: 1.8em;
  }
  .page-index__hero-description {
    font-size: 0.9em;
  }
  .page-index__section-title {
    font-size: 1.5em;
  }
  .page-index__cta-title,
  .page-index__final-cta-title {
    font-size: 1.7em;
  }
  .page-index__btn {
    width: 90%;
    font-size: 0.9em;
  }
  .page-index__feature-item, .page-index__game-item, .page-index__promo-item, .page-index__detail-item {
    padding: 20px;
  }
  .page-index__feature-title, .page-index__game-title, .page-index__promo-title, .page-index__detail-title {
    font-size: 1.2em;
  }
  .page-index__faq-question {
    font-size: 1.1em;
  }
}