.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 */
  background-color: #FFFFFF;
}

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

.page-blog-game-guides__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF; /* Light text for hero content overlay */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

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

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

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

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

.page-blog-game-guides__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 150px; /* Ensure buttons are not too small */
  text-align: center;
}

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

.page-blog-game-guides__button--register:hover {
  background-color: #f0f0f0;
}

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

.page-blog-game-guides__button--login:hover {
  background-color: #e0a53a;
}

.page-blog-game-guides__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 60px;
}

.page-blog-game-guides__section-subtitle {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
}

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

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

.page-blog-game-guides__guide-card:hover {
  transform: translateY(-10px);
}

.page-blog-game-guides__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block; /* Ensure no extra space below image */
}

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

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

.page-blog-game-guides__card-title a {
  color: #000000;
  text-decoration: none;
}

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

.page-blog-game-guides__card-description {
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-game-guides__card-link {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  margin-top: auto;
}

.page-blog-game-guides__card-link:hover {
  text-decoration: underline;
}

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

.page-blog-game-guides__article-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.page-blog-game-guides__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-blog-game-guides__article-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.page-blog-game-guides__article-title a {
  color: #000000;
  text-decoration: none;
}

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

.page-blog-game-guides__article-excerpt {
  color: #666666;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-blog-game-guides__article-read-more {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  margin-top: auto;
}

.page-blog-game-guides__article-read-more:hover {
  text-decoration: underline;
}

.page-blog-game-guides__why-choose-section {
  background-color: #f0f0f0;
  padding: 60px 0;
  text-align: center;
}

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

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

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

.page-blog-game-guides__feature-description {
  color: #666666;
}

.page-blog-game-guides__button--join {
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 40px;
  font-size: 1.1em;
}

.page-blog-game-guides__button--join:hover {
  background-color: #e0a53a;
}

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

.page-blog-game-guides__cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-blog-game-guides__cta-content {
  max-width: 700px;
}

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

.page-blog-game-guides__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
}

.page-blog-game-guides__button--win {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 50px;
  font-size: 1.2em;
  border-radius: 8px;
}

.page-blog-game-guides__button--win:hover {
  background-color: #e0a53a;
}

.page-blog-game-guides__cta-image {
  width: 100%; /* Default width for image */
  max-width: 600px; /* Max width for larger screens */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

/* 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 {
    padding-top: var(--header-offset, 120px);
  }
  .page-blog-game-guides__hero-title {
    font-size: 2.2em;
  }
  .page-blog-game-guides__hero-description {
    font-size: 1em;
  }
  .page-blog-game-guides__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-game-guides__button {
    width: 100%;
    max-width: 250px;
  }
  .page-blog-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-blog-game-guides__section-subtitle {
    font-size: 0.9em;
  }
  .page-blog-game-guides__grid, .page-blog-game-guides__articles-grid, .page-blog-game-guides__features-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-game-guides__card-image, .page-blog-game-guides__article-image {
    height: 200px;
  }
  .page-blog-game-guides__cta-title {
    font-size: 2em;
  }
  .page-blog-game-guides__cta-description {
    font-size: 1em;
  }
  .page-blog-game-guides__button--win {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Mobile content area images must not overflow */
  .page-blog-game-guides img {
    max-width: 100%;
    height: auto;
  }
  .page-blog-game-guides__cta-image {
    max-width: 100%;
  }
}