/* style/resources-spin-ph-6-game-guide.css */
.page-resources-spin-ph-6-game-guide {
  color: #ffffff; /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

@media (max-width: 768px) {
  .page-resources-spin-ph-6-game-guide {
    overflow-x: hidden; /* Prevent horizontal scrolling on mobile */
  }
}

.page-resources-spin-ph-6-game-guide__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: 40px;
}

.page-resources-spin-ph-6-game-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-resources-spin-ph-6-game-guide__hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  padding: 20px;
  box-sizing: border-box;
}

.page-resources-spin-ph-6-game-guide__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-spin-ph-6-game-guide__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-resources-spin-ph-6-game-guide__hero-buttons {
  display: flex;
  gap: 20px;
}

.page-resources-spin-ph-6-game-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-resources-spin-ph-6-game-guide__button--primary {
  background-color: #FFD700;
  color: #0A1931;
}

.page-resources-spin-ph-6-game-guide__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-spin-ph-6-game-guide__button--secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-spin-ph-6-game-guide__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.page-resources-spin-ph-6-game-guide__button--link {
  background: none;
  color: #FFD700;
  padding: 0;
  border-radius: 0;
  text-decoration: underline;
  font-size: 1em;
}

.page-resources-spin-ph-6-game-guide__button--link:hover {
  color: #e6c200;
  transform: none;
}

.page-resources-spin-ph-6-game-guide__content-area {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Slightly lighter background for content */
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.page-resources-spin-ph-6-game-guide__table-of-contents {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 5px;
}

.page-resources-spin-ph-6-game-guide__toc-title {
  color: #FFD700;
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-resources-spin-ph-6-game-guide__toc-list {
  list-style: none;
  padding: 0;
}

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

.page-resources-spin-ph-6-game-guide__toc-link {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-spin-ph-6-game-guide__toc-link:hover {
  color: #FFD700;
}

.page-resources-spin-ph-6-game-guide__article {
  padding: 20px 0;
}

.page-resources-spin-ph-6-game-guide__section {
  margin-bottom: 50px;
}

.page-resources-spin-ph-6-game-guide__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-resources-spin-ph-6-game-guide__subsection-title {
  font-size: 1.8em;
  color: #f0f0f0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-spin-ph-6-game-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 1.5em;
  color: #e0e0e0;
}

.page-resources-spin-ph-6-game-guide__image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-spin-ph-6-game-guide__faq-container {
  margin-top: 30px;
}

.page-resources-spin-ph-6-game-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-resources-spin-ph-6-game-guide__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-resources-spin-ph-6-game-guide__faq-answer {
  font-size: 1em;
  color: #e0e0e0;
  display: none; /* Hidden by default, toggled by JS */
}

.page-resources-spin-ph-6-game-guide__faq-item.active .page-resources-spin-ph-6-game-guide__faq-answer {
  display: block;
}

.page-resources-spin-ph-6-game-guide__related-resources {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
}

.page-resources-spin-ph-6-game-guide__related-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 30px;
}

.page-resources-spin-ph-6-game-guide__related-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.page-resources-spin-ph-6-game-guide__related-list li {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  padding: 10px 15px;
  transition: background-color 0.3s ease;
}

.page-resources-spin-ph-6-game-guide__related-list li:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-resources-spin-ph-6-game-guide__related-link {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-spin-ph-6-game-guide__related-link:hover {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-spin-ph-6-game-guide__hero-title {
    font-size: 3em;
  }
  .page-resources-spin-ph-6-game-guide__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-spin-ph-6-game-guide__hero-title {
    font-size: 2.2em;
  }
  .page-resources-spin-ph-6-game-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-spin-ph-6-game-guide__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-spin-ph-6-game-guide__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-resources-spin-ph-6-game-guide__content-area {
    padding: 15px;
  }
  .page-resources-spin-ph-6-game-guide__section-title {
    font-size: 2em;
  }
  .page-resources-spin-ph-6-game-guide__subsection-title {
    font-size: 1.5em;
  }
  .page-resources-spin-ph-6-game-guide__paragraph {
    font-size: 0.95em;
  }
  .page-resources-spin-ph-6-game-guide__image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and do not overflow */
  }
  .page-resources-spin-ph-6-game-guide__related-list {
    flex-direction: column;
  }
  /* Content area images must not be smaller than 200px */
  .page-resources-spin-ph-6-game-guide img {
    max-width: 100%;
    min-width: 200px;
    min-height: 200px;
    height: auto; 
  }
}

@media (max-width: 480px) {
  .page-resources-spin-ph-6-game-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-spin-ph-6-game-guide__hero-description {
    font-size: 0.9em;
  }
  .page-resources-spin-ph-6-game-guide__hero-content {
    padding: 15px;
  }
  .page-resources-spin-ph-6-game-guide__button {
    font-size: 1em;
  }
  .page-resources-spin-ph-6-game-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-spin-ph-6-game-guide__subsection-title {
    font-size: 1.3em;
  }
  .page-resources-spin-ph-6-game-guide__toc-title {
    font-size: 1.5em;
  }
  .page-resources-spin-ph-6-game-guide__toc-link {
    font-size: 1em;
  }
  .page-resources-spin-ph-6-game-guide__faq-question {
    font-size: 1.1em;
  }
  .page-resources-spin-ph-6-game-guide__related-title {
    font-size: 1.8em;
  }
}