/* style/blog-e688-win-new-games-recommendation.css */

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

.page-blog-e688-win-new-games-recommendation__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-e688-win-new-games-recommendation__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
}

.page-blog-e688-win-new-games-recommendation__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-e688-win-new-games-recommendation__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

.page-blog-e688-win-new-games-recommendation__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  border: none;
}

.page-blog-e688-win-new-games-recommendation__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-e688-win-new-games-recommendation__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* Button color - lighter green from gradient */
  border: 2px solid #2E7A4E; /* Border */
}

.page-blog-e688-win-new-games-recommendation__btn-secondary:hover {
  background: #2E7A4E; /* Border */
  color: #ffffff;
}

/* Hero Section */
.page-blog-e688-win-new-games-recommendation__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles header offset, small top padding for aesthetic */
  min-height: 600px; /* Ensure sufficient height */
  overflow: hidden;
}

.page-blog-e688-win-new-games-recommendation__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-blog-e688-win-new-games-recommendation__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-blog-e688-win-new-games-recommendation__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 20px;
  margin-top: 100px; /* Push content down from the top slightly */
}

.page-blog-e688-win-new-games-recommendation__hero-title {
  font-size: 3.2em;
  font-weight: 900;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 100%;
}

.page-blog-e688-win-new-games-recommendation__hero-description {
  font-size: 1.3em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Why Choose Us Section */
.page-blog-e688-win-new-games-recommendation__why-choose-us {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-e688-win-new-games-recommendation__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-blog-e688-win-new-games-recommendation__feature-item {
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-e688-win-new-games-recommendation__feature-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #57E38D; /* Glow */
}

.page-blog-e688-win-new-games-recommendation__feature-text {
  color: #A7D9B8; /* Text Secondary */
}

/* Game Categories Section */
.page-blog-e688-win-new-games-recommendation__game-categories {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

.page-blog-e688-win-new-games-recommendation__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-blog-e688-win-new-games-recommendation__category-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  color: #F2FFF6;
}

.page-blog-e688-win-new-games-recommendation__category-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-blog-e688-win-new-games-recommendation__category-item > h3,
.page-blog-e688-win-new-games-recommendation__category-item > p,
.page-blog-e688-win-new-games-recommendation__category-item > a {
  padding: 0 20px;
}

.page-blog-e688-win-new-games-recommendation__category-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #57E38D; /* Glow */
}

.page-blog-e688-win-new-games-recommendation__category-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-e688-win-new-games-recommendation__category-item .page-blog-e688-win-new-games-recommendation__cta-button {
  margin: 0 20px 20px;
}

/* Featured Games Section */
.page-blog-e688-win-new-games-recommendation__featured-games {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-e688-win-new-games-recommendation__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-blog-e688-win-new-games-recommendation__game-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  color: #F2FFF6;
}

.page-blog-e688-win-new-games-recommendation__game-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-e688-win-new-games-recommendation__game-item > h3,
.page-blog-e688-win-new-games-recommendation__game-item > p,
.page-blog-e688-win-new-games-recommendation__game-item > a {
  padding: 0 20px;
}

.page-blog-e688-win-new-games-recommendation__game-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #F2C14E; /* Gold */
}

.page-blog-e688-win-new-games-recommendation__game-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-e688-win-new-games-recommendation__game-item .page-blog-e688-win-new-games-recommendation__cta-button {
  margin: 0 20px 20px;
}

/* Promotions Section */
.page-blog-e688-win-new-games-recommendation__promotions {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

.page-blog-e688-win-new-games-recommendation__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-e688-win-new-games-recommendation__promo-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6;
}

.page-blog-e688-win-new-games-recommendation__promo-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #57E38D; /* Glow */
}

.page-blog-e688-win-new-games-recommendation__promo-text {
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-e688-win-new-games-recommendation__promotions .page-blog-e688-win-new-games-recommendation__cta-button {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile App Section */
.page-blog-e688-win-new-games-recommendation__mobile-app {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-e688-win-new-games-recommendation__mobile-app-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-blog-e688-win-new-games-recommendation__mobile-app-text {
  flex: 1;
  text-align: left;
}

.page-blog-e688-win-new-games-recommendation__mobile-app-text .page-blog-e688-win-new-games-recommendation__section-title,
.page-blog-e688-win-new-games-recommendation__mobile-app-text .page-blog-e688-win-new-games-recommendation__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-blog-e688-win-new-games-recommendation__mobile-app-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-blog-e688-win-new-games-recommendation__mobile-app-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Security Section */
.page-blog-e688-win-new-games-recommendation__security {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

.page-blog-e688-win-new-games-recommendation__security-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-e688-win-new-games-recommendation__security-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6;
}

.page-blog-e688-win-new-games-recommendation__security-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #57E38D; /* Glow */
}

.page-blog-e688-win-new-games-recommendation__security-text {
  color: #A7D9B8; /* Text Secondary */
}

/* FAQ Section */
.page-blog-e688-win-new-games-recommendation__faq-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-e688-win-new-games-recommendation__faq-list {
  margin-top: 50px;
}

.page-blog-e688-win-new-games-recommendation__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-e688-win-new-games-recommendation__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  list-style: none;
}

.page-blog-e688-win-new-games-recommendation__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-e688-win-new-games-recommendation__faq-qtext {
  flex-grow: 1;
  color: #F2FFF6;
}

.page-blog-e688-win-new-games-recommendation__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-blog-e688-win-new-games-recommendation__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

/* CTA Bottom Section */
.page-blog-e688-win-new-games-recommendation__cta-bottom {
  padding: 60px 0;
  background-color: #08160F; /* Background */
  text-align: center;
}

.page-blog-e688-win-new-games-recommendation__cta-bottom .page-blog-e688-win-new-games-recommendation__cta-button {
  margin-top: 40px;
  display: inline-block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-e688-win-new-games-recommendation__hero-title {
    font-size: 2.8em;
  }
  .page-blog-e688-win-new-games-recommendation__hero-description {
    font-size: 1.2em;
  }
  .page-blog-e688-win-new-games-recommendation__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-e688-win-new-games-recommendation {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-e688-win-new-games-recommendation__hero-section {
    padding-top: 10px !important;
    min-height: 450px;
  }
  .page-blog-e688-win-new-games-recommendation__hero-content {
    margin-top: 50px;
  }
  .page-blog-e688-win-new-games-recommendation__hero-title {
    font-size: 2.2em;
  }
  .page-blog-e688-win-new-games-recommendation__hero-description {
    font-size: 1em;
  }
  .page-blog-e688-win-new-games-recommendation__section-title {
    font-size: 1.8em;
  }
  .page-blog-e688-win-new-games-recommendation__section-description {
    font-size: 0.9em;
  }

  /* Image responsiveness */
  .page-blog-e688-win-new-games-recommendation img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-e688-win-new-games-recommendation__hero-image {
    height: 100% !important; /* Adjust hero image height to fill */
  }
  .page-blog-e688-win-new-games-recommendation__hero-image-wrapper,
  .page-blog-e688-win-new-games-recommendation__mobile-app-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Button responsiveness */
  .page-blog-e688-win-new-games-recommendation__cta-button,
  .page-blog-e688-win-new-games-recommendation__btn-primary,
  .page-blog-e688-win-new-games-recommendation__btn-secondary,
  .page-blog-e688-win-new-games-recommendation a[class*="button"],
  .page-blog-e688-win-new-games-recommendation 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 !important;
    padding-right: 15px !important;
  }
  .page-blog-e688-win-new-games-recommendation__cta-buttons,
  .page-blog-e688-win-new-games-recommendation__button-group,
  .page-blog-e688-win-new-games-recommendation__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  /* General container padding */
  .page-blog-e688-win-new-games-recommendation__container,
  .page-blog-e688-win-new-games-recommendation__card,
  .page-blog-e688-win-new-games-recommendation__section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Mobile App Section adjustments */
  .page-blog-e688-win-new-games-recommendation__mobile-app-content {
    flex-direction: column;
  }
  .page-blog-e688-win-new-games-recommendation__mobile-app-text {
    text-align: center;
  }
  .page-blog-e688-win-new-games-recommendation__mobile-app-text .page-blog-e688-win-new-games-recommendation__section-title,
  .page-blog-e688-win-new-games-recommendation__mobile-app-text .page-blog-e688-win-new-games-recommendation__section-description {
    text-align: center;
  }
  .page-blog-e688-win-new-games-recommendation__mobile-app-image {
    width: 80% !important; /* Slightly smaller on mobile */
    margin: 0 auto;
  }
  .page-blog-e688-win-new-games-recommendation__mobile-app-text .page-blog-e688-win-new-games-recommendation__cta-button {
    margin-left: auto;
    margin-right: auto;
  }

  /* FAQ adjustments */
  .page-blog-e688-win-new-games-recommendation__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-blog-e688-win-new-games-recommendation__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-e688-win-new-games-recommendation__hero-title {
    font-size: 1.8em;
  }
  .page-blog-e688-win-new-games-recommendation__hero-description {
    font-size: 0.9em;
  }
  .page-blog-e688-win-new-games-recommendation__section-title {
    font-size: 1.5em;
  }
  .page-blog-e688-win-new-games-recommendation__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-blog-e688-win-new-games-recommendation__feature-title,
  .page-blog-e688-win-new-games-recommendation__category-title,
  .page-blog-e688-win-new-games-recommendation__game-title,
  .page-blog-e688-win-new-games-recommendation__promo-title,
  .page-blog-e688-win-new-games-recommendation__security-title {
    font-size: 1.3em;
  }
}