/* style/blog-mm88b-win-game-review.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-dark: #0a0a0a;
  --background-light: #ffffff;
  --login-color: #EA7C07;
  --padding-mobile: 15px;
}

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-mm88b-win-game-review {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

.page-blog-mm88b-win-game-review__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  background-color: var(--background-dark); /* Ensure dark background for contrast */
  overflow: hidden;
}

.page-blog-mm88b-win-game-review__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
}

.page-blog-mm88b-win-game-review__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly dim image for text readability */
}

.page-blog-mm88b-win-game-review__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: 90%;
  padding: 20px;
  z-index: 10;
  color: var(--text-light);
}

.page-blog-mm88b-win-game-review__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.page-blog-mm88b-win-game-review__description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 30px;
  color: var(--secondary-color);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-mm88b-win-game-review__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-mm88b-win-game-review__cta-buttons--center {
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-blog-mm88b-win-game-review__btn-primary,
.page-blog-mm88b-win-game-review__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-mm88b-win-game-review__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-mm88b-win-game-review__btn-primary:hover {
  background-color: #1e87bb;
  border-color: #1e87bb;
}

.page-blog-mm88b-win-game-review__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-mm88b-win-game-review__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-blog-mm88b-win-game-review__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  color: var(--text-dark); /* Dark text for light background */
  background-color: var(--background-light);
  box-sizing: border-box;
}

.page-blog-mm88b-win-game-review__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-mm88b-win-game-review__content-area p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.page-blog-mm88b-win-game-review__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-blog-mm88b-win-game-review__feature-item {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-blog-mm88b-win-game-review__feature-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-blog-mm88b-win-game-review__game-review-section {
  margin-bottom: 60px;
  padding: 30px;
  background-color: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
}

.page-blog-mm88b-win-game-review__game-subtitle {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-align: center;
}

.page-blog-mm88b-win-game-review__game-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-blog-mm88b-win-game-review__advantage-list,
.page-blog-mm88b-win-game-review__promotion-list,
.page-blog-mm88b-win-game-review__registration-steps {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}

.page-blog-mm88b-win-game-review__advantage-list li,
.page-blog-mm88b-win-game-review__promotion-list li,
.page-blog-mm88b-win-game-review__registration-steps li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1rem;
}

.page-blog-mm88b-win-game-review__advantage-list li::before,
.page-blog-mm88b-win-game-review__promotion-list li::before,
.page-blog-mm88b-win-game-review__registration-steps li::before {
  content: '✔';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-blog-mm88b-win-game-review__registration-steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  left: 0;
  top: 2px;
}

.page-blog-mm88b-win-game-review__faq-list {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-mm88b-win-game-review__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-dark);
}

.page-blog-mm88b-win-game-review__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--primary-color);
}

.page-blog-mm88b-win-game-review__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-mm88b-win-game-review__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-blog-mm88b-win-game-review__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: var(--primary-color);
}

.page-blog-mm88b-win-game-review__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  color: var(--text-dark);
}

.page-blog-mm88b-win-game-review__faq-image-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-blog-mm88b-win-game-review__faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-mm88b-win-game-review__hero-content {
    padding: 15px;
    width: 95%;
  }
  .page-blog-mm88b-win-game-review__content-area {
    padding: 40px 15px;
  }
  .page-blog-mm88b-win-game-review__section-title {
    margin-bottom: 25px;
  }
  .page-blog-mm88b-win-game-review__game-subtitle {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .page-blog-mm88b-win-game-review {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-mm88b-win-game-review__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-mm88b-win-game-review__hero-content {
    position: static;
    transform: none;
    padding: 20px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Add background for text on mobile */
  }
  .page-blog-mm88b-win-game-review__hero-image {
    filter: brightness(0.4); /* Dim more on mobile if content is on top */
  }
  .page-blog-mm88b-win-game-review__hero-image-wrapper {
    max-height: 400px;
  }
  .page-blog-mm88b-win-game-review__main-title {
    font-size: 2.2rem;
  }
  .page-blog-mm88b-win-game-review__description {
    font-size: 1rem;
  }
  .page-blog-mm88b-win-game-review__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-blog-mm88b-win-game-review__btn-primary,
  .page-blog-mm88b-win-game-review__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
    margin-left: auto;
    margin-right: auto;
  }
  .page-blog-mm88b-win-game-review__content-area {
    padding: 30px var(--padding-mobile);
  }
  .page-blog-mm88b-win-game-review__section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .page-blog-mm88b-win-game-review__game-subtitle {
    font-size: 1.5rem;
  }
  .page-blog-mm88b-win-game-image,
  .page-blog-mm88b-win-game-review__faq-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-mm88b-win-game-review__game-review-section,
  .page-blog-mm88b-win-game-review__feature-item,
  .page-blog-mm88b-win-game-review__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: var(--padding-mobile);
    padding-right: var(--padding-mobile);
    margin-left: auto;
    margin-right: auto;
  }
  .page-blog-mm88b-win-game-review__faq-item summary {
    font-size: 1rem;
    padding: 15px;
  }
  .page-blog-mm88b-win-game-review__faq-answer {
    padding: 0 15px 15px 15px;
  }
  .page-blog-mm88b-win-game-review__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
  .page-blog-mm88b-win-game-review__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: var(--padding-mobile);
    padding-right: var(--padding-mobile);
    overflow: hidden !important;
  }
}