.page-blog-top-games-with-ae3888-code {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-top-games-with-ae3888-code__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles padding-top, add small top padding for aesthetics */
  overflow: hidden;
}

.page-blog-top-games-with-ae3888-code__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-blog-top-games-with-ae3888-code__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(17, 39, 27, 0.85); /* Card BG with transparency */
  border-radius: 10px;
  margin-top: 100px; /* Adjust as needed to not overlap image directly */
}

.page-blog-top-games-with-ae3888-code__hero-title {
  color: #F2FFF6;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.page-blog-top-games-with-ae3888-code__hero-description {
  color: #A7D9B8;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-top-games-with-ae3888-code__hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-blog-top-games-with-ae3888-code__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-top-games-with-ae3888-code__button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
}

.page-blog-top-games-with-ae3888-code__button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-top-games-with-ae3888-code__button--secondary {
  background-color: #11271B;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-blog-top-games-with-ae3888-code__button--secondary:hover {
  background-color: #2AD16F;
  color: #11271B;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-top-games-with-ae3888-code__section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-top-games-with-ae3888-code__section:last-of-type {
  border-bottom: none;
}

.page-blog-top-games-with-ae3888-code__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-top-games-with-ae3888-code__section-title {
  color: #57E38D; /* Glow color for main titles */
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-top-games-with-ae3888-code__subsection-title {
  color: #F2C14E; /* Gold color for sub-titles */
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-top-games-with-ae3888-code p {
  margin-bottom: 15px;
  color: #F2FFF6; /* Main Text */
}

.page-blog-top-games-with-ae3888-code__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Main Text */
}

.page-blog-top-games-with-ae3888-code__list li {
  margin-bottom: 8px;
  color: #A7D9B8; /* Secondary Text */
}

.page-blog-top-games-with-ae3888-code__highlight {
  color: #2AD16F; /* Bright green for highlights */
  font-weight: bold;
}

.page-blog-top-games-with-ae3888-code img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-blog-top-games-with-ae3888-code__image-full-width {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
}

.page-blog-top-games-with-ae3888-code__image-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-top-games-with-ae3888-code__cta-bottom {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

/* FAQ Section */
.page-blog-top-games-with-ae3888-code__faq-list {
  margin-top: 30px;
}

.page-blog-top-games-with-ae3888-code__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-top-games-with-ae3888-code__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Main Text */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
  list-style: none;
  -webkit-details-marker: none;
}

.page-blog-top-games-with-ae3888-code__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-top-games-with-ae3888-code__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D; /* Glow */
}

.page-blog-top-games-with-ae3888-code__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05em;
  color: #A7D9B8; /* Secondary Text */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-top-games-with-ae3888-code__hero-content {
    max-width: 700px;
    margin-top: 50px;
  }

  .page-blog-top-games-with-ae3888-code__section-title {
    font-size: 2em;
  }

  .page-blog-top-games-with-ae3888-code__subsection-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-blog-top-games-with-ae3888-code__hero-content {
    max-width: 90%;
    padding: 15px;
    margin-top: 30px;
  }

  .page-blog-top-games-with-ae3888-code__hero-title {
    font-size: 1.8em;
    margin-bottom: 10px;
  }

  .page-blog-top-games-with-ae3888-code__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-top-games-with-ae3888-code__hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .page-blog-top-games-with-ae3888-code__button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    font-size: 0.95em;
  }

  .page-blog-top-games-with-ae3888-code__section {
    padding: 40px 0;
  }

  .page-blog-top-games-with-ae3888-code__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-top-games-with-ae3888-code__subsection-title {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-blog-top-games-with-ae3888-code p,
  .page-blog-top-games-with-ae3888-code__list li {
    font-size: 0.95em;
  }

  .page-blog-top-games-with-ae3888-code img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  .page-blog-top-games-with-ae3888-code__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-top-games-with-ae3888-code__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-blog-top-games-with-ae3888-code__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9em;
  }
}