.page-resources-popular-game-strategies {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray text for dark background */
  background-color: #0A2239; /* Main dark blue background */
  line-height: 1.6;
}

.page-resources-popular-game-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-popular-game-strategies__hero {
  background: linear-gradient(135deg, #0A2239, #1a3d5f); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold text for hero */
  border-bottom: 3px solid #FFD700;
}

.page-resources-popular-game-strategies__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold title */
  font-weight: bold;
}

.page-resources-popular-game-strategies__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #D3D3D3; /* Lighter text for description */
}

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

.page-resources-popular-game-strategies__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark blue text */
}

.page-resources-popular-game-strategies__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-popular-game-strategies__btn--secondary {
  background-color: #0A2239; /* Dark blue button */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-resources-popular-game-strategies__btn--secondary:hover {
  background-color: #1a3d5f;
  transform: translateY(-2px);
}

.page-resources-popular-game-strategies__content-section {
  padding: 60px 0;
}

.page-resources-popular-game-strategies__article-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #1a3d5f; /* Slightly lighter dark blue for content background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-popular-game-strategies__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold title */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-resources-popular-game-strategies__sub-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold subtitle */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-popular-game-strategies__article-content p {
  font-size: 1.1em;
  margin-bottom: 1em;
  color: #E0E0E0;
}

.page-resources-popular-game-strategies__list {
  list-style: disc inside;
  margin-bottom: 1em;
  padding-left: 20px;
  color: #E0E0E0;
}

.page-resources-popular-game-strategies__list li {
  margin-bottom: 0.5em;
}

.page-resources-popular-game-strategies__quote {
  font-style: italic;
  border-left: 5px solid #FFD700;
  padding-left: 20px;
  margin: 20px 0;
  color: #D3D3D3;
  font-size: 1.1em;
}

.page-resources-popular-game-strategies__image-full-width {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-popular-game-strategies__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-popular-game-strategies__back-link {
  display: inline-block;
  margin-top: 40px;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-popular-game-strategies__back-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-popular-game-strategies__hero-title {
    font-size: 2.5em;
  }

  .page-resources-popular-game-strategies__hero-description {
    font-size: 1em;
  }

  .page-resources-popular-game-strategies__section-title {
    font-size: 1.8em;
  }

  .page-resources-popular-game-strategies__sub-title {
    font-size: 1.4em;
  }

  .page-resources-popular-game-strategies__article-content {
    padding: 20px;
  }

  .page-resources-popular-game-strategies__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .page-resources-popular-game-strategies__btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-resources-popular-game-strategies__hero {
    padding: 60px 0;
  }

  .page-resources-popular-game-strategies__hero-title {
    font-size: 2em;
  }

  .page-resources-popular-game-strategies__section-title {
    font-size: 1.5em;
  }

  .page-resources-popular-game-strategies__sub-title {
    font-size: 1.2em;
  }
}