.page-blog-game-guides {
  color: #333333; /* Dark text for light 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__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.page-blog-game-guides__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-align: center;
}

.page-blog-game-guides__hero-image {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.6); /* Darken image for text readability, not changing color */
}

.page-blog-game-guides__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  padding: 20px;
  z-index: 1;
}

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

.page-blog-game-guides__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

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

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

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

.page-blog-game-guides__button--register:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

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

.page-blog-game-guides__button--login:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.page-blog-game-guides__content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

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

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

.page-blog-game-guides__featured-guides, .page-blog-game-guides__advanced-tips, .page-blog-game-guides__responsible-gaming, .page-blog-game-guides__cta-section {
  padding: 60px 0;
}

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

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

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

.page-blog-game-guides__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.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.4em;
  margin-bottom: 15px;
  color: #000000;
  min-height: 60px; /* Ensure consistent height for titles */
}

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

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

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

.page-blog-game-guides__card-link {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.page-blog-game-guides__card-link:hover {
  color: #000000;
}

.page-blog-game-guides__view-all-button {
  text-align: center;
  margin-top: 50px;
}

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

.page-blog-game-guides__tip-item {
  display: flex;
  align-items: flex-start;
  background-color: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: transform 0.3s ease;
}

.page-blog-game-guides__tip-item:hover {
  transform: translateY(-5px);
}

.page-blog-game-guides__tip-image {
  width: 100px;
  height: 100px;
  min-width: 100px; /* Ensure image doesn't shrink */
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
}

.page-blog-game-guides__tip-content {
  flex-grow: 1;
}

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

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

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

.page-blog-game-guides__tip-excerpt {
  font-size: 0.9em;
  color: #555555;
}

.page-blog-game-guides__call-to-action {
  text-align: center;
  margin-top: 40px;
}

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

.page-blog-game-guides__button--responsible:hover {
  background-color: #FCBC45;
  border-color: #FCBC45;
  color: #000000;
}

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

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

.page-blog-game-guides__button--download:hover {
  background-color: #FCBC45;
  border-color: #FCBC45;
  color: #000000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-game-guides__hero-title {
    font-size: 2.8em;
  }
  .page-blog-game-guides__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-blog-game-guides {
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  }
  .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: 80%;
    max-width: 300px;
  }
  .page-blog-game-guides__section-title {
    font-size: 2em;
  }
  .page-blog-game-guides__guide-grid, .page-blog-game-guides__tip-list {
    grid-template-columns: 1fr;
  }
  .page-blog-game-guides__tip-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-blog-game-guides__tip-image {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-blog-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-game-guides__content-wrapper img {
    max-width: 100%;
    height: auto;
  }
  /* Content area images must not cause horizontal scroll */
  .page-blog-game-guides img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure no image in content area is smaller than 200px display size */
  .page-blog-game-guides__guide-card img,
  .page-blog-game-guides__tip-item img {
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px;
    width: 100%; /* Allow larger images to scale down */
    height: auto;
  }
}

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