/* style/blog-popular-games-guide-hq88-win.css */
.page-blog-popular-games-guide-hq88-win {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-blog-popular-games-guide-hq88-win__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  background-color: #0a0a0a; /* Ensure dark background for hero */
  overflow: hidden;
}

.page-blog-popular-games-guide-hq88-win__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-blog-popular-games-guide-hq88-win__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
  display: block;
}

.page-blog-popular-games-guide-hq88-win__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
  padding: 20px;
}

.page-blog-popular-games-guide-hq88-win__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-blog-popular-games-guide-hq88-win__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-popular-games-guide-hq88-win__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-popular-games-guide-hq88-win__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

/* Background color handling */
.page-blog-popular-games-guide-hq88-win__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-blog-popular-games-guide-hq88-win__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Buttons */
.page-blog-popular-games-guide-hq88-win__btn-primary,
.page-blog-popular-games-guide-hq88-win__btn-secondary,
.page-blog-popular-games-guide-hq88-win__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
}

.page-blog-popular-games-guide-hq88-win__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
  margin: 10px;
}

.page-blog-popular-games-guide-hq88-win__btn-primary:hover {
  background-color: #1e87b9;
  border-color: #1e87b9;
}

.page-blog-popular-games-guide-hq88-win__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin: 10px;
}

.page-blog-popular-games-guide-hq88-win__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-popular-games-guide-hq88-win__btn-tertiary {
  background-color: #EA7C07; /* Login color for specific CTAs */
  color: #ffffff;
  border: 2px solid #EA7C07;
  font-size: 0.95rem;
  padding: 10px 20px;
}

.page-blog-popular-games-guide-hq88-win__btn-tertiary:hover {
  background-color: #c46400;
  border-color: #c46400;
}

.page-blog-popular-games-guide-hq88-win__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Game List Section */
.page-blog-popular-games-guide-hq88-win__games-section .page-blog-popular-games-guide-hq88-win__section-title {
  color: #ffffff;
}

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

.page-blog-popular-games-guide-hq88-win__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-blog-popular-games-guide-hq88-win__game-card:hover {
  transform: translateY(-5px);
}

.page-blog-popular-games-guide-hq88-win__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}

.page-blog-popular-games-guide-hq88-win__game-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 15px 10px;
  color: #26A9E0;
}

.page-blog-popular-games-guide-hq88-win__game-description {
  font-size: 0.95rem;
  margin: 0 15px 20px;
  color: #555555;
}

/* Guide Section */
.page-blog-popular-games-guide-hq88-win__guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-popular-games-guide-hq88-win__guide-item {
  background-color: #f8f8f8;
  border-left: 5px solid #26A9E0;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-blog-popular-games-guide-hq88-win__guide-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-blog-popular-games-guide-hq88-win__guide-item p {
  font-size: 1rem;
  color: #555555;
}

/* Promotions Section */
.page-blog-popular-games-guide-hq88-win__promotions-section .page-blog-popular-games-guide-hq88-win__section-title {
  color: #ffffff;
}

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

.page-blog-popular-games-guide-hq88-win__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-blog-popular-games-guide-hq88-win__promo-card:hover {
  transform: translateY(-5px);
}

.page-blog-popular-games-guide-hq88-win__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}

.page-blog-popular-games-guide-hq88-win__promo-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 15px 10px;
  color: #26A9E0;
}

.page-blog-popular-games-guide-hq88-win__promo-description {
  font-size: 0.95rem;
  margin: 0 15px 20px;
  color: #555555;
}

/* CTA Section */
.page-blog-popular-games-guide-hq88-win__cta-section {
  padding: 80px 20px;
  text-align: center;
}

.page-blog-popular-games-guide-hq88-win__cta-content {
  max-width: 800px;
}

.page-blog-popular-games-guide-hq88-win__cta-section .page-blog-popular-games-guide-hq88-win__section-title {
  color: #26A9E0;
}

.page-blog-popular-games-guide-hq88-win__cta-section .page-blog-popular-games-guide-hq88-win__description {
  color: #333333;
  font-size: 1.1rem;
}

/* FAQ Section */
.page-blog-popular-games-guide-hq88-win__faq-section .page-blog-popular-games-guide-hq88-win__section-title {
  color: #ffffff;
}

.page-blog-popular-games-guide-hq88-win__faq-list {
  margin-top: 40px;
}

.page-blog-popular-games-guide-hq88-win__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #333333;
}

.page-blog-popular-games-guide-hq88-win__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #f5f5f5;
  color: #26A9E0;
  border-bottom: 1px solid #e0e0e0;
}

.page-blog-popular-games-guide-hq88-win__faq-question::-webkit-details-marker, /* Hide default marker for Chrome */
.page-blog-popular-games-guide-hq88-win__faq-question::marker { /* Hide default marker for Firefox */
  display: none;
}

.page-blog-popular-games-guide-hq88-win__faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-left: 15px;
  color: #26A9E0;
}

.page-blog-popular-games-guide-hq88-win__faq-item[open] .page-blog-popular-games-guide-hq88-win__faq-toggle {
  content: '−';
}

.page-blog-popular-games-guide-hq88-win__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #555555;
  border-top: 1px solid #e9e9e9;
}

.page-blog-popular-games-guide-hq88-win__faq-answer p {
  margin-bottom: 10px;
}

.page-blog-popular-games-guide-hq88-win__faq-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-blog-popular-games-guide-hq88-win__faq-link:hover {
  color: #1e87b9;
}

/* General text blocks */
.page-blog-popular-games-guide-hq88-win__text-block {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #f0f0f0; /* Light color for dark backgrounds */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-popular-games-guide-hq88-win__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-popular-games-guide-hq88-win__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  .page-blog-popular-games-guide-hq88-win__game-image,
  .page-blog-popular-games-guide-hq88-win__promo-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-blog-popular-games-guide-hq88-win__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-blog-popular-games-guide-hq88-win__hero-content {
    padding: 15px;
  }
  .page-blog-popular-games-guide-hq88-win__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
  }
  .page-blog-popular-games-guide-hq88-win__description,
  .page-blog-popular-games-guide-hq88-win__text-block {
    font-size: 1rem;
    text-align: left;
  }
  .page-blog-popular-games-guide-hq88-win__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem) !important;
    margin-bottom: 30px;
  }
  .page-blog-popular-games-guide-hq88-win__content-area {
    padding: 20px 15px;
  }

  /* Image responsive */
  .page-blog-popular-games-guide-hq88-win img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-popular-games-guide-hq88-win__game-card,
  .page-blog-popular-games-guide-hq88-win__promo-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-blog-popular-games-guide-hq88-win__game-image,
  .page-blog-popular-games-guide-hq88-win__promo-image {
    height: auto;
    max-height: 250px;
  }

  /* Buttons responsive */
  .page-blog-popular-games-guide-hq88-win__btn-primary,
  .page-blog-popular-games-guide-hq88-win__btn-secondary,
  .page-blog-popular-games-guide-hq88-win__btn-tertiary,
  .page-blog-popular-games-guide-hq88-win a[class*="button"],
  .page-blog-popular-games-guide-hq88-win 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;
    margin: 10px 0;
  }
  .page-blog-popular-games-guide-hq88-win__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important;
    gap: 10px;
  }

  .page-blog-popular-games-guide-hq88-win__game-list,
  .page-blog-popular-games-guide-hq88-win__guide-grid,
  .page-blog-popular-games-guide-hq88-win__promo-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-popular-games-guide-hq88-win__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-blog-popular-games-guide-hq88-win__faq-answer {
    padding: 15px;
    font-size: 0.95rem;
  }
}