/* style/blog-mu99-win-latest-promotions.css */
.page-blog-mu99-win-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Body background #1a1a2e is dark, so use light text */
  line-height: 1.6;
  background-color: transparent; /* Main content background will be transparent to show body background */
}

.page-blog-mu99-win-latest-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-mu99-win-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding, body handles header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-mu99-win-latest-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-mu99-win-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensure image covers the area without distortion */
}

.page-blog-mu99-win-latest-promotions__hero-content {
  max-width: 900px;
  margin-top: 30px;
  padding: 0 20px;
}

.page-blog-mu99-win-latest-promotions__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for title */
  line-height: 1.2;
}

.page-blog-mu99-win-latest-promotions__intro-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-mu99-win-latest-promotions__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-blog-mu99-win-latest-promotions__btn-primary,
.page-blog-mu99-win-latest-promotions__btn-secondary,
.page-blog-mu99-win-latest-promotions__btn-small {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Ensure long words break */
  box-sizing: border-box;
  text-align: center;
}

.page-blog-mu99-win-latest-promotions__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-mu99-win-latest-promotions__btn-primary:hover {
  background-color: #1e87b6;
  border-color: #1e87b6;
}

.page-blog-mu99-win-latest-promotions__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-mu99-win-latest-promotions__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-mu99-win-latest-promotions__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
  background-color: #EA7C07; /* Custom Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-blog-mu99-win-latest-promotions__btn-small:hover {
  background-color: #c96706;
  border-color: #c96706;
}

.page-blog-mu99-win-latest-promotions__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-mu99-win-latest-promotions__sub-section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-mu99-win-latest-promotions__paragraph {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-blog-mu99-win-latest-promotions__promo-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-mu99-win-latest-promotions__promo-card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent light background for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-blog-mu99-win-latest-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-mu99-win-latest-promotions__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-mu99-win-latest-promotions__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-blog-mu99-win-latest-promotions__card-description {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-mu99-win-latest-promotions__product-promo-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-blog-mu99-win-latest-promotions__product-promo-list li {
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #26A9E0;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.05rem;
  color: #f0f0f0;
}

.page-blog-mu99-win-latest-promotions__product-promo-list li strong {
  color: #26A9E0;
}

.page-blog-mu99-win-latest-promotions__link-inline {
  color: #EA7C07;
  text-decoration: underline;
}

.page-blog-mu99-win-latest-promotions__link-inline:hover {
  color: #c96706;
}

.page-blog-mu99-win-latest-promotions__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-mu99-win-latest-promotions__step-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-mu99-win-latest-promotions__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-blog-mu99-win-latest-promotions__step-description {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-mu99-win-latest-promotions__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-mu99-win-latest-promotions__feature-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-blog-mu99-win-latest-promotions__feature-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-mu99-win-latest-promotions__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-blog-mu99-win-latest-promotions__feature-description {
  font-size: 1rem;
  color: #e0e0e0;
}

.page-blog-mu99-win-latest-promotions__faq-list {
  margin-top: 40px;
}

.page-blog-mu99-win-latest-promotions__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-blog-mu99-win-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-mu99-win-latest-promotions__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-blog-mu99-win-latest-promotions__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-blog-mu99-win-latest-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-mu99-win-latest-promotions__faq-item[open] .page-blog-mu99-win-latest-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-mu99-win-latest-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #e0e0e0;
}

.page-blog-mu99-win-latest-promotions__cta-final {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-mu99-win-latest-promotions__hero-content {
    padding: 0 15px;
  }
  .page-blog-mu99-win-latest-promotions__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog-mu99-win-latest-promotions__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }
  .page-blog-mu99-win-latest-promotions__sub-section-title {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
  }
}

@media (max-width: 768px) {
  .page-blog-mu99-win-latest-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-mu99-win-latest-promotions__content-area {
    padding: 30px 15px;
  }

  .page-blog-mu99-win-latest-promotions__hero-section {
    padding-top: 10px !important;
  }

  .page-blog-mu99-win-latest-promotions__hero-image,
  .page-blog-mu99-win-latest-promotions__card-image,
  .page-blog-mu99-win-latest-promotions__feature-image,
  .page-blog-mu99-win-latest-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-mu99-win-latest-promotions__section,
  .page-blog-mu99-win-latest-promotions__card,
  .page-blog-mu99-win-latest-promotions__container,
  .page-blog-mu99-win-latest-promotions__promo-card,
  .page-blog-mu99-win-latest-promotions__step-item,
  .page-blog-mu99-win-latest-promotions__feature-item,
  .page-blog-mu99-win-latest-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-mu99-win-latest-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-mu99-win-latest-promotions__btn-primary,
  .page-blog-mu99-win-latest-promotions__btn-secondary,
  .page-blog-mu99-win-latest-promotions__btn-small,
  .page-blog-mu99-win-latest-promotions a[class*="button"],
  .page-blog-mu99-win-latest-promotions 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-mu99-win-latest-promotions__promo-card-grid,
  .page-blog-mu99-win-latest-promotions__step-by-step,
  .page-blog-mu99-win-latest-promotions__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-mu99-win-latest-promotions__product-promo-list li {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .page-blog-mu99-win-latest-promotions__faq-question {
    font-size: 1.05rem;
    padding: 18px 20px;
  }

  .page-blog-mu99-win-latest-promotions__faq-answer {
    padding: 0 20px 18px;
  }
}

@media (max-width: 480px) {
  .page-blog-mu99-win-latest-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-blog-mu99-win-latest-promotions__intro-description {
    font-size: 1rem;
  }
  .page-blog-mu99-win-latest-promotions__btn-primary,
  .page-blog-mu99-win-latest-promotions__btn-secondary {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  .page-blog-mu99-win-latest-promotions__section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  .page-blog-mu99-win-latest-promotions__card-title {
    font-size: 1.3rem;
  }
  .page-blog-mu99-win-latest-promotions__step-title,
  .page-blog-mu99-win-latest-promotions__feature-title {
    font-size: 1.25rem;
  }
  .page-blog-mu99-win-latest-promotions__paragraph,
  .page-blog-mu99-win-latest-promotions__card-description,
  .page-blog-mu99-win-latest-promotions__step-description,
  .page-blog-mu99-win-latest-promotions__feature-description {
    font-size: 0.95rem;
  }
}