/* style/blog-latest-gaming-trends.css */

/* Root variables for colors (using custom palette) */
:root {
  --page-bg: #08160F;
  --card-bg: #11271B;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

/* Base styles for the page content, ensuring contrast with body background */
.page-blog-latest-gaming-trends {
  background-color: var(--page-bg); /* Custom background */
  color: var(--text-main); /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Section general styles */
.page-blog-latest-gaming-trends__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-latest-gaming-trends__section:last-of-type {
  border-bottom: none;
}

.page-blog-latest-gaming-trends__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-latest-gaming-trends__section-title {
  font-size: 2.5em;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  letter-spacing: -0.02em;
}

/* Hero Section */
.page-blog-latest-gaming-trends__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--page-bg);
  overflow: hidden;
}

.page-blog-latest-gaming-trends__hero-image-wrapper {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.page-blog-latest-gaming-trends__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce minimum display size */
  min-height: 200px;
}

.page-blog-latest-gaming-trends__hero-content-wrapper {
  position: relative;
  width: 100%;
  padding: 40px 20px 60px;
  text-align: center;
  z-index: 1;
}

.page-blog-latest-gaming-trends__hero-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  color: var(--gold-color); /* Gold color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5); /* Soft glow */
}

.page-blog-latest-gaming-trends__hero-description {
  font-size: 1.2em;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-blog-latest-gaming-trends__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-latest-gaming-trends__btn-primary,
.page-blog-latest-gaming-trends__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-latest-gaming-trends__btn-primary {
  background: var(--button-gradient);
  color: #ffffff; /* White text for contrast */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-latest-gaming-trends__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
  transform: translateY(-2px);
}

.page-blog-latest-gaming-trends__btn-secondary {
  background: transparent;
  color: var(--glow-color); /* Use glow color for secondary button text */
  border: 2px solid var(--glow-color);
  box-shadow: 0 0 10px rgba(87, 227, 141, 0.3);
}

.page-blog-latest-gaming-trends__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.5);
  transform: translateY(-2px);
}