/* style/blog-explore-mu66-platform-games-features.css */

/* Base styles for the page, assuming a dark body background from shared.css */
.page-blog-explore-mu66-platform-games-features {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Rely on body background from shared.css */
  line-height: 1.6;
}

.page-blog-explore-mu66-platform-games-features__section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-explore-mu66-platform-games-features__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: #26A9E0; /* Brand color as background for hero */
}

.page-blog-explore-mu66-platform-games-features__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-blog-explore-mu66-platform-games-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-explore-mu66-platform-games-features__hero-content {
  max-width: 900px;
  margin-top: 20px;
}

.page-blog-explore-mu66-platform-games-features__hero-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-blog-explore-mu66-platform-games-features__hero-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-explore-mu66-platform-games-features__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-explore-mu66-platform-games-features__btn-primary,
.page-blog-explore-mu66-platform-games-features__btn-secondary,
.page-blog-explore-mu66-platform-games-features__btn-text {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%; /* Ensure buttons adapt to container */
}

.page-blog-explore-mu66-platform-games-features__btn-primary {
  background-color: #EA7C07; /* Login/Register button color */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-blog-explore-mu66-platform-games-features__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-blog-explore-mu66-platform-games-features__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-blog-explore-mu66-platform-games-features__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
}

.page-blog-explore-mu66-platform-games-features__btn-register {
  background-color: #26A9E0;
  border-color: #26A9E0;
}

.page-blog-explore-mu66-platform-games-features__btn-register:hover {
  background-color: #1f8bc2;
  border-color: #1f8bc2;
}

.page-blog-explore-mu66-platform-games-features__btn-login {
  background-color: #EA7C07;
  border-color: #EA7C07;
}

.page-blog-explore-mu66-platform-games-features__btn-login:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-blog-explore-mu66-platform-games-features__btn-small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-blog-explore-mu66-platform-games-features__btn-text {
  color: #26A9E0;
  padding: 0;
  border: none;
  font-weight: 600;
}

.page-blog-explore-mu66-platform-games-features__btn-text:hover {
  text-decoration: underline;
}

.page-blog-explore-mu66-platform-games-features__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 30px;
  margin-top: 40px;
}

.page-blog-explore-mu66-platform-games-features__paragraph {
  font-size: 1.05em;
  color: #333333; /* Dark text for light background */
  margin-bottom: 20px;
  text-align: justify;
}

/* Light background for main content area, with dark text */
.page-blog-explore-mu66-platform-games-features__light-bg {
  background-color: #FFFFFF; /* White background for content sections */
  color: #333333; /* Dark text for contrast */
}

.page-blog-explore-mu66-platform-games-features__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-explore-mu66-platform-games-features__game-types-grid,
.page-blog-explore-mu66-platform-games-features__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-explore-mu66-platform-games-features__game-card,
.page-blog-explore-mu66-platform-games-features__feature-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
}

.page-blog-explore-mu66-platform-games-features__game-image,
.page-blog-explore-mu66-platform-games-features__feature-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-blog-explore-mu66-platform-games-features__game-title,
.page-blog-explore-mu66-platform-games-features__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-blog-explore-mu66-platform-games-features__game-title a,
.page-blog-explore-mu66-platform-games-features__feature-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-blog-explore-mu66-platform-games-features__game-title a:hover,
.page-blog-explore-mu66-platform-games-features__feature-title a:hover {
  text-decoration: underline;
}

.page-blog-explore-mu66-platform-games-features__game-description,
.page-blog-explore-mu66-platform-games-features__feature-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-blog-explore-mu66-platform-games-features__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-explore-mu66-platform-games-features__steps-list li {
  background-color: #f0faff;
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  color: #333333;
}

.page-blog-explore-mu66-platform-games-features__step-title {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-blog-explore-mu66-platform-games-features__step-description {
  color: #555555;
  margin-bottom: 10px;
}

.page-blog-explore-mu66-platform-games-features__list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 20px;
  color: #333333;
}

.page-blog-explore-mu66-platform-games-features__list li {
  margin-bottom: 10px;
  color: #555555;
}

.page-blog-explore-mu66-platform-games-features__faq-list {
  margin-top: 30px;
}

.page-blog-explore-mu66-platform-games-features__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-blog-explore-mu66-platform-games-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  color: #26A9E0;
  background-color: #eaf7ff;
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-blog-explore-mu66-platform-games-features__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-explore-mu66-platform-games-features__faq-qtext {
  flex-grow: 1;
}

.page-blog-explore-mu66-platform-games-features__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-explore-mu66-platform-games-features__faq-answer {
  padding: 0 25px 20px;
  color: #555555;
  font-size: 0.95em;
}

.page-blog-explore-mu66-platform-games-features__faq-answer p {
  margin-bottom: 0;
}

.page-blog-explore-mu66-platform-games-features__cta-bottom {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-explore-mu66-platform-games-features__hero-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
}

@media (max-width: 768px) {
  .page-blog-explore-mu66-platform-games-features {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-explore-mu66-platform-games-features__section-wrapper {
    padding: 20px 15px;
  }

  .page-blog-explore-mu66-platform-games-features__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-blog-explore-mu66-platform-games-features__hero-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }

  .page-blog-explore-mu66-platform-games-features__hero-description {
    font-size: 1em;
  }

  .page-blog-explore-mu66-platform-games-features__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-explore-mu66-platform-games-features__btn-primary,
  .page-blog-explore-mu66-platform-games-features__btn-secondary,
  .page-blog-explore-mu66-platform-games-features a[class*="button"],
  .page-blog-explore-mu66-platform-games-features 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;
  }

  .page-blog-explore-mu66-platform-games-features__game-types-grid,
  .page-blog-explore-mu66-platform-games-features__features-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-explore-mu66-platform-games-features__game-card,
  .page-blog-explore-mu66-platform-games-features__feature-item {
    padding: 20px;
  }

  .page-blog-explore-mu66-platform-games-features__game-image,
  .page-blog-explore-mu66-platform-games-features__feature-image {
    height: 180px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-explore-mu66-platform-games-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-explore-mu66-platform-games-features__section-title {
    font-size: 1.8em;
  }

  .page-blog-explore-mu66-platform-games-features__faq-question {
    padding: 15px 20px;
  }

  .page-blog-explore-mu66-platform-games-features__faq-answer {
    padding: 0 20px 15px;
  }
  
  .page-blog-explore-mu66-platform-games-features__section,
  .page-blog-explore-mu66-platform-games-features__card,
  .page-blog-explore-mu66-platform-games-features__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Ensure all containers with images/buttons/videos are responsive */
  .page-blog-explore-mu66-platform-games-features__hero-image-wrapper,
  .page-blog-explore-mu66-platform-games-features__game-card,
  .page-blog-explore-mu66-platform-games-features__feature-item,
  .page-blog-explore-mu66-platform-games-features__hero-cta-buttons,
  .page-blog-explore-mu66-platform-games-features__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

/* CSS for contrast safety (based on body being dark) */
.page-blog-explore-mu66-platform-games-features__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-explore-mu66-platform-games-features__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-explore-mu66-platform-games-features__game-card,
.page-blog-explore-mu66-platform-games-features__feature-item {
  background-color: #f8f8f8;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-blog-explore-mu66-platform-games-features__faq-item {
  background-color: #f8f8f8;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-blog-explore-mu66-platform-games-features__faq-question {
  background-color: #eaf7ff; /* Light blue, good contrast with #26A9E0 */
  color: #26A9E0;
}

.page-blog-explore-mu66-platform-games-features__paragraph,
.page-blog-explore-mu66-platform-games-features__game-description,
.page-blog-explore-mu66-platform-games-features__feature-description,
.page-blog-explore-mu66-platform-games-features__step-description,
.page-blog-explore-mu66-platform-games-features__list li,
.page-blog-explore-mu66-platform-games-features__faq-answer p {
  color: #555555; /* Slightly lighter dark for readability */
}

.page-blog-explore-mu66-platform-games-features a {
  color: #26A9E0;
}

.page-blog-explore-mu66-platform-games-features a:hover {
  color: #1f8bc2;
}