/* style/blog-max10-hot-games-recommendation.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #1a1a2e;
  --bg-light: #f8f9fa;
  --btn-login-bg: #EA7C07;
}

.page-blog-max10-hot-games-recommendation {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default to light text for dark body background */
  background-color: var(--bg-dark); /* Inherited from body, but ensure consistency */
}

.page-blog-max10-hot-games-recommendation__hero-section {
  position: relative;
  width: 100%;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-max10-hot-games-recommendation__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height on desktop */
}

.page-blog-max10-hot-games-recommendation__hero-content {
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding: 0 20px;
  z-index: 1; /* Ensure content is above any potential background elements */
}

.page-blog-max10-hot-games-recommendation__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem); /* Responsive font size for H1 */
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-max10-hot-games-recommendation__hero-description {
  font-size: 1.15rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.page-blog-max10-hot-games-recommendation__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-max10-hot-games-recommendation__btn-primary,
.page-blog-max10-hot-games-recommendation__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-max10-hot-games-recommendation__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-blog-max10-hot-games-recommendation__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-blog-max10-hot-games-recommendation__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-max10-hot-games-recommendation__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-blog-max10-hot-games-recommendation__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-max10-hot-games-recommendation__content-area {
  background-color: var(--bg-light); /* Light background for content area */
  color: var(--text-dark); /* Dark text for light background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: -40px; /* Overlap with hero for smooth transition */
  position: relative;
  z-index: 2;
}

.page-blog-max10-hot-games-recommendation__content-area h2,
.page-blog-max10-hot-games-recommendation__content-area h3 {
  color: var(--primary-color);
}

.page-blog-max10-hot-games-recommendation__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color); /* Use primary color for section titles */
}

.page-blog-max10-hot-games-recommendation__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-blog-max10-hot-games-recommendation__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

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

.page-blog-max10-hot-games-recommendation__feature-card {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  color: var(--text-dark);
}

.page-blog-max10-hot-games-recommendation__feature-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-blog-max10-hot-games-recommendation__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-max10-hot-games-recommendation__game-card {
  background-color: var(--secondary-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
}

.page-blog-max10-hot-games-recommendation__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-max10-hot-games-recommendation__game-card h3 {
  padding: 15px 20px 0 20px;
  font-size: 1.4rem;
  color: var(--primary-color);
}

.page-blog-max10-hot-games-recommendation__game-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-blog-max10-hot-games-recommendation__game-card h3 a:hover {
  text-decoration: underline;
}

.page-blog-max10-hot-games-recommendation__game-description {
  padding: 0 20px 15px 20px;
  flex-grow: 1;
}

.page-blog-max10-hot-games-recommendation__btn-link {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 20px 20px 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.page-blog-max10-hot-games-recommendation__btn-link:hover {
  background-color: darken(var(--primary-color), 10%);
}

.page-blog-max10-hot-games-recommendation__guide-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-max10-hot-games-recommendation__guide-card {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
}

.page-blog-max10-hot-games-recommendation__guide-title {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-blog-max10-hot-games-recommendation__guide-card ul {
  list-style: disc;
  padding-left: 20px;
}

.page-blog-max10-hot-games-recommendation__guide-card li {
  margin-bottom: 10px;
}

.page-blog-max10-hot-games-recommendation__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-max10-hot-games-recommendation__step-card {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  color: var(--text-dark);
}

.page-blog-max10-hot-games-recommendation__step-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-blog-max10-hot-games-recommendation__step-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-blog-max10-hot-games-recommendation__step-card a:hover {
  text-decoration: underline;
}

.page-blog-max10-hot-games-recommendation__cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 40px;
  border-radius: 8px;
  margin-top: 60px;
}

.page-blog-max10-hot-games-recommendation__cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-blog-max10-hot-games-recommendation__cta-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-blog-max10-hot-games-recommendation__cta-content p {
  margin-bottom: 30px;
}

.page-blog-max10-hot-games-recommendation__faq-list {
  margin-top: 40px;
}

.page-blog-max10-hot-games-recommendation__faq-item {
  background-color: var(--secondary-color);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
}

.page-blog-max10-hot-games-recommendation__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  color: var(--primary-color);
  list-style: none; /* For details/summary */
}

.page-blog-max10-hot-games-recommendation__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-blog-max10-hot-games-recommendation__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 10px;
}

.page-blog-max10-hot-games-recommendation__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.page-blog-max10-hot-games-recommendation__conclusion-section {
  padding: 60px 20px;
  text-align: center;
  color: var(--text-light);
}

.page-blog-max10-hot-games-recommendation__conclusion-section .page-blog-max10-hot-games-recommendation__section-title {
  color: var(--text-light);
}

.page-blog-max10-hot-games-recommendation__btn-large {
  padding: 18px 40px;
  font-size: 1.2rem;
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-max10-hot-games-recommendation__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-blog-max10-hot-games-recommendation__main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }
  .page-blog-max10-hot-games-recommendation__hero-description {
    font-size: 1.05rem;
  }
  .page-blog-max10-hot-games-recommendation__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-max10-hot-games-recommendation {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-max10-hot-games-recommendation__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
    padding-bottom: 30px;
  }
  .page-blog-max10-hot-games-recommendation__hero-image {
    max-height: 400px;
  }
  .page-blog-max10-hot-games-recommendation__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-blog-max10-hot-games-recommendation__hero-description {
    font-size: 1rem;
  }
  .page-blog-max10-hot-games-recommendation__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .page-blog-max10-hot-games-recommendation__btn-primary,
  .page-blog-max10-hot-games-recommendation__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-max10-hot-games-recommendation__section {
    padding: 40px 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .page-blog-max10-hot-games-recommendation__content-area {
    padding: 30px 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .page-blog-max10-hot-games-recommendation__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-blog-max10-hot-games-recommendation__features-grid,
  .page-blog-max10-hot-games-recommendation__game-list,
  .page-blog-max10-hot-games-recommendation__guide-cards,
  .page-blog-max10-hot-games-recommendation__steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-max10-hot-games-recommendation__game-image,
  .page-blog-max10-hot-games-recommendation__cta-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-max10-hot-games-recommendation__game-card,
  .page-blog-max10-hot-games-recommendation__feature-card,
  .page-blog-max10-hot-games-recommendation__guide-card,
  .page-blog-max10-hot-games-recommendation__step-card,
  .page-blog-max10-hot-games-recommendation__faq-item {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-max10-hot-games-recommendation__cta-section {
    padding: 30px 15px;
  }
  .page-blog-max10-hot-games-recommendation__cta-title {
    font-size: 1.5rem;
  }
  .page-blog-max10-hot-games-recommendation__conclusion-section {
    padding: 40px 15px;
  }
  .page-blog-max10-hot-games-recommendation__btn-large {
    font-size: 1.1rem;
    padding: 15px 30px;
  }
  .page-blog-max10-hot-games-recommendation__faq-question {
    font-size: 1.1rem;
  }
  .page-blog-max10-hot-games-recommendation__faq-answer {
    font-size: 0.95rem;
  }
}