.page-game-reviews-popular-games-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for main text on dark background */
  background-color: #1A202C;
}

.page-game-reviews-popular-games-analysis .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-reviews-popular-games-analysis .hero-section {
  background: linear-gradient(135deg, #1A202C, #3A404C); /* Dark gradient for hero */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #FFD700;
}

.page-game-reviews-popular-games-analysis .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-popular-games-analysis .hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-game-reviews-popular-games-analysis .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-game-reviews-popular-games-analysis .btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
  border: none;
}

.page-game-reviews-popular-games-analysis .btn-primary:hover {
  background-color: #E5C100; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-game-reviews-popular-games-analysis .btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-reviews-popular-games-analysis .btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
}

.page-game-reviews-popular-games-analysis .btn-final-cta {
  background-color: #FFD700;
  color: #1A202C;
  border: none;
  padding: 20px 40px;
  font-size: 1.3em;
  margin-top: 30px;
}

.page-game-reviews-popular-games-analysis .btn-final-cta:hover {
  background-color: #E5C100;
  transform: translateY(-5px) scale(1.02);
}

.page-game-reviews-popular-games-analysis .introduction-section,
.page-game-reviews-popular-games-analysis .why-popular-section,
.page-game-reviews-popular-games-analysis .game-analysis-section,
.page-game-reviews-popular-games-analysis .promotions-section,
.page-game-reviews-popular-games-analysis .strategy-tips-section,
.page-game-reviews-popular-games-analysis .safety-section,
.page-game-reviews-popular-games-analysis .future-trends-section,
.page-game-reviews-popular-games-analysis .conclusion-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-game-reviews-popular-games-analysis .section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-reviews-popular-games-analysis .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-game-reviews-popular-games-analysis p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #C0C0C0;
}

.page-game-reviews-popular-games-analysis .highlight-text {
  color: #FFD700;
  font-weight: bold;
}

.page-game-reviews-popular-games-analysis .content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-popular-games-analysis .feature-grid, .page-game-reviews-popular-games-analysis .promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews-popular-games-analysis .feature-item,
.page-game-reviews-popular-games-analysis .promo-item {
  background-color: #2A303C; /* Slightly lighter dark background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-reviews-popular-games-analysis .feature-item:hover,
.page-game-reviews-popular-games-analysis .promo-item:hover {
  transform: translateY(-5px);
}

.page-game-reviews-popular-games-analysis .feature-title,
.page-game-reviews-popular-games-analysis .promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-reviews-popular-games-analysis .feature-item p,
.page-game-reviews-popular-games-analysis .promo-item p {
  color: #C0C0C0;
  font-size: 1em;
}

.page-game-reviews-popular-games-analysis .game-review-item {
  background-color: #2A303C;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-popular-games-analysis .game-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-align: center;
}

.page-game-reviews-popular-games-analysis .game-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-popular-games-analysis .strategy-subtitle {
  font-size: 1.4em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-reviews-popular-games-analysis ul,
.page-game-reviews-popular-games-analysis ol {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #C0C0C0;
}

.page-game-reviews-popular-games-analysis ol {
  list-style-type: decimal;
}

.page-game-reviews-popular-games-analysis ul li,
.page-game-reviews-popular-games-analysis ol li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-game-reviews-popular-games-analysis .link-highlight {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}

.page-game-reviews-popular-games-analysis .link-highlight:hover {
  color: #E5C100;
}

.page-game-reviews-popular-games-analysis .call-to-action-text {
  font-size: 1.2em;
  text-align: center;
  margin-top: 40px;
  color: #FFD700;
  font-weight: bold;
}

.page-game-reviews-popular-games-analysis .safety-list li {
  color: #C0C0C0;
}

.page-game-reviews-popular-games-analysis .conclusion-section {
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-reviews-popular-games-analysis .hero-title {
    font-size: 2.5em;
  }

  .page-game-reviews-popular-games-analysis .hero-subtitle {
    font-size: 1.2em;
  }

  .page-game-reviews-popular-games-analysis .section-title {
    font-size: 2em;
  }

  .page-game-reviews-popular-games-analysis .feature-grid,
  .page-game-reviews-popular-games-analysis .promo-grid {
    grid-template-columns: 1fr;
  }

  .page-game-reviews-popular-games-analysis .game-title {
    font-size: 1.8em;
  }

  .page-game-reviews-popular-games-analysis .btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-reviews-popular-games-analysis .btn-final-cta {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-popular-games-analysis .hero-title {
    font-size: 2em;
  }

  .page-game-reviews-popular-games-analysis .hero-subtitle {
    font-size: 1em;
  }

  .page-game-reviews-popular-games-analysis .section-title {
    font-size: 1.8em;
  }

  .page-game-reviews-popular-games-analysis p,
  .page-game-reviews-popular-games-analysis ul li,
  .page-game-reviews-popular-games-analysis ol li {
    font-size: 0.95em;
  }

  .page-game-reviews-popular-games-analysis .game-title {
    font-size: 1.5em;
  }

  .page-game-reviews-popular-games-analysis .feature-title,
  .page-game-reviews-popular-games-analysis .promo-title {
    font-size: 1.4em;
  }
}