/* style/blog-82vn-official-popular-games.css */

/* Custom Colors */
:root {
  --82vn-primary-color: #11A84E;
  --82vn-secondary-color: #22C768;
  --82vn-button-gradient-start: #2AD16F;
  --82vn-button-gradient-end: #13994A;
  --82vn-card-bg: #11271B;
  --82vn-background-color: #08160F;
  --82vn-text-main: #F2FFF6;
  --82vn-text-secondary: #A7D9B8;
  --82vn-border-color: #2E7A4E;
  --82vn-glow-color: #57E38D;
  --82vn-gold-color: #F2C14E;
  --82vn-divider-color: #1E3A2A;
  --82vn-deep-green: #0A4B2C;
}

/* Base styles for the page */
.page-blog-82vn-official-popular-games {
  background-color: var(--82vn-background-color); /* Dark background */
  color: var(--82vn-text-main); /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-82vn-official-popular-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-82vn-official-popular-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-82vn-official-popular-games__section-title {
  font-size: 2.8em;
  color: var(--82vn-gold-color); /* Gold color for main titles */
  margin-bottom: 30px;
  line-height: 1.2;
  font-weight: bold;
}

.page-blog-82vn-official-popular-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--82vn-primary-color), var(--82vn-secondary-color));
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-82vn-official-popular-games__text-block {
  font-size: 1.1em;
  color: var(--82vn-text-secondary); /* Secondary text color */
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-blog-82vn-official-popular-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
  min-height: 600px;
}

.page-blog-82vn-official-popular-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-82vn-official-popular-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text block */
  border-radius: 10px;
  margin-top: 50px; /* Space from top */
}

.page-blog-82vn-official-popular-games__main-title {
  color: var(--82vn-gold-color); /* Gold color for H1 */
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-blog-82vn-official-popular-games__hero-description {
  color: var(--82vn-text-main); /* Light text */
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-blog-82vn-official-popular-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-82vn-official-popular-games__btn-primary,
.page-blog-82vn-official-popular-games__btn-secondary,
.page-blog-82vn-official-popular-games__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}