/* style/resources-jili88ph-game-guide.css */

.page-resources-jili88ph-game-guide {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background from shared.css */
  padding-top: var(--header-offset, 120px); /* Space for fixed header */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-resources-jili88ph-game-guide__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(255, 215, 0, 0.2) 100%);
  border-bottom: 2px solid #FFD700;
}

.page-resources-jili88ph-game-guide__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
}

.page-resources-jili88ph-game-guide__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.page-resources-jili88ph-game-guide__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-jili88ph-game-guide__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-jili88ph-game-guide__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.page-resources-jili88ph-game-guide__button--primary {
  background-color: #FFD700;
  color: #000000;
  border: none;
}

.page-resources-jili88ph-game-guide__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-resources-jili88ph-game-guide__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-jili88ph-game-guide__button--secondary:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-resources-jili88ph-game-guide__hero-image {
  width: 100%;
  max-width: 1000px; /* Constrain hero image width */
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-jili88ph-game-guide__hero-image img {
  width: 100%;
  height: auto; /* Ensure aspect ratio is maintained */
  display: block;
  object-fit: cover;
}

.page-resources-jili88ph-game-guide__content-area {
  max-width: 800px; /* Content width for readability */
  margin: 0 auto;
  padding: 60px 20px;
}

.page-resources-jili88ph-game-guide__article-wrapper {
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black for content background */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-jili88ph-game-guide__introduction {
  font-size: 1.15em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-resources-jili88ph-game-guide__article-heading {
  font-size: 2.2em;
  color: #FFD700;
  margin-top: 50px;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.5);
  padding-bottom: 10px;
}

.page-resources-jili88ph-game-guide__sub-heading {
  font-size: 1.7em;
  color: #FFD700;
  margin-top: 35px;
  margin-bottom: 20px;
}

.page-resources-jili88ph-game-guide__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #cccccc;
}

.page-resources-jili88ph-game-guide__list,
.page-resources-jili88ph-game-guide__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #cccccc;
}

.page-resources-jili88ph-game-guide__ordered-list {
  list-style-type: decimal;
}

.page-resources-jili88ph-game-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-jili88ph-game-guide__nested-list {
  list-style-type: circle;
  margin-left: 20px;
  margin-top: 5px;
}

.page-resources-jili88ph-game-guide__article-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 800px; /* Ensure content images are not too small */
  min-width: 200px; /* Enforce minimum size */
}

.page-resources-jili88ph-game-guide__cta-section {
  background-color: rgba(255, 215, 0, 0.1);
  border: 1px solid #FFD700;
  padding: 40px;
  margin-top: 60px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.page-resources-jili88ph-game-guide__cta-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-jili88ph-game-guide__cta-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-jili88ph-game-guide__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-jili88ph-game-guide__button--tertiary {
  background-color: #000000;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-jili88ph-game-guide__button--tertiary:hover {
  background-color: #333333;
  color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-resources-jili88ph-game-guide__return-link {
  text-align: center;
  margin-top: 60px;
}

.page-resources-jili88ph-game-guide__back-button {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  padding: 10px 20px;
  border: 1px solid #FFD700;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-jili88ph-game-guide__back-button:hover {
  background-color: #FFD700;
  color: #000000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-jili88ph-game-guide__hero-title {
    font-size: 2.8em;
  }
  .page-resources-jili88ph-game-guide__article-heading {
    font-size: 2em;
  }
  .page-resources-jili88ph-game-guide__sub-heading {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-resources-jili88ph-game-guide__hero-section {
    padding: 60px 15px 30px;
  }
  .page-resources-jili88ph-game-guide__hero-title {
    font-size: 2.2em;
  }
  .page-resources-jili88ph-game-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-jili88ph-game-guide__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-jili88ph-game-guide__button {
    width: 100%;
    max-width: 300px; /* Constrain button width on mobile */
  }
  .page-resources-jili88ph-game-guide__content-area {
    padding: 30px 15px;
  }
  .page-resources-jili88ph-game-guide__article-wrapper {
    padding: 25px;
  }
  .page-resources-jili88ph-game-guide__article-heading {
    font-size: 1.8em;
  }
  .page-resources-jili88ph-game-guide__sub-heading {
    font-size: 1.3em;
  }
  .page-resources-jili88ph-game-guide__paragraph,
  .page-resources-jili88ph-game-guide__list-item {
    font-size: 0.95em;
  }
  .page-resources-jili88ph-game-guide__article-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
  }
  .page-resources-jili88ph-game-guide__cta-title {
    font-size: 1.8em;
  }
  .page-resources-jili88ph-game-guide__cta-description {
    font-size: 1em;
  }
  .page-resources-jili88ph-game-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  /* Ensure content area images do not overflow */
  .page-resources-jili88ph-game-guide img {
    max-width: 100%;
    height: auto;
  }
  .page-resources-jili88ph-game-guide {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-resources-jili88ph-game-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-jili88ph-game-guide__article-heading {
    font-size: 1.6em;
  }
  .page-resources-jili88ph-game-guide__sub-heading {
    font-size: 1.2em;
  }
}