.page-resources-ae88-ae888-popular-game-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: var(--secondary-color); /* Assumed light, #FFFFFF */
}

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

/* Hero Section */
.page-resources-ae88-ae888-popular-game-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background: linear-gradient(135deg, #017439, #33A16F); /* Gradient with brand color */
  color: #ffffff;
}

.page-resources-ae88-ae888-popular-game-strategy__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-ae88-ae888-popular-game-strategy__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-ae88-ae888-popular-game-strategy__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-ae88-ae888-popular-game-strategy__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-ae88-ae888-popular-game-strategy__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-ae88-ae888-popular-game-strategy__intro-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-ae88-ae888-popular-game-strategy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #C30808; /* Use specific login/register color */
  color: #FFFF00; /* Use specific login/register font color */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-ae88-ae888-popular-game-strategy__cta-button:hover {
  background: #E01A1A;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-resources-ae88-ae888-popular-game-strategy__section {
  padding: 60px 0;
}

.page-resources-ae88-ae888-popular-game-strategy__section-title {
  font-size: 2.5em;
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-ae88-ae888-popular-game-strategy__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #017439;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-ae88-ae888-popular-game-strategy__overview-section p,
.page-resources-ae88-ae888-popular-game-strategy__advanced-strategies-section p,
.page-resources-ae88-ae888-popular-game-strategy__registration-guide p,
.page-resources-ae88-ae888-popular-game-strategy__expert-advice-section p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
}

/* Game Cards Section */
.page-resources-ae88-ae888-popular-game-strategy__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-ae88-ae888-popular-game-strategy__card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #333333;
}

.page-resources-ae88-ae888-popular-game-strategy__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-resources-ae88-ae888-popular-game-strategy__card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-ae88-ae888-popular-game-strategy__card-title {
  font-size: 1.6em;
  color: #017439;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-resources-ae88-ae888-popular-game-strategy__card p {
  font-size: 1em;
  text-align: left;
  margin-bottom: 15px;
}

.page-resources-ae88-ae888-popular-game-strategy__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: #ffffff;
  color: #017439;
  text-decoration: none;
  border: 2px solid #017439;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 15px;
  margin-right: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-resources-ae88-ae888-popular-game-strategy__btn-secondary:hover {
  background: #017439;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Feature Grid Section */
.page-resources-ae88-ae888-popular-game-strategy__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-ae88-ae888-popular-game-strategy__feature-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

.page-resources-ae88-ae888-popular-game-strategy__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-resources-ae88-ae888-popular-game-strategy__feature-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-ae88-ae888-popular-game-strategy__feature-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
}

/* Benefits Section */
.page-resources-ae88-ae888-popular-game-strategy__benefits-section {
  background-color: #017439;
  color: #ffffff;
  padding: 60px 0;
}

.page-resources-ae88-ae888-popular-game-strategy__benefits-section .page-resources-ae88-ae888-popular-game-strategy__section-title {
  color: #ffffff;
}

.page-resources-ae88-ae888-popular-game-strategy__benefits-section .page-resources-ae88-ae888-popular-game-strategy__section-title::after {
  background-color: #ffffff;
}

.page-resources-ae88-ae888-popular-game-strategy__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}