.page-index {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0F1D36; /* Slightly lighter dark blue for overall background */
}

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

.page-index-section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-section-subtitle {
  font-size: 1.2em;
  color: #B0B0B0; /* Lighter gray for subtitles */
  text-align: center;
  margin-bottom: 40px;
}

.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;
  text-align: center;
  white-space: nowrap;
}

.page-index-btn-primary {
  background-color: #FFD700; /* Gold */
  color: #1A2B4C; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-index-btn-primary:hover {
  background-color: #e6c200; /* Slightly darker gold */
  color: #0F1D36; /* Even darker blue */
}

.page-index-btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-index-btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
}

.page-index-btn-tertiary {
  background-color: #1A2B4C; /* Dark blue */
  color: #FFD700; /* Gold */
  border: 2px solid #1A2B4C;
}

.page-index-btn-tertiary:hover {
  background-color: #0F1D36; /* Even darker blue */
  border-color: #0F1D36;
  color: #FFD700;
}

.page-index-btn-small {
  padding: 8px 15px;
  font-size: 0.9em;
}

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

.page-index-btn-link {
  color: #FFD700;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  font-weight: normal;
}

.page-index-btn-link:hover {
  color: #e6c200;
}

/* Hero Section */
.page-index-hero-section {
  background: linear-gradient(135deg, #1A2B4C 0%, #0F1D36 100%); /* Dark blue gradient */
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.page-index-hero-section .page-index-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.page-index-hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

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

.page-index-hero-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-index-hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-index-hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* About Section */
.page-index-about-section {
  padding: 80px 0;
  background-color: #1A2B4C; /* Main dark blue */
}

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

.page-index-about-content {
  flex: 1;
  min-width: 300px;
}

.page-index-about-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #E0E0E0;
}

.page-index-about-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.page-index-about-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Promotions Section */
.page-index-promotions-section {
  padding: 80px 0;
  background-color: #0F1D36;
}

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

.page-index-promotion-card {
  background-color: #1A2B4C;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-index-promotion-card:hover {
  transform: translateY(-5px);
}

.page-index-promotion-image {
  max-width: 100%;  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-index-promotion-description {
  color: #B0B0B0;
  margin-bottom: 20px;
  line-height: 1.6;
}

.page-index-view-all-promos {
  text-align: center;
}

/* Games Section */
.page-index-games-section {
  padding: 80px 0;
  background-color: #1A2B4C;
}

.page-index-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-index-game-card {
  background-color: #0F1D36;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-index-game-card:hover {
  transform: translateY(-5px);
}

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

.page-index-game-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 8px;
}

.page-index-game-description {
  color: #B0B0B0;
  margin-bottom: 15px;
  line-height: 1.5;
}

.page-index-view-all-games {
  text-align: center;
}

/* Quick Access Section */
.page-index-quick-access-section {
  padding: 80px 0;
  background-color: #0F1D36;
}

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

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

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

.page-index-access-item p {
  color: #B0B0B0;
  margin-bottom: 25px;
  line-height: 1.6;
}

.page-index-access-download .page-index-qr-code {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  border: 5px solid #FFD700;
  border-radius: 5px;
}

/* Why Choose Section */
.page-index-why-choose-section {
  padding: 80px 0;
  background-color: #1A2B4C;
}

.page-index-why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-index-why-choose-item {
  background-color: #0F1D36;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-why-choose-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Make icons golden */
}

.page-index-why-choose-item h3 {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-why-choose-item p {
  color: #B0B0B0;
  line-height: 1.6;
}

/* Detail Pages Section */
.page-index-detail-pages-section {
  padding: 80px 0;
  background-color: #0F1D36;
}

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

.page-index-detail-item {
  background-color: #1A2B4C;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-detail-item h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-index-detail-item h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-detail-item h3 a:hover {
  color: #e6c200;
}

.page-index-detail-item p {
  color: #B0B0B0;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* CTA Section */
.page-index-cta-section {
  background: linear-gradient(90deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
  padding: 60px 0;
  text-align: center;
  color: #1A2B4C; /* Dark blue for text on gold background */
}

.page-index-cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #1A2B4C;
}

.page-index-cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #1A2B4C;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-cta-section .page-index-btn-primary {
  background-color: #1A2B4C;
  color: #FFD700;
  border-color: #1A2B4C;
}

.page-index-cta-section .page-index-btn-primary:hover {
  background-color: #0F1D36;
  border-color: #0F1D36;
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-hero-section .page-index-container {
    flex-direction: column;
    text-align: center;
  }

  .page-index-hero-content, .page-index-hero-image-wrapper {
    max-width: 100%;
  }

  .page-index-hero-image {
    margin-top: 40px;
  }

  .page-index-about-grid {
    flex-direction: column;
  }

  .page-index-about-image {
    margin-top: 30px;
  }

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

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

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

@media (max-width: 768px) {
  .page-index-hero-section {
    padding: 60px 0;
  }

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

  .page-index-hero-description {
    font-size: 1em;
  }

  .page-index-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-index-btn {
    width: 80%;
    max-width: 250px;
  }

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

  .page-index-section-subtitle {
    font-size: 1em;
  }

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

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

@media (max-width: 480px) {
  .page-index-container {
    padding: 0 15px;
  }

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

  .page-index-section-title {
    font-size: 1.5em;
  }

  .page-index-cta-title {
    font-size: 1.5em;
  }

  .page-index-btn {
    width: 90%;
    padding: 10px 20px;
  }
}