.page-blog-jdb-hot-games-recommendation {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--Text-Main); /* Fallback for unknown body background, will be overridden */
  background-color: var(--background);
}

.page-blog-jdb-hot-games-recommendation__dark-bg {
  background-color: var(--Background);
  color: var(--Text-Main);
}

.page-blog-jdb-hot-games-recommendation__light-bg {
  background-color: #f8f9fa; /* A light background for contrast */
  color: var(--Text-Secondary);
}

/* Hero Section */
.page-blog-jdb-hot-games-recommendation__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
}

.page-blog-jdb-hot-games-recommendation__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-jdb-hot-games-recommendation__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-blog-jdb-hot-games-recommendation__hero-content {
  max-width: 900px;
  padding: 20px;
  margin-top: -100px; /* Overlap slightly with image for visual flow */
  position: relative; /* Ensure content is above image if needed, but not overlaying */
  z-index: 1;
  background-color: var(--Background); /* Ensure text is readable */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-jdb-hot-games-recommendation__main-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--Gold);
  letter-spacing: 0.05em;
}

.page-blog-jdb-hot-games-recommendation__lead-paragraph {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--Text-Secondary);
}

.page-blog-jdb-hot-games-recommendation__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-jdb-hot-games-recommendation__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* General Content Area */
.page-blog-jdb-hot-games-recommendation__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-jdb-hot-games-recommendation__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--Glow);
}

.page-blog-jdb-hot-games-recommendation__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--Text-Secondary);
  text-align: justify;
}

.page-blog-jdb-hot-games-recommendation__highlight-text {
  color: var(--Glow);
  font-weight: bold;
}

/* Games Section */
.page-blog-jdb-hot-games-recommendation__games-section {
  padding-bottom: 60px;
}

.page-blog-jdb-hot-games-recommendation__game-category {
  background-color: var(--Card-B-G);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-blog-jdb-hot-games-recommendation__category-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--Glow);
  margin-bottom: 20px;
}

.page-blog-jdb-hot-games-recommendation__game-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 8px;
  margin: 20px auto;
  display: block;
  object-fit: cover;
}

.page-blog-jdb-hot-games-recommendation__link-button {
  display: inline-block;
  background: var(--Deep-Green);
  color: var(--Text-Main);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-jdb-hot-games-recommendation__link-button:hover {
  background-color: #0A5B3C;
}

/* Benefits Section */
.page-blog-jdb-hot-games-recommendation__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-jdb-hot-games-recommendation__benefit-card {
  background-color: var(--Card-B-G);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: var(--Text-Secondary);
}

.page-blog-jdb-hot-games-recommendation__benefit-icon {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin-bottom: 15px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-jdb-hot-games-recommendation__benefit-title {
  font-size: 1.3rem;
  color: var(--Glow);
  margin-bottom: 10px;
}

.page-blog-jdb-hot-games-recommendation__benefit-description {
  font-size: 0.95rem;
  color: var(--Text-Secondary);
}

.page-blog-jdb-hot-games-recommendation__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-blog-jdb-hot-games-recommendation__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
}

.page-blog-jdb-hot-games-recommendation__btn-secondary {
  background: var(--Deep-Green);
  color: var(--Text-Main);
  border: 2px solid var(--Glow);
}

.page-blog-jdb-hot-games-recommendation__btn-secondary:hover {
  background: var(--Glow);
  color: var(--Deep-Green);
}

/* Download Guide Section */
.page-blog-jdb-hot-games-recommendation__guide-steps {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.page-blog-jdb-hot-games-recommendation__step-card {
  background-color: var(--Card-B-G);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: var(--Text-Secondary);
  border: 1px solid var(--Divider);
}

.page-blog-jdb-hot-games-recommendation__step-title {
  font-size: 1.25rem;
  color: var(--Glow);
  margin-bottom: 10px;
}

.page-blog-jdb-hot-games-recommendation__step-description {
  font-size: 0.95rem;
}

/* Promotions Section */
.page-blog-jdb-hot-games-recommendation__promotion-image {
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin: 30px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-jdb-hot-games-recommendation__promotion-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-blog-jdb-hot-games-recommendation__promotion-item {
  background-color: var(--Card-B-G);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1rem;
  color: var(--Text-Main);
  border-left: 5px solid var(--Glow);
}

/* FAQ Section */
.page-blog-jdb-hot-games-recommendation__faq-list {
  margin-top: 30px;
}

.page-blog-jdb-hot-games-recommendation__faq-item {
  background-color: var(--Card-B-G);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid var(--Divider);
}

.page-blog-jdb-hot-games-recommendation__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--Text-Main);
  cursor: pointer;
  background-color: var(--Deep-Green);
  border-bottom: 1px solid var(--Divider);
}

.page-blog-jdb-hot-games-recommendation__faq-item[open] .page-blog-jdb-hot-games-recommendation__faq-question {
  border-bottom: 1px solid var(--Divider);
}

.page-blog-jdb-hot-games-recommendation__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-jdb-hot-games-recommendation__faq-toggle {
  font-size: 1.5rem;
  color: var(--Glow);
  transition: transform 0.3s ease;
}

.page-blog-jdb-hot-games-recommendation__faq-item[open] .page-blog-jdb-hot-games-recommendation__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-jdb-hot-games-recommendation__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1rem;
  color: var(--Text-Secondary);
}

.page-blog-jdb-hot-games-recommendation__faq-answer p {
  margin: 0;
  color: var(--Text-Secondary);
}

/* Conclusion Section */
.page-blog-jdb-hot-games-recommendation__conclusion-section {
  text-align: center;
  padding-bottom: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-jdb-hot-games-recommendation__hero-content {
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .page-blog-jdb-hot-games-recommendation__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-jdb-hot-games-recommendation__hero-image-wrapper {
    max-height: 300px;
  }

  .page-blog-jdb-hot-games-recommendation__hero-content {
    margin-top: -60px;
    padding: 15px;
  }

  .page-blog-jdb-hot-games-recommendation__main-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .page-blog-jdb-hot-games-recommendation__lead-paragraph {
    font-size: 1rem;
  }

  .page-blog-jdb-hot-games-recommendation__content-area {
    padding: 20px 15px;
  }

  .page-blog-jdb-hot-games-recommendation__section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
    margin-bottom: 25px;
  }

  .page-blog-jdb-hot-games-recommendation__text-block {
    font-size: 0.95rem;
  }

  .page-blog-jdb-hot-games-recommendation__game-category,
  .page-blog-jdb-hot-games-recommendation__benefit-card,
  .page-blog-jdb-hot-games-recommendation__step-card,
  .page-blog-jdb-hot-games-recommendation__faq-item {
    padding: 20px;
  }

  .page-blog-jdb-hot-games-recommendation__category-title {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
  }

  .page-blog-jdb-hot-games-recommendation__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-jdb-hot-games-recommendation__guide-steps {
    grid-template-columns: 1fr;
  }

  .page-blog-jdb-hot-games-recommendation__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-jdb-hot-games-recommendation__cta-button {
    width: 100% !important;
    padding: 12px 20px;
  }

  /* Force responsive images, videos, and buttons */
  .page-blog-jdb-hot-games-recommendation img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-jdb-hot-games-recommendation video,
  .page-blog-jdb-hot-games-recommendation__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-jdb-hot-games-recommendation__hero-section,
  .page-blog-jdb-hot-games-recommendation__introduction-section,
  .page-blog-jdb-hot-games-recommendation__games-section,
  .page-blog-jdb-hot-games-recommendation__benefits-section,
  .page-blog-jdb-hot-games-recommendation__download-guide-section,
  .page-blog-jdb-hot-games-recommendation__promotions-section,
  .page-blog-jdb-hot-games-recommendation__faq-section,
  .page-blog-jdb-hot-games-recommendation__conclusion-section,
  .page-blog-jdb-hot-games-recommendation__content-area,
  .page-blog-jdb-hot-games-recommendation__game-category,
  .page-blog-jdb-hot-games-recommendation__benefit-card,
  .page-blog-jdb-hot-games-recommendation__step-card,
  .page-blog-jdb-hot-games-recommendation__faq-item,
  .page-blog-jdb-hot-games-recommendation__cta-group,
  .page-blog-jdb-hot-games-recommendation__button-group,
  .page-blog-jdb-hot-games-recommendation__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-blog-jdb-hot-games-recommendation__cta-button,
  .page-blog-jdb-hot-games-recommendation__btn-primary,
  .page-blog-jdb-hot-games-recommendation__btn-secondary,
  .page-blog-jdb-hot-games-recommendation a[class*="button"],
  .page-blog-jdb-hot-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;
    padding-right: 15px;
  }

  .page-blog-jdb-hot-games-recommendation__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-blog-jdb-hot-games-recommendation__hero-content {
    margin-top: -40px;
  }
}