/* style/resources-jili888-game-guide.css */
.page-resources-jili888-game-guide {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-jili888-game-guide__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #007bff; /* Main brand color for hero background */
  color: #ffffff;
  text-align: center;
  padding-bottom: 40px;
}

.page-resources-jili888-game-guide__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-resources-jili888-game-guide__hero-content {
  max-width: 800px;
}

.page-resources-jili888-game-guide__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffc107; /* Auxiliary color for emphasis */
}

.page-resources-jili888-game-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-jili888-game-guide__hero-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color for button */
  color: #007bff; /* Main brand color for text */
  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;
}

.page-resources-jili888-game-guide__hero-button:hover {
  background-color: #e0a800;
  color: #0056b3;
}

.page-resources-jili888-game-guide__hero-image {
  width: 100%;
  max-width: 1000px; /* Constrain hero image width */
}

.page-resources-jili888-game-guide__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-jili888-game-guide__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  gap: 30px;
}

.page-resources-jili888-game-guide__table-of-contents {
  flex: 0 0 250px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  align-self: flex-start;
  position: sticky;
  top: calc(var(--header-offset, 120px) + 20px); /* Sticky below header */
  max-height: calc(100vh - var(--header-offset, 120px) - 40px);
  overflow-y: auto;
}

.page-resources-jili888-game-guide__toc-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}

.page-resources-jili888-game-guide__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-jili888-game-guide__toc-list li {
  margin-bottom: 10px;
}

.page-resources-jili888-game-guide__toc-list a {
  text-decoration: none;
  color: #333333;
  font-size: 1em;
  transition: color 0.3s ease;
}

.page-resources-jili888-game-guide__toc-list a:hover {
  color: #007bff;
}

.page-resources-jili888-game-guide__article {
  flex-grow: 1;
  max-width: 700px; /* Content width for comfortable reading */
}

.page-resources-jili888-game-guide__article-heading {
  font-size: 2em;
  color: #007bff;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-resources-jili888-game-guide__article-subheading {
  font-size: 1.5em;
  color: #007bff;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-jili888-game-guide__article-paragraph {
  margin-bottom: 1em;
  font-size: 1.1em;
}

.page-resources-jili888-game-guide__article-figure {
  margin: 30px 0;
  text-align: center;
}

.page-resources-jili888-game-guide__article-figure img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Minimum image size */
  min-height: 200px;
}

.page-resources-jili888-game-guide__article-figcaption {
  font-style: italic;
  color: #666666;
  margin-top: 10px;
  font-size: 0.9em;
}

.page-resources-jili888-game-guide__article-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 1em;
}

.page-resources-jili888-game-guide__article-list li {
  margin-bottom: 0.5em;
}

.page-resources-jili888-game-guide__article-button {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-resources-jili888-game-guide__article-button:hover {
  background-color: #0056b3;
}

.page-resources-jili888-game-guide__call-to-action {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #f0f8ff; /* Light blue background */
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.page-resources-jili888-game-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-resources-jili888-game-guide__cta-button--primary {
  background-color: #ffc107;
  color: #007bff;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.page-resources-jili888-game-guide__cta-button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.6);
}

.page-resources-jili888-game-guide__cta-button--secondary {
  background-color: #007bff;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.page-resources-jili888-game-guide__cta-button--secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.6);
}

.page-resources-jili888-game-guide__back-link-wrapper {
  margin-top: 40px;
  text-align: center;
}

.page-resources-jili888-game-guide__back-link {
  display: inline-block;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-jili888-game-guide__back-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-jili888-game-guide__content-area {
    flex-direction: column;
    gap: 20px;
  }

  .page-resources-jili888-game-guide__table-of-contents {
    position: static;
    max-height: none;
    overflow-y: visible;
    flex: auto;
  }
}

@media (max-width: 768px) {
  .page-resources-jili888-game-guide__hero-title {
    font-size: 2em;
  }

  .page-resources-jili888-game-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-jili888-game-guide__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-jili888-game-guide__hero-container {
    flex-direction: column;
  }

  .page-resources-jili888-game-guide__content-area {
    padding: 20px 15px;
  }

  .page-resources-jili888-game-guide__article-heading {
    font-size: 1.8em;
  }

  .page-resources-jili888-game-guide__article-subheading {
    font-size: 1.3em;
  }

  .page-resources-jili888-game-guide__article-paragraph {
    font-size: 1em;
  }

  /* Mobile content images must not overflow */
  .page-resources-jili888-game-guide img {
    max-width: 100%;
    height: auto;
  }

  .page-resources-jili888-game-guide__article-figure img {
    min-width: 200px; /* Maintain minimum size for content images */
    min-height: 200px;
  }

  .page-resources-jili888-game-guide__call-to-action {
    padding: 30px 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-jili888-game-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-jili888-game-guide__hero-button {
    width: 100%;
    max-width: 250px;
  }
  .page-resources-jili888-game-guide__cta-button {
    width: 100%;
    max-width: 280px;
  }
}