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

.page-game-guides__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.page-game-guides__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-game-guides__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Login color for emphasis */
  line-height: 1.2;
}

.page-game-guides__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides__hero-cta {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-guides__btn-register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
}

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

.page-game-guides__btn-login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

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

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

.page-game-guides__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background */
  display: block;
}

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

.page-game-guides__overview-section,
.page-game-guides__deep-dive-section,
.page-game-guides__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Light background for content sections */
}

.page-game-guides__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-guides__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

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

.page-game-guides__grid-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-game-guides__grid-item img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-game-guides__item-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-guides__item-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-game-guides__item-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-game-guides__read-more-btn {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-game-guides__read-more-btn:hover {
  background-color: #e0a53b;
}

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

.page-game-guides__feature-card {
  background-color: #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  padding: 25px;
  text-align: left;
}

.page-game-guides__feature-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-game-guides__card-title {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-guides__card-text {
  font-size: 0.95em;
  color: #555555;
}

.page-game-guides__subsection-title {
  font-size: 2em;
  color: #000000;
  margin-top: 50px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

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

.page-game-guides__text-content a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-game-guides__text-content a:hover {
  text-decoration: underline;
}

.page-game-guides__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-game-guides__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45;
  font-weight: bold;
}

.page-game-guides__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-game-guides__cta-buttons .page-game-guides__cta-btn {
  margin: 0 15px;
  padding: 18px 35px;
  font-size: 1.2em;
  border-radius: 8px;
}

/* Responsive adjustments */
@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.4em;
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    padding-bottom: 60px;
  }
  .page-game-guides__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides__hero-description {
    font-size: 1em;
  }
  .page-game-guides__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 5px;
  }
  .page-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-game-guides__section-intro {
    font-size: 0.95em;
  }
  .page-game-guides__grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides__subsection-title {
    font-size: 1.6em;
  }
  .page-game-guides__cta-title {
    font-size: 2em;
  }
  .page-game-guides__cta-buttons .page-game-guides__cta-btn {
    padding: 15px 30px;
    font-size: 1.1em;
    display: block;
    width: fit-content;
    margin: 15px auto;
  }
  /* Mobile anti-overflow for all images within content area */
  .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.6em;
  }
  .page-game-guides__subsection-title {
    font-size: 1.4em;
  }
  .page-game-guides__cta-title {
    font-size: 1.8em;
  }
  .page-game-guides__hero-cta {
    margin: 5px 0;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .page-game-guides__grid-item img, .page-game-guides__feature-card img {
    height: auto; /* Allow height to adjust naturally */
    max-height: 250px; /* Cap max height to avoid overly long images */
  }
}