/* Base styles for the page */
.page-blog-79kjng-hot-games-guide-2024 {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
}

.page-blog-79kjng-hot-games-guide-2024__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-79kjng-hot-games-guide-2024__section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-79kjng-hot-games-guide-2024__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 30px;
  color: #F2C14E; /* Primary Color */
  line-height: 1.2;
}

.page-blog-79kjng-hot-games-guide-2024__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

/* HERO Section */
.page-blog-79kjng-hot-games-guide-2024__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-blog-79kjng-hot-games-guide-2024__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for desktop */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-blog-79kjng-hot-games-guide-2024__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Cover for desktop */
  min-height: 300px;
}

.page-blog-79kjng-hot-games-guide-2024__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.page-blog-79kjng-hot-games-guide-2024__main-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #FFD36B; /* Glow Color */
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 15px rgba(255, 211, 107, 0.5);
}

.page-blog-79kjng-hot-games-guide-2024__lead-text {
  font-size: 19px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

/* CTA Buttons */
.page-blog-79kjng-hot-games-guide-2024__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-79kjng-hot-games-guide-2024__btn-primary,
.page-blog-79kjng-hot-games-guide-2024__btn-secondary,
.page-blog-79kjng-hot-games-guide-2024__btn-read-more,
.page-blog-79kjng-hot-games-guide-2024__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-79kjng-hot-games-guide-2024__btn-primary {
  background: #F2C14E; /* Primary Color for button background to ensure contrast */
  color: #ffffff; /* White text for primary button */
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-79kjng-hot-games-guide-2024__btn-primary:hover {
  background: #FFD36B; /* Lighter for hover */
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.6);
  transform: translateY(-2px);
}

.page-blog-79kjng-hot-games-guide-2024__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Primary Color for text */
  border: 2px solid #3A2A12; /* Border */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-79kjng-hot-games-guide-2024__btn-secondary:hover {
  background: #000000;
  border-color: #F2C14E;
  transform: translateY(-2px);
}

.page-blog-79kjng-hot-games-guide-2024__btn-read-more,
.page-blog-79kjng-hot-games-guide-2024__btn-link {
  background: #3A2A12;
  color: #FFD36B;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
}

.page-blog-79kjng-hot-games-guide-2024__btn-read-more:hover,
.page-blog-79kjng-hot-games-guide-2024__btn-link:hover {
  background: #F2C14E;
  color: #111111;
}

/* Intro Section */
.page-blog-79kjng-hot-games-guide-2024__intro-section {
  background-color: #0A0A0A;
}

/* Top Games Section */
.page-blog-79kjng-hot-games-guide-2024__top-games {
  background-color: #0A0A0A;
}

.page-blog-79kjng-hot-games-guide-2024__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-79kjng-hot-games-guide-2024__game-card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
}

.page-blog-79kjng-hot-games-guide-2024__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.2);
}

.page-blog-79kjng-hot-games-guide-2024__game-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-79kjng-hot-games-guide-2024__game-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog-79kjng-hot-games-guide-2024__game-title a {
  color: #F2C14E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-79kjng-hot-games-guide-2024__game-title a:hover {
  color: #FFD36B;
  text-decoration: underline;
}

.page-blog-79kjng-hot-games-guide-2024__game-description {
  font-size: 16px;
  margin-bottom: 20px;
  flex-grow: 1;
  color: #FFF6D6;
}

/* Guides & Tips Section */
.page-blog-79kjng-hot-games-guide-2024__guides-tips {
  background-color: #0A0A0A;
}

.page-blog-79kjng-hot-games-guide-2024__guide-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-blog-79kjng-hot-games-guide-2024__guide-item {
  background: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #FFF6D6;
}

.page-blog-79kjng-hot-games-guide-2024__guide-title {
  font-size: 20px;
  font-weight: 700;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-blog-79kjng-hot-games-guide-2024__guide-text {
  font-size: 16px;
  color: #FFF6D6;
}

/* Why Choose Section */
.page-blog-79kjng-hot-games-guide-2024__why-choose {
  background-color: #0A0A0A;
}

.page-blog-79kjng-hot-games-guide-2024__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-79kjng-hot-games-guide-2024__feature-item {
  background: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #FFF6D6;
}

.page-blog-79kjng-hot-games-guide-2024__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-blog-79kjng-hot-games-guide-2024__feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-blog-79kjng-hot-games-guide-2024__feature-description {
  font-size: 16px;
  color: #FFF6D6;
}

/* Download App Section */
.page-blog-79kjng-hot-games-guide-2024__download-app-section {
  background: #111111; /* Card BG for dark section */
  padding: 80px 0;
}

.page-blog-79kjng-hot-games-guide-2024__download-app-section .page-blog-79kjng-hot-games-guide-2024__container {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-blog-79kjng-hot-games-guide-2024__download-content {
  flex: 1;
}

.page-blog-79kjng-hot-games-guide-2024__download-image-wrapper {
  flex-shrink: 0;
  max-width: 500px;
  width: 100%;
}

.page-blog-79kjng-hot-games-guide-2024__download-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* FAQ Section */
details.page-blog-79kjng-hot-games-guide-2024__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
  color: #FFF6D6;
  text-align: left;
}
details.page-blog-79kjng-hot-games-guide-2024__faq-item summary.page-blog-79kjng-hot-games-guide-2024__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-blog-79kjng-hot-games-guide-2024__faq-item summary.page-blog-79kjng-hot-games-guide-2024__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-79kjng-hot-games-guide-2024__faq-item summary.page-blog-79kjng-hot-games-guide-2024__faq-question:hover {
  background: #1A1A1A; /* Slightly lighter for hover */
}
.page-blog-79kjng-hot-games-guide-2024__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #F2C14E;
}
details.page-blog-79kjng-hot-games-guide-2024__faq-item[open] .page-blog-79kjng-hot-games-guide-2024__faq-qtext {
  color: #FFD36B;
}
.page-blog-79kjng-hot-games-guide-2024__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-79kjng-hot-games-guide-2024__faq-item[open] .page-blog-79kjng-hot-games-guide-2024__faq-toggle {
  color: #FFD36B;
}
details.page-blog-79kjng-hot-games-guide-2024__faq-item .page-blog-79kjng-hot-games-guide-2024__faq-answer {
  padding: 0 20px 20px;
  background: #0A0A0A; /* Background */
  border-radius: 0 0 5px 5px;
  color: #FFF6D6;
}
details.page-blog-79kjng-hot-games-guide-2024__faq-item .page-blog-79kjng-hot-games-guide-2024__faq-answer p {
  margin: 0;
  font-size: 16px;
}

/* Final CTA Section */
.page-blog-79kjng-hot-games-guide-2024__final-cta {
  background: #111111; /* Card BG */
  padding: 80px 0;
}

.page-blog-79kjng-hot-games-guide-2024__final-cta .page-blog-79kjng-hot-games-guide-2024__section-title {
  color: #FFD36B;
}

/* General Image styles for responsiveness */
.page-blog-79kjng-hot-games-guide-2024 img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-79kjng-hot-games-guide-2024__container {
    padding: 0 15px;
  }

  .page-blog-79kjng-hot-games-guide-2024__section {
    padding: 40px 0;
  }

  .page-blog-79kjng-hot-games-guide-2024__hero-image-wrapper {
    max-height: 500px;
  }

  .page-blog-79kjng-hot-games-guide-2024__download-app-section .page-blog-79kjng-hot-games-guide-2024__container {
    flex-direction: column;
    text-align: center;
  }

  .page-blog-79kjng-hot-games-guide-2024__download-content {
    margin-bottom: 30px;
  }

  .page-blog-79kjng-hot-games-guide-2024__download-image-wrapper {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-blog-79kjng-hot-games-guide-2024__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-79kjng-hot-games-guide-2024__hero-image-wrapper {
    max-height: unset;
  }

  .page-blog-79kjng-hot-games-guide-2024__hero-image {
    object-fit: contain !important; /* HERO: object-fit:contain */
    aspect-ratio: unset !important; /* HERO: aspect-ratio:unset */
    min-height: 200px;
  }

  .page-blog-79kjng-hot-games-guide-2024__main-title {
    font-size: clamp(30px, 8vw, 40px); /* H1 font size with clamp */
    margin-bottom: 15px;
  }

  .page-blog-79kjng-hot-games-guide-2024__lead-text {
    font-size: 17px;
    margin-bottom: 30px;
  }

  .page-blog-79kjng-hot-games-guide-2024__cta-buttons {
    flex-direction: column; /* Buttons stack on mobile */
    gap: 15px;
  }

  /* General Buttons and Containers */
  .page-blog-79kjng-hot-games-guide-2024__btn-primary,
  .page-blog-79kjng-hot-games-guide-2024__btn-secondary,
  .page-blog-79kjng-hot-games-guide-2024__btn-read-more,
  .page-blog-79kjng-hot-games-guide-2024__btn-link {
    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-79kjng-hot-games-guide-2024__cta-buttons,
  .page-blog-79kjng-hot-games-guide-2024__button-group,
  .page-blog-79kjng-hot-games-guide-2024__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  /* Product/Game Grid Section */
  .page-blog-79kjng-hot-games-guide-2024__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .page-blog-79kjng-hot-games-guide-2024__game-card {
    padding: 20px;
  }

  .page-blog-79kjng-hot-games-guide-2024__game-image {
    max-height: 200px;
  }

  /* Article Body / Content Areas */
  .page-blog-79kjng-hot-games-guide-2024__section-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 20px;
  }

  .page-blog-79kjng-hot-games-guide-2024__text-block {
    font-size: 16px;
    padding: 0 10px;
  }

  .page-blog-79kjng-hot-games-guide-2024__guides-tips .page-blog-79kjng-hot-games-guide-2024__guide-list,
  .page-blog-79kjng-hot-games-guide-2024__why-choose .page-blog-79kjng-hot-games-guide-2024__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-79kjng-hot-games-guide-2024__feature-icon {
    width: 80px;
    height: 80px;
  }

  /* General Images */
  .page-blog-79kjng-hot-games-guide-2024 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-79kjng-hot-games-guide-2024__section,
  .page-blog-79kjng-hot-games-guide-2024__card,
  .page-blog-79kjng-hot-games-guide-2024__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* FAQ Section */
  details.page-blog-79kjng-hot-games-guide-2024__faq-item summary.page-blog-79kjng-hot-games-guide-2024__faq-question {
    padding: 15px;
  }
  .page-blog-79kjng-hot-games-guide-2024__faq-qtext {
    font-size: 16px;
  }
  .page-blog-79kjng-hot-games-guide-2024__faq-toggle {
    font-size: 20px;
    width: 24px;
    margin-left: 10px;
  }
  details.page-blog-79kjng-hot-games-guide-2024__faq-item .page-blog-79kjng-hot-games-guide-2024__faq-answer {
    padding: 0 15px 15px;
  }
  details.page-blog-79kjng-hot-games-guide-2024__faq-item .page-blog-79kjng-hot-games-guide-2024__faq-answer p {
    font-size: 15px;
  }
}