:root {
  --primary-color: #003366;
  --secondary-color: #FFD700;
  --dark-bg-1: #0d0d0d; /* Assuming a dark background from shared.css */
  --light-text-color: #ffffff;
  --dark-text-color: #333333;
  --light-grey-bg: #f1f3f5;
  --medium-grey-border: #e4e4e4;
}

.page-news-latest-industry-trends {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--light-text-color); /* Default text color for dark body background */
  background-color: var(--dark-bg-1);
}

.page-news-latest-industry-trends a {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-news-latest-industry-trends a:hover {
  text-decoration: underline;
  color: #ffa500; /* Slightly darker gold on hover */
}

/* HERO Section */
.page-news-latest-industry-trends__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Desktop: Adjust based on fixed nav height */
  background: var(--primary-color);
  color: var(--light-text-color);
}

.page-news-latest-industry-trends__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-news-latest-industry-trends__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-news-latest-industry-trends__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-news-latest-industry-trends__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-news-latest-industry-trends__hero-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-news-latest-industry-trends__hero-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--light-text-color);
}

.page-news-latest-industry-trends__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42); /* Orange gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-news-latest-industry-trends__cta-button:hover {
  background: linear-gradient(135deg, #e65a2d, #e07b3d);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Game Leaderboard Section */
.page-news-latest-industry-trends__game-leaderboard-section {
  padding: 60px 20px;
  background: var(--light-grey-bg);
  color: var(--dark-text-color);
}