.page-game-guides {
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-game-guides__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  color: #FFFFFF;
  text-align: center;
  padding: 40px 0;
}

.page-game-guides__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-game-guides__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for readability */
  border-radius: 10px;
}

.page-game-guides__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-guides__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

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

.page-game-guides__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;
  white-space: nowrap;
}

.page-game-guides__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-game-guides__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-game-guides__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-game-guides__button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-game-guides__introduction, .page-game-guides__featured-guides, .page-game-guides__why-choose, .page-game-guides__general-tips, .page-game-guides__call-to-action, .page-game-guides__faq {
  padding: 60px 0;
}

.page-game-guides__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-guides__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-game-guides__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #333333;
}

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

.page-game-guides__guide-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-game-guides__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-game-guides__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-game-guides__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #000000;
  line-height: 1.3;
}

.page-game-guides__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-game-guides__card-title a:hover {
  color: #FCBC45;
}

.page-game-guides__card-description {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-guides__button--details {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: auto; /* Push button to bottom */
}

.page-game-guides__button--details:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-game-guides__why-choose {
  background-color: #f8f8f8;
}

.page-game-guides__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-game-guides__benefit-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.page-game-guides__benefit-item:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.page-game-guides__benefit-heading {
  font-size: 1.4em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-game-guides__benefit-text {
  font-size: 1em;
  color: #555555;
}

.page-game-guides__general-tips {
  padding: 60px 0;
}

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

.page-game-guides__tip-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-game-guides__tip-heading {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 15px;
}

.page-game-guides__tip-text {
  font-size: 1em;
  color: #555555;
}

.page-game-guides__sub-heading {
  font-size: 2em;
  color: #000000;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}

.page-game-guides__call-to-action {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-game-guides__cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-game-guides__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-guides__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.page-game-guides__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-game-guides__faq {
  padding: 60px 0;
}

.page-game-guides__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  transition: box-shadow 0.3s ease;
}

.page-game-guides__faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-game-guides__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-game-guides__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-game-guides__faq-question.active + .page-game-guides__faq-answer {
  display: block;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-game-guides__hero-title {
    font-size: 2.8em;
  }
  .page-game-guides__section-title {
    font-size: 2.2em;
  }
  .page-game-guides__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero-section {
    min-height: 400px;
    padding: 30px 0;
  }
  .page-game-guides__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides__hero-description {
    font-size: 1em;
  }
  .page-game-guides__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-guides__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-game-guides__section-title {
    font-size: 2em;
  }
  .page-game-guides__guide-list {
    grid-template-columns: 1fr;
  }
  .page-game-guides__benefits-list,
  .page-game-guides__tips-grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides__cta-title {
    font-size: 2em;
  }
  .page-game-guides__cta-description {
    font-size: 1em;
  }
  .page-game-guides__button--large {
    width: 90%;
  }
  /* Mobile content area image responsiveness */
  .page-game-guides img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-game-guides__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-game-guides__cta-title {
    font-size: 1.8em;
  }
  .page-game-guides__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}