/* style/blog-mu88ae-popular-games-guide.css */

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

.page-blog-mu88ae-popular-games-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-mu88ae-popular-games-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px; /* Small top padding, more bottom padding */
  color: #ffffff;
  overflow: hidden;
}

.page-blog-mu88ae-popular-games-guide__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-mu88ae-popular-games-guide__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog-mu88ae-popular-games-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-blog-mu88ae-popular-games-guide__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-blog-mu88ae-popular-games-guide__lead-text {
  font-size: 1.15em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-mu88ae-popular-games-guide__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Styles */
.page-blog-mu88ae-popular-games-guide__content-section {
  padding: 60px 0;
}

.page-blog-mu88ae-popular-games-guide__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter than body bg for contrast */
  color: #ffffff;
}

.page-blog-mu88ae-popular-games-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-mu88ae-popular-games-guide__section-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}

.page-blog-mu88ae-popular-games-guide__dark-bg .page-blog-mu88ae-popular-games-guide__section-title {
  color: #ffffff;
}

.page-blog-mu88ae-popular-games-guide__sub-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-blog-mu88ae-popular-games-guide__dark-bg .page-blog-mu88ae-popular-games-guide__sub-title {
  color: #ffffff;
}

.page-blog-mu88ae-popular-games-guide__text-block p {
  margin-bottom: 15px;
}

.page-blog-mu88ae-popular-games-guide__text-block ol,
.page-blog-mu88ae-popular-games-guide__text-block ul {
  margin-bottom: 15px;
  padding-left: 25px;
}

.page-blog-mu88ae-popular-games-guide__text-block li {
  margin-bottom: 8px;
}

/* Buttons */
.page-blog-mu88ae-popular-games-guide__btn-primary,
.page-blog-mu88ae-popular-games-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* Ensure responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
}

.page-blog-mu88ae-popular-games-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-mu88ae-popular-games-guide__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-blog-mu88ae-popular-games-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-mu88ae-popular-games-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-mu88ae-popular-games-guide__btn-text-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  display: inline-block;
}

.page-blog-mu88ae-popular-games-guide__btn-text-link:hover {
  text-decoration: underline;
}

/* Image Block */
.page-blog-mu88ae-popular-games-guide__image-block {
  margin: 30px 0;
  text-align: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-mu88ae-popular-games-guide__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.page-blog-mu88ae-popular-games-guide__image-caption {
  font-size: 0.9em;
  color: #cccccc;
  margin-top: 10px;
}

.page-blog-mu88ae-popular-games-guide__light-bg .page-blog-mu88ae-popular-games-guide__image-caption {
  color: #666666;
}

/* FAQ Section */
.page-blog-mu88ae-popular-games-guide__faq-list {
  margin-top: 30px;
}

.page-blog-mu88ae-popular-games-guide__faq-item {
  background-color: #2a2a2a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-mu88ae-popular-games-guide__light-bg .page-blog-mu88ae-popular-games-guide__faq-item {
  background-color: #f0f0f0;
  color: #333333;
}

.page-blog-mu88ae-popular-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-blog-mu88ae-popular-games-guide__light-bg .page-blog-mu88ae-popular-games-guide__faq-question {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.page-blog-mu88ae-popular-games-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-mu88ae-popular-games-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-mu88ae-popular-games-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-mu88ae-popular-games-guide__faq-item[open] .page-blog-mu88ae-popular-games-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-mu88ae-popular-games-guide__faq-answer {
  padding: 0 25px 18px;
  font-size: 0.95em;
  color: #cccccc;
}

.page-blog-mu88ae-popular-games-guide__light-bg .page-blog-mu88ae-popular-games-guide__faq-answer {
  color: #555555;
}

/* Conclusion Section */
.page-blog-mu88ae-popular-games-guide__conclusion-section {
  text-align: center;
  padding: 60px 0;
}

/* Responsive Design */
/* Desktop (>= 1024px) - Base styles already set */

/* Tablet (769px - 1023px) */
@media (max-width: 1023px) {
  .page-blog-mu88ae-popular-games-guide__main-title {
    font-size: 2.8em;
  }
  .page-blog-mu88ae-popular-games-guide__section-title {
    font-size: 2em;
  }
  .page-blog-mu88ae-popular-games-guide__sub-title {
    font-size: 1.4em;
  }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  .page-blog-mu88ae-popular-games-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-mu88ae-popular-games-guide__hero-section {
    padding: 10px 0 40px;
  }
  
  .page-blog-mu88ae-popular-games-guide__hero-content {
    margin-top: 20px;
  }

  .page-blog-mu88ae-popular-games-guide__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-blog-mu88ae-popular-games-guide__lead-text {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-blog-mu88ae-popular-games-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-blog-mu88ae-popular-games-guide__btn-primary,
  .page-blog-mu88ae-popular-games-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-mu88ae-popular-games-guide__content-section {
    padding: 40px 0;
  }

  .page-blog-mu88ae-popular-games-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-mu88ae-popular-games-guide__sub-title {
    font-size: 1.2em;
    margin-top: 25px;
  }

  /* Mobile image responsiveness */
  .page-blog-mu88ae-popular-games-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-mu88ae-popular-games-guide__hero-image-wrapper,
  .page-blog-mu88ae-popular-games-guide__image-block,
  .page-blog-mu88ae-popular-games-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-mu88ae-popular-games-guide__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-mu88ae-popular-games-guide__faq-answer {
    padding: 0 20px 15px;
  }
}