:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-color: #EA7C07;
  --black-color: #000000;
  --text-dark: #333333; /* Default text color for light backgrounds */
  --text-light: #ffffff; /* Default text color for dark backgrounds */
  --background-light: #f9f9f9; /* Light background for sections/cards */
  --border-color: #e0e0e0;
}

/* Base styles for the page content */
.page-resources-future-trends-reliable-game-portal {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for the page, assuming light body background */
  background-color: var(--secondary-color); /* Default background, or specific section backgrounds */
}

/* Ensure content is not covered by fixed header */
.page-resources-future-trends-reliable-game-portal__hero-section {
  padding-top: var(--header-offset, 120px); /* Apply header offset to the first section */
}

/* Container for main content width */
.page-resources-future-trends-reliable-game-portal__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-future-trends-reliable-game-portal__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px; /* Adjust padding-top with var(--header-offset) */
  background: linear-gradient(135deg, var(--primary-color), #4CAF50); /* Gradient background for visual appeal */
  color: var(--text-light); /* White text on dark/gradient background */
  overflow: hidden;
}

.page-resources-future-trends-reliable-game-portal__hero-image {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-resources-future-trends-reliable-game-portal__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  /* filter: brightness(0.8); removed as per instructions */
}

.page-resources-future-trends-reliable-game-portal__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-future-trends-reliable-game-portal__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-future-trends-reliable-game-portal__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-resources-future-trends-reliable-game-portal__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--login-color); /* Use login color for CTA for prominence */
  color: var(--text-light);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-resources-future-trends-reliable-game-portal__cta-button:hover {
  background: #CC6A00; /* Darker shade of login color */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-resources-future-trends-reliable-game-portal__section {
  padding: 60px 0;
  background-color: var(--secondary-color); /* Default light background */
}

.page-resources-future-trends-reliable-game-portal__section--intro {
  background-color: var(--background-light);
}

.page-resources-future-trends-reliable-game-portal__section--trends {
  background-color: #f0f8ff; /* A slightly different light blue for contrast */
}

.page-resources-future-trends-reliable-game-portal__section--ux {
  background-color: var(--secondary-color);
}

.page-resources-future-trends-reliable-game-portal__section--responsibility {
  background-color: #f0f8ff;
}

.page-resources-future-trends-reliable-game-portal__section--games {
  background-color: var(--secondary-color);
}

.page-resources-future-trends-reliable-game-portal__section--faq {
  background-color: var(--background-light);
}

.page-resources-future-trends-reliable-game-portal__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-resources-future-trends-reliable-game-portal__section-title--white {
  color: var(--text-light);
}

.page-resources-future-trends-reliable-game-portal__paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: justify;
  color: var(--text-dark);
}

.page-resources-future-trends-reliable-game-portal__paragraph--white {
  color: var(--text-light);
}

.page-resources-future-trends-reliable-game-portal__highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.page-resources-future-trends-reliable-game-portal__dark-bg {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-future-trends-reliable-game-portal__light-bg {
  background: var(--secondary-color);
  color: var(--text-dark);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
}

.page-resources-future-trends-reliable-game-portal__center-content {
  text-align: center;
}

/* Image wrappers */
.page-resources-future-trends-reliable-game-portal__image-wrapper {
  margin: 40px auto;
  max-width: 900px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-future-trends-reliable-game-portal__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Trend Grid */
.page-resources-future-trends-reliable-game-portal__trend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-future-trends-reliable-game-portal__trend-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.page-resources-future-trends-reliable-game-portal__trend-item img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-resources-future-trends-reliable-game-portal__trend-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.page-resources-future-trends-reliable-game-portal__trend-item.page-resources-future-trends-reliable-game-portal__dark-bg .page-resources-future-trends-reliable-game-portal__trend-title {
  color: var(--text-light);
}

.page-resources-future-trends-reliable-game-portal__trend-item.page-resources-future-trends-reliable-game-portal__light-bg .page-resources-future-trends-reliable-game-portal__trend-title {
  color: var(--primary-color);
}


.page-resources-future-trends-reliable-game-portal__trend-description {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Feature List (for UX section) */
.page-resources-future-trends-reliable-game-portal__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-resources-future-trends-reliable-game-portal__feature-item {
  background: var(--background-light);
  border-left: 5px solid var(--primary-color);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-future-trends-reliable-game-portal__feature-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-resources-future-trends-reliable-game-portal__feature-description {
  font-size: 1em;
  line-height: 1.6;
}

/* Responsibility Grid */
.page-resources-future-trends-reliable-game-portal__responsibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}