/* style/index.css */
.page-index {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for body text on dark background */
  background-color: #000000; /* Main background color */
}

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

.page-index-highlight {
  color: #FFD700; /* Gold accent */
}

.page-index-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}

.page-index-btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #000000; /* Black text on gold */
  border: 2px solid #FFD700;
}

.page-index-btn-primary:hover {
  background-color: #b39700; /* Darker gold on hover */
  border-color: #b39700;
  color: #000000;
}

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

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

.page-index-btn-outline {
  background-color: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 10px 20px;
}

.page-index-btn-outline:hover {
  background-color: #FFD700;
  color: #000000;
}

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

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

.page-index-btn-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  /* No filter property to change image color */
}

.page-index-section-title {
  font-size: 2.5rem;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-index-section-subtitle {
  font-size: 1.2rem;
  color: #B0B0B0;
  text-align: center;
  margin-bottom: 50px;
}

.page-index-grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-index-image-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  /* No filter property to change image color */
}

/* Hero Section */
.page-index-hero {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-index-hero-container {
  position: relative;
  z-index: 2;
}

.page-index-hero-title {
  font-size: 3.5rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-hero-description {
  font-size: 1.3rem;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-hero-image-wrapper {
  position: absolute;
  bottom: -50px;
  right: -100px;
  opacity: 0.1;
  z-index: 1;
  width: 600px;
  height: auto;
  transform: rotate(15deg);
}

.page-index-hero-image {
  width: 100%;
  height: auto;
  /* No filter property to change image color */
}

/* About Section */
.page-index-about {
  padding: 80px 0;
  background-color: #111111;
}

.page-index-about-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #CCCCCC;
}

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

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

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

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

.page-index-game-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  /* No filter property to change image color */
}

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

.page-index-game-description {
  font-size: 1rem;
  color: #B0B0B0;
  margin-bottom: 20px;
  min-height: 70px; /* Ensure consistent height */
}

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

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

.page-index-promo-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-index-promo-card:hover {
  transform: translateY(-10px);
}

.page-index-promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  /* No filter property to change image color */
}

.page-index-promo-title {
  font-size: 1.4rem;
  color: #FFD700;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-index-promo-description {
  font-size: 1rem;
  color: #B0B0B0;
  margin-bottom: 20px;
  padding: 0 15px;
  min-height: 80px; /* Ensure consistent height */
}

.page-index-promo-card .page-index-btn {
  margin-bottom: 20px;
}

.page-index-promo-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 1rem;
  color: #CCCCCC;
}

/* App Download Section */
.page-index-app-download {
  padding: 80px 0;
  background-color: #000000;
}

.page-index-app-content h2 {
  margin-top: 0;
}

.page-index-app-content p {
  font-size: 1.1rem;
  color: #CCCCCC;
  margin-bottom: 20px;
}

.page-index-app-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-app-content ul li {
  background: url('[GALLERY:icon:check_mark,gold,okfun]') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #E0E0E0;
  font-size: 1.05rem;
}

.page-index-app-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

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

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

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

.page-index-why-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  /* No filter property to change image color */
}

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

.page-index-why-item p {
  font-size: 1rem;
  color: #B0B0B0;
}

/* Guides Section */
.page-index-guides {
  padding: 80px 0;
  background-color: #000000;
}

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

.page-index-guide-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-index-guide-card:hover {
  transform: translateY(-10px);
}

.page-index-guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  /* No filter property to change image color */
}

.page-index-guide-title {
  font-size: 1.4rem;
  color: #FFD700;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-index-guide-description {
  font-size: 1rem;
  color: #B0B0B0;
  margin-bottom: 20px;
  padding: 0 15px;
  min-height: 70px; /* Ensure consistent height */
}

.page-index-guide-card .page-index-btn {
  margin-bottom: 20px;
}

/* Call to Action Section */
.page-index-call-to-action {
  background-color: #FFD700;
  padding: 80px 0;
  text-align: center;
}

.page-index-cta-title {
  font-size: 2.8rem;
  color: #000000;
  margin-bottom: 20px;
}

.page-index-cta-description {
  font-size: 1.2rem;
  color: #333333;
  margin-bottom: 40px;
}

.page-index-call-to-action .page-index-btn-primary {
  background-color: #000000;
  color: #FFD700;
  border-color: #000000;
}

.page-index-call-to-action .page-index-btn-primary:hover {
  background-color: #333333;
  border-color: #333333;
  color: #FFD700;
}

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

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

.page-index-detail-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.page-index-detail-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.page-index-detail-title a {
  color: #FFD700;
  text-decoration: none;
}

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

.page-index-detail-description {
  font-size: 1rem;
  color: #B0B0B0;
  margin-bottom: 20px;
  min-height: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-grid-2-cols {
    grid-template-columns: 1fr;
  }

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

  .page-index-hero-description {
    font-size: 1.1rem;
  }

  .page-index-hero-image-wrapper {
    display: none;
  }

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

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

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

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

  .page-index-hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .page-index-btn-secondary {
    margin-left: 0;
  }

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

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

  .page-index-game-grid, .page-index-promo-grid, .page-index-why-grid, .page-index-guide-grid, .page-index-detail-grid {
    grid-template-columns: 1fr;
  }

  .page-index-cta-title {
    font-size: 2rem;
  }

  .page-index-cta-description {
    font-size: 1rem;
  }
}