.page-resources-zone-game-trends {
  color: #ffffff; /* Light text for dark body background */
  background-color: #121212; /* Inherited from body, ensuring contrast */
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

.page-resources-zone-game-trends__hero-section {
  position: relative;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding: 0; /* Remove default padding as content is overlaid */
}

.page-resources-zone-game-trends__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.5); /* Slightly darken image for text readability */
}

.page-resources-zone-game-trends__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1;
}

.page-resources-zone-game-trends__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-zone-game-trends__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-resources-zone-game-trends__hero-button {
  display: inline-block;
  background-color: #1E90FF; /* Deep blue auxiliary color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-zone-game-trends__hero-button:hover {
  background-color: #007bff; /* Darker blue on hover */
  transform: translateY(-2px);
}

.page-resources-zone-game-trends__content-area {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent background for readability */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.page-resources-zone-game-trends__back-link {
  display: inline-block;
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  margin-bottom: 30px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-zone-game-trends__back-link:hover {
  color: #fff;
}

.page-resources-zone-game-trends__article-heading {
  font-size: 2.2em;
  color: #FFD700; /* Gold for main article headings */
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-resources-zone-game-trends__article-subheading {
  font-size: 1.8em;
  color: #1E90FF; /* Deep blue for subheadings */
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-resources-zone-game-trends__article-paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-zone-game-trends__article-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-zone-game-trends__cta-section {
  background-color: rgba(30, 144, 255, 0.1); /* Light blue tint */
  padding: 40px;
  margin-top: 50px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.page-resources-zone-game-trends__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-resources-zone-game-trends__cta-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-resources-zone-game-trends__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #121212;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-zone-game-trends__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-resources-zone-game-trends__related-links {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-zone-game-trends__related-links-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-resources-zone-game-trends__related-links ul {
  list-style: none;
  padding: 0;
}

.page-resources-zone-game-trends__related-links li {
  margin-bottom: 10px;
}

.page-resources-zone-game-trends__related-links a {
  color: #1E90FF; /* Deep blue for related links */
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-zone-game-trends__related-links a:hover {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-zone-game-trends__hero-title {
    font-size: 3em;
  }
  .page-resources-zone-game-trends__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-zone-game-trends__hero-title {
    font-size: 2.5em;
  }
  .page-resources-zone-game-trends__hero-description {
    font-size: 1em;
  }
  .page-resources-zone-game-trends__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-zone-game-trends__content-area {
    margin: 20px auto;
    padding: 15px;
  }
  .page-resources-zone-game-trends__article-heading {
    font-size: 1.8em;
  }
  .page-resources-zone-game-trends__article-subheading {
    font-size: 1.5em;
  }
  .page-resources-zone-game-trends__article-paragraph {
    font-size: 1em;
    line-height: 1.6;
  }
  .page-resources-zone-game-trends__article-image {
    max-width: 100%;
    height: auto;
  }
  .page-resources-zone-game-trends__cta-title {
    font-size: 2em;
  }
  .page-resources-zone-game-trends__cta-description {
    font-size: 1.1em;
  }
  .page-resources-zone-game-trends__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Ensure content area images do not overflow */
  .page-resources-zone-game-trends img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources-zone-game-trends__hero-title {
    font-size: 2em;
  }
  .page-resources-zone-game-trends__hero-description {
    font-size: 0.9em;
  }
  .page-resources-zone-game-trends__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-resources-zone-game-trends__cta-title {
    font-size: 1.8em;
  }
  .page-resources-zone-game-trends__cta-description {
    font-size: 1em;
  }
  .page-resources-zone-game-trends__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}