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

/* Base styles for the page content */
.page-blog-mcw77-popular-games-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #ffffff;
}

.page-blog-mcw77-popular-games-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  background-color: #26A9E0;
  color: #ffffff;
  text-align: center;
}

.page-blog-mcw77-popular-games-guide__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.page-blog-mcw77-popular-games-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-mcw77-popular-games-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-mcw77-popular-games-guide__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 15px;
  font-size: clamp(2.2rem, 4vw, 3.2rem); /* Responsive font size for H1 */
}

.page-blog-mcw77-popular-games-guide__subtitle {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-mcw77-popular-games-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
}

.page-blog-mcw77-popular-games-guide__section-title {
  font-size: 2.2rem;
  color: #26A9E0;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-blog-mcw77-popular-games-guide__text-block {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333333;
}

.page-blog-mcw77-popular-games-guide__game-category {
  margin-bottom: 40px;
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-mcw77-popular-games-guide__game-title {
  font-size: 1.8rem;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-blog-mcw77-popular-games-guide__game-image,
.page-blog-mcw77-popular-games-guide__app-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-mcw77-popular-games-guide__guide-list,
.page-blog-mcw77-popular-games-guide__promo-list,
.page-blog-mcw77-popular-games-guide__tips-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog-mcw77-popular-games-guide__list-item {
  background-color: #f0faff;
  border-left: 4px solid #26A9E0;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 4px;
  color: #333333;
}

.page-blog-mcw77-popular-games-guide__list-item strong {
  color: #000000;
}

.page-blog-mcw77-popular-games-guide__btn-primary,
.page-blog-mcw77-popular-games-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

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

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

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

.page-blog-mcw77-popular-games-guide__cta-buttons {
  text-align: center;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-mcw77-popular-games-guide__text-link {
  color: #26A9E0;
  text-decoration: underline;
  font-weight: bold;
}

.page-blog-mcw77-popular-games-guide__text-link:hover {
  color: #1a8cc7;
}

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

.page-blog-mcw77-popular-games-guide__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.page-blog-mcw77-popular-games-guide__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #333333;
  cursor: pointer;
  outline: none;
  list-style: none; /* Remove default marker */
}

.page-blog-mcw77-popular-games-guide__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-blog-mcw77-popular-games-guide__faq-question {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.page-blog-mcw77-popular-games-guide__faq-qtext {
  margin-right: 10px;
  color: #26A9E0;
}

.page-blog-mcw77-popular-games-guide__faq-toggle {
  font-size: 1.5rem;
  font-weight: normal;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

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

.page-blog-mcw77-popular-games-guide__faq-answer {
  padding: 0 25px 20px;
  font-size: 0.95rem;
  color: #555555;
}

/* Fixed floating buttons */
.page-blog-mcw77-popular-games-guide__fixed-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-blog-mcw77-popular-games-guide__fixed-btn {
  display: block;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  min-width: 120px;
}

.page-blog-mcw77-popular-games-guide__fixed-btn--register {
  background-color: #26A9E0; /* Primary brand color */
}

.page-blog-mcw77-popular-games-guide__fixed-btn--register:hover {
  background-color: #1a8cc7;
}

.page-blog-mcw77-popular-games-guide__fixed-btn--login {
  background-color: #EA7C07; /* Login specific color */
}

.page-blog-mcw77-popular-games-guide__fixed-btn--login:hover {
  background-color: #d16b00;
}

.page-blog-mcw77-popular-games-guide__copyright-info {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666666;
  background-color: #f8f8f8;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-mcw77-popular-games-guide__hero-section {
    padding: 40px 15px;
  }

  .page-blog-mcw77-popular-games-guide__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem); /* Adjust H1 for mobile */
  }

  .page-blog-mcw77-popular-games-guide__subtitle {
    font-size: 1rem;
  }

  .page-blog-mcw77-popular-games-guide__content-area,
  .page-blog-mcw77-popular-games-guide__section-intro,
  .page-blog-mcw77-popular-games-guide__section-games,
  .page-blog-mcw77-popular-games-guide__section-registration,
  .page-blog-mcw77-popular-games-guide__section-promotions,
  .page-blog-mcw77-popular-games-guide__section-app-download,
  .page-blog-mcw77-popular-games-guide__section-tips,
  .page-blog-mcw77-popular-games-guide__section-faq,
  .page-blog-mcw77-popular-games-guide__section-conclusion {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-mcw77-popular-games-guide__section-title {
    font-size: 1.8rem;
  }

  .page-blog-mcw77-popular-games-guide p,
  .page-blog-mcw77-popular-games-guide li {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  .page-blog-mcw77-popular-games-guide img,
  .page-blog-mcw77-popular-games-guide video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-mcw77-popular-games-guide__video-section {
    padding-top: 10px !important;
  }

  .page-blog-mcw77-popular-games-guide__cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .page-blog-mcw77-popular-games-guide__btn-primary,
  .page-blog-mcw77-popular-games-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-mcw77-popular-games-guide__fixed-buttons {
    flex-direction: row;
    width: calc(100% - 30px);
    left: 15px;
    right: 15px;
    bottom: 15px;
    justify-content: space-around;
    gap: 10px;
  }

  .page-blog-mcw77-popular-games-guide__fixed-btn {
    flex: 1;
    min-width: unset;
    padding: 12px 10px;
  }

  .page-blog-mcw77-popular-games-guide__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }

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