/* style/blog-u888-latest-games-recommendation-and-download.css */

/* Base styles for the page content, ensuring proper contrast with body background #08160F */
.page-blog-u888-latest-games-recommendation-and-download {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-u888-latest-games-recommendation-and-download__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-u888-latest-games-recommendation-and-download__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-blog-u888-latest-games-recommendation-and-download__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height of hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-blog-u888-latest-games-recommendation-and-download__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog-u888-latest-games-recommendation-and-download__hero-content {
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-u888-latest-games-recommendation-and-download__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold for main title */
  letter-spacing: 0.5px;
}

.page-blog-u888-latest-games-recommendation-and-download__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-u888-latest-games-recommendation-and-download__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-blog-u888-latest-games-recommendation-and-download__btn-primary,
.page-blog-u888-latest-games-recommendation-and-download__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-u888-latest-games-recommendation-and-download__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  border: none;
}

.page-blog-u888-latest-games-recommendation-and-download__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-u888-latest-games-recommendation-and-download__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Main brand green */
  border: 2px solid #2AD16F;
}

.page-blog-u888-latest-games-recommendation-and-download__btn-secondary:hover {
  background: #2AD16F;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

/* General Section Styles */
.page-blog-u888-latest-games-recommendation-and-download__section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-u888-latest-games-recommendation-and-download__section:last-of-type {
  border-bottom: none;
}

.page-blog-u888-latest-games-recommendation-and-download__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: #F2C14E; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-u888-latest-games-recommendation-and-download__text-block {
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-u888-latest-games-recommendation-and-download__highlight-text {
  color: #57E38D; /* Glow */
  font-weight: bold;
}

.page-blog-u888-latest-games-recommendation-and-download__inline-link {
  color: #2AD16F;
  text-decoration: underline;
}

.page-blog-u888-latest-games-recommendation-and-download__inline-link:hover {
  color: #57E38D;
}

/* Download Guide Section */
.page-blog-u888-latest-games-recommendation-and-download__download-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-u888-latest-games-recommendation-and-download__step-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  color: #F2FFF6;
}

.page-blog-u888-latest-games-recommendation-and-download__step-title {
  font-size: 1.5em;
  color: #2AD16F;
  margin-bottom: 15px;
}

.page-blog-u888-latest-games-recommendation-and-download__step-card p {
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-u888-latest-games-recommendation-and-download__tips {
  font-style: italic;
  color: #A7D9B8;
  border-left: 4px solid #2AD16F;
  padding-left: 15px;
}

/* Featured Games Section */
.page-blog-u888-latest-games-recommendation-and-download__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-u888-latest-games-recommendation-and-download__game-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
}

.page-blog-u888-latest-games-recommendation-and-download__game-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-blog-u888-latest-games-recommendation-and-download__game-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-blog-u888-latest-games-recommendation-and-download__game-title a {
  color: inherit;
  text-decoration: none;
}

.page-blog-u888-latest-games-recommendation-and-download__game-title a:hover {
  text-decoration: underline;
}

.page-blog-u888-latest-games-recommendation-and-download__game-card p {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 15px;
}

.page-blog-u888-latest-games-recommendation-and-download__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Promotions Section */
.page-blog-u888-latest-games-recommendation-and-download__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-u888-latest-games-recommendation-and-download__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
}

.page-blog-u888-latest-games-recommendation-and-download__promo-thumbnail {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-blog-u888-latest-games-recommendation-and-download__promo-title {
  font-size: 1.3em;
  color: #2AD16F;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-blog-u888-latest-games-recommendation-and-download__promo-title a {
  color: inherit;
  text-decoration: none;
}

.page-blog-u888-latest-games-recommendation-and-download__promo-title a:hover {
  text-decoration: underline;
}

.page-blog-u888-latest-games-recommendation-and-download__promo-card p {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 15px;
}

/* Benefits Section */
.page-blog-u888-latest-games-recommendation-and-download__benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-blog-u888-latest-games-recommendation-and-download__benefits-list li {
  background-color: #11271B; /* Card BG */
  border-left: 5px solid #2AD16F;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
  font-size: 1.1em;
}

.page-blog-u888-latest-games-recommendation-and-download__benefits-list li strong {
  color: #F2C14E; /* Gold */
}

/* FAQ Section */
.page-blog-u888-latest-games-recommendation-and-download__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-u888-latest-games-recommendation-and-download__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
}

.page-blog-u888-latest-games-recommendation-and-download__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
  border-bottom: 1px solid #2E7A4E; /* Border */
  list-style: none; /* For details/summary */
}

.page-blog-u888-latest-games-recommendation-and-download__faq-item[open] .page-blog-u888-latest-games-recommendation-and-download__faq-question {
  border-bottom: 1px solid #2E7A4E; /* Border */
}

.page-blog-u888-latest-games-recommendation-and-download__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-u888-latest-games-recommendation-and-download__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

.page-blog-u888-latest-games-recommendation-and-download__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-u888-latest-games-recommendation-and-download__faq-answer p {
  margin-top: 10px;
  margin-bottom: 0;
}

/* Final CTA Section */
.page-blog-u888-latest-games-recommendation-and-download__cta-final-section {
  text-align: center;
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-u888-latest-games-recommendation-and-download__cta-final-content {
  max-width: 800px;
}

/* Image wrappers for content images */
.page-blog-u888-latest-games-recommendation-and-download__image-wrapper {
  margin: 40px auto;
  max-width: 1000px;
  text-align: center;
}

.page-blog-u888-latest-games-recommendation-and-download__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-u888-latest-games-recommendation-and-download__hero-image-wrapper {
    max-height: 500px;
  }
  .page-blog-u888-latest-games-recommendation-and-download__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-blog-u888-latest-games-recommendation-and-download__section-title {
    font-size: clamp(1.6em, 4vw, 2.2em);
  }
}

@media (max-width: 768px) {
  .page-blog-u888-latest-games-recommendation-and-download__hero-section,
  .page-blog-u888-latest-games-recommendation-and-download__section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-u888-latest-games-recommendation-and-download__container {
    padding: 0 15px;
  }
  .page-blog-u888-latest-games-recommendation-and-download__hero-image-wrapper {
    max-height: 400px;
  }
  .page-blog-u888-latest-games-recommendation-and-download__main-title {
    font-size: clamp(1.6em, 6vw, 2.5em);
  }
  .page-blog-u888-latest-games-recommendation-and-download__description,
  .page-blog-u888-latest-games-recommendation-and-download__text-block,
  .page-blog-u888-latest-games-recommendation-and-download__benefits-list li,
  .page-blog-u888-latest-games-recommendation-and-download__faq-question,
  .page-blog-u888-latest-games-recommendation-and-download__faq-answer {
    font-size: 1em;
  }

  /* Mobile image responsiveness */
  .page-blog-u888-latest-games-recommendation-and-download img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-u888-latest-games-recommendation-and-download__section,
  .page-blog-u888-latest-games-recommendation-and-download__card,
  .page-blog-u888-latest-games-recommendation-and-download__container,
  .page-blog-u888-latest-games-recommendation-and-download__hero-image-wrapper,
  .page-blog-u888-latest-games-recommendation-and-download__image-wrapper,
  .page-blog-u888-latest-games-recommendation-and-download__download-steps,
  .page-blog-u888-latest-games-recommendation-and-download__game-grid,
  .page-blog-u888-latest-games-recommendation-and-download__promo-grid,
  .page-blog-u888-latest-games-recommendation-and-download__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  /* Mobile button responsiveness */
  .page-blog-u888-latest-games-recommendation-and-download__cta-button,
  .page-blog-u888-latest-games-recommendation-and-download__btn-primary,
  .page-blog-u888-latest-games-recommendation-and-download__btn-secondary,
  .page-blog-u888-latest-games-recommendation-and-download a[class*="button"],
  .page-blog-u888-latest-games-recommendation-and-download a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-u888-latest-games-recommendation-and-download__cta-buttons {
    flex-direction: column !important;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-u888-latest-games-recommendation-and-download__hero-section {
    padding-top: 10px !important; /* Ensure small padding */
  }
}

@media (max-width: 480px) {
  .page-blog-u888-latest-games-recommendation-and-download__hero-image-wrapper {
    max-height: 300px;
  }
  .page-blog-u888-latest-games-recommendation-and-download__main-title {
    font-size: clamp(1.4em, 7vw, 2em);
  }
  .page-blog-u888-latest-games-recommendation-and-download__section-title {
    font-size: clamp(1.4em, 5vw, 1.8em);
  }
  .page-blog-u888-latest-games-recommendation-and-download__section {
    padding: 40px 0;
  }
  .page-blog-u888-latest-games-recommendation-and-download__btn-primary,
  .page-blog-u888-latest-games-recommendation-and-download__btn-secondary {
    padding: 12px 20px;
    font-size: 0.9em;
  }
}