/* style/blog-mu888-latest-access-methods.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-color: #EA7C07;
  --background-color: #0a0a0a; /* Body background from shared.css */
  --text-light: #ffffff;
  --text-dark: #333333;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
}

.page-blog-mu888-latest-access-methods {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--background-color);
}

.page-blog-mu888-latest-access-methods__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom for content */
  overflow: hidden;
  color: var(--text-light);
}

.page-blog-mu888-latest-access-methods__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for large screens */
  overflow: hidden;
  margin-bottom: 40px; /* Space between image and text */
}

.page-blog-mu888-latest-access-methods__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-mu888-latest-access-methods__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1; /* Ensure content is above any potential background elements */
}

.page-blog-mu888-latest-access-methods__main-title {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-blog-mu888-latest-access-methods__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.page-blog-mu888-latest-access-methods__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-mu888-latest-access-methods__btn-primary,
.page-blog-mu888-latest-access-methods__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-mu888-latest-access-methods__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-blog-mu888-latest-access-methods__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-blog-mu888-latest-access-methods__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-mu888-latest-access-methods__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-blog-mu888-latest-access-methods__content-section {
  padding: 60px 20px;
  background-color: var(--secondary-color); /* Light background for content */
  color: var(--text-dark); /* Dark text for light background */
}

.page-blog-mu888-latest-access-methods__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-blog-mu888-latest-access-methods__section-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-blog-mu888-latest-access-methods p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.page-blog-mu888-latest-access-methods__list,
.page-blog-mu888-latest-access-methods__numbered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-blog-mu888-latest-access-methods__numbered-list {
  list-style-type: decimal;
}

.page-blog-mu888-latest-access-methods__list-item {
  margin-bottom: 10px;
}

.page-blog-mu888-latest-access-methods__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-blog-mu888-latest-access-methods__faq-list {
  margin-top: 40px;
}

.page-blog-mu888-latest-access-methods__faq-item {
  background-color: var(--card-bg-dark); /* Using translucent background for dark body */
  color: var(--text-light);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-blog-mu888-latest-access-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-blog-mu888-latest-access-methods__faq-question:hover {
  background-color: darken(var(--primary-color), 5%);
}

.page-blog-mu888-latest-access-methods__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-mu888-latest-access-methods__faq-item[open] .page-blog-mu888-latest-access-methods__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-mu888-latest-access-methods__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-mu888-latest-access-methods__faq-item summary {
  list-style: none;
}

.page-blog-mu888-latest-access-methods__faq-answer {
  padding: 15px 25px 25px;
  background-color: var(--background-color);
  color: var(--text-light);
}

.page-blog-mu888-latest-access-methods__faq-answer p {
  margin-bottom: 0;
}

.page-blog-mu888-latest-access-methods__cta-footer {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-mu888-latest-access-methods__main-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-blog-mu888-latest-access-methods__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-mu888-latest-access-methods__hero-content {
    padding: 0 15px;
  }

  .page-blog-mu888-latest-access-methods__main-title {
    font-size: 2em;
  }

  .page-blog-mu888-latest-access-methods__description {
    font-size: 1em;
  }

  .page-blog-mu888-latest-access-methods__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-mu888-latest-access-methods__btn-primary,
  .page-blog-mu888-latest-access-methods__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }

  .page-blog-mu888-latest-access-methods__content-section {
    padding: 40px 15px;
  }

  .page-blog-mu888-latest-access-methods__section-title {
    font-size: 1.7em;
  }

  /* Mobile image responsiveness */
  .page-blog-mu888-latest-access-methods img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile container responsiveness */
  .page-blog-mu888-latest-access-methods__hero-section,
  .page-blog-mu888-latest-access-methods__content-section,
  .page-blog-mu888-latest-access-methods__container,
  .page-blog-mu888-latest-access-methods__cta-buttons,
  .page-blog-mu888-latest-access-methods__faq-list,
  .page-blog-mu888-latest-access-methods__faq-item,
  .page-blog-mu888-latest-access-methods__cta-footer {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-blog-mu888-latest-access-methods__hero-image-wrapper {
    max-height: none; /* Remove max-height for mobile hero image */
  }

  .page-blog-mu888-latest-access-methods__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog-mu888-latest-access-methods__faq-answer {
    padding: 10px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-mu888-latest-access-methods__main-title {
    font-size: 1.8em;
  }

  .page-blog-mu888-latest-access-methods__section-title {
    font-size: 1.5em;
  }
}