.page-blog-game-guides {
  color: #333333; /* Dark text for light 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 */
}

.page-blog-game-guides__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px; /* Minimum height for hero section */
  background-color: #000000; /* Fallback background */
}

.page-blog-game-guides__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7; /* Slightly dim the background image for text readability */
}

.page-blog-game-guides__hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF; /* Light text for dark/dimmed background */
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for better text contrast */
  border-radius: 10px;
}

.page-blog-game-guides__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Login button color for emphasis */
}

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

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

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

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

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

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

.page-blog-game-guides__button--download {
  background-color: #000000; /* Main color for download */
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

.page-blog-game-guides__button--download:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
}

.page-blog-game-guides__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF; /* Light background for content */
}

.page-blog-game-guides__article {
  margin-bottom: 40px;
}

.page-blog-game-guides__section-title {
  font-size: 2.5em;
  color: #000000; /* Main color for titles */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-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-blog-game-guides__text-block {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #333333;
  text-align: justify;
}

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

.page-blog-game-guides__game-card {
  background-color: #f8f8f8; /* Slightly off-white for cards */
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog-game-guides__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.page-blog-game-guides__game-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.page-blog-game-guides__game-card-title {
  font-size: 1.6em;
  color: #000000;
  margin: 20px 15px 10px;
  min-height: 60px; /* Ensure consistent height for titles */
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-blog-game-guides__game-card-title a:hover {
  color: #FCBC45;
}

.page-blog-game-guides__game-card-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-blog-game-guides__game-card-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

.page-blog-game-guides__game-card-button:hover {
  background-color: #e0a53b;
}

.page-blog-game-guides__list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-blog-game-guides__list-item {
  background-color: #f8f8f8;
  border-left: 5px solid #FCBC45;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #333333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-blog-game-guides__list-item strong {
  color: #000000;
}

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

.page-blog-game-guides__feature-item {
  background-color: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-game-guides__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.page-blog-game-guides__feature-image {
  width: 100%;
  height: auto;
  max-width: 300px; /* Constrain image size within feature item */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

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

.page-blog-game-guides__feature-description {
  font-size: 1em;
  color: #555555;
  text-align: justify;
}

.page-blog-game-guides__faq-section {
  margin-top: 50px;
}

.page-blog-game-guides__faq-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-blog-game-guides__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-game-guides__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.5;
}

.page-blog-game-guides__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

.page-blog-game-guides__faq-answer a:hover {
  text-decoration: underline;
}

.page-blog-game-guides__cta-section {
  background-color: #000000; /* Main color for CTA background */
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
}

.page-blog-game-guides__cta-title {
  font-size: 3em;
  color: #FCBC45; /* Login button color for emphasis */
  margin-bottom: 20px;
}

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

.page-blog-game-guides__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-game-guides__hero-title {
    font-size: 2.8em;
  }
  .page-blog-game-guides__section-title {
    font-size: 2em;
  }
  .page-blog-game-guides__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-blog-game-guides__hero-title {
    font-size: 2.2em;
  }
  .page-blog-game-guides__hero-description {
    font-size: 1em;
  }
  .page-blog-game-guides__hero-button,
  .page-blog-game-guides__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-game-guides__content-area {
    padding: 40px 15px;
  }
  .page-blog-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-blog-game-guides__text-block,
  .page-blog-game-guides__list-item,
  .page-blog-game-guides__feature-description,
  .page-blog-game-guides__faq-answer {
    font-size: 0.95em;
  }
  .page-blog-game-guides__game-card-image,
  .page-blog-game-guides__feature-image {
    max-width: 100%;
    height: auto; /* Ensure images scale down */
    min-width: 200px; /* Maintain minimum width */
    min-height: 200px; /* Maintain minimum height */
  }
  /* Mobile content image constraint for max-width and height */
  .page-blog-game-guides img {
    max-width: 100%;
    height: auto;
  }
  .page-blog-game-guides__cta-title {
    font-size: 2em;
  }
  .page-blog-game-guides__cta-description {
    font-size: 1em;
  }
  .page-blog-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-game-guides__button {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-blog-game-guides__hero-title {
    font-size: 1.8em;
  }
  .page-blog-game-guides__hero-content {
    padding: 20px 15px;
  }
  .page-blog-game-guides__section-title {
    font-size: 1.5em;
  }
  .page-blog-game-guides__game-card-title {
    font-size: 1.3em;
  }
  .page-blog-game-guides__feature-title {
    font-size: 1.2em;
  }
  .page-blog-game-guides__faq-question {
    font-size: 1.1em;
  }
  .page-blog-game-guides__cta-title {
    font-size: 1.8em;
  }
}