/* style/register-login-m88-login-troubleshooting.css */

.page-register-login-m88-login-troubleshooting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for body text on dark background */
  background-color: #0A1931; /* Main dark background */
}

.page-register-login-m88-login-troubleshooting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-register-login-m88-login-troubleshooting__hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #1a3a66 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
  border-bottom: 3px solid #FFD700;
}

.page-register-login-m88-login-troubleshooting__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-register-login-m88-login-troubleshooting__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #CCCCCC;
}

.page-register-login-m88-login-troubleshooting__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-register-login-m88-login-troubleshooting__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-register-login-m88-login-troubleshooting__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A1931;
}

.page-register-login-m88-login-troubleshooting__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-register-login-m88-login-troubleshooting__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-register-login-m88-login-troubleshooting__button--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-2px);
}

.page-register-login-m88-login-troubleshooting__button--download {
  background-color: #1A73E8; /* A different color for download for distinction */
  color: #FFFFFF;
}

.page-register-login-m88-login-troubleshooting__button--download:hover {
  background-color: #165CBF;
  transform: translateY(-2px);
}

.page-register-login-m88-login-troubleshooting__content-section {
  padding: 60px 0;
}

.page-register-login-m88-login-troubleshooting__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-register-login-m88-login-troubleshooting__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-register-login-m88-login-troubleshooting__section-title--highlight {
  background-color: #1A3A66;
  padding: 20px;
  border-radius: 10px;
  margin-top: 60px;
  margin-bottom: 40px;
  color: #FFD700;
}

.page-register-login-m88-login-troubleshooting__article {
  background-color: #0F2540; /* Slightly lighter dark blue for article backgrounds */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-register-login-m88-login-troubleshooting__article-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-register-login-m88-login-troubleshooting__sub-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-register-login-m88-login-troubleshooting__list,
.page-register-login-m88-login-troubleshooting__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #CCCCCC;
}

.page-register-login-m88-login-troubleshooting__ordered-list {
  list-style-type: decimal;
}

.page-register-login-m88-login-troubleshooting__list li,
.page-register-login-m88-login-troubleshooting__ordered-list li {
  margin-bottom: 10px;
}

.page-register-login-m88-login-troubleshooting__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-register-login-m88-login-troubleshooting__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-register-login-m88-login-troubleshooting__final-cta-text {
  text-align: center;
  font-size: 1.15em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-register-login-m88-login-troubleshooting__cta-group--bottom {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-register-login-m88-login-troubleshooting__hero-title {
    font-size: 2.5em;
  }

  .page-register-login-m88-login-troubleshooting__section-title {
    font-size: 2em;
  }

  .page-register-login-m88-login-troubleshooting__article-title {
    font-size: 1.8em;
  }

  .page-register-login-m88-login-troubleshooting__sub-title {
    font-size: 1.3em;
  }

  .page-register-login-m88-login-troubleshooting__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-register-login-m88-login-troubleshooting__button {
    width: 100%;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .page-register-login-m88-login-troubleshooting__hero-title {
    font-size: 2em;
  }

  .page-register-login-m88-login-troubleshooting__hero-description {
    font-size: 1em;
  }

  .page-register-login-m88-login-troubleshooting__section-title {
    font-size: 1.8em;
  }

  .page-register-login-m88-login-troubleshooting__article-title {
    font-size: 1.5em;
  }

  .page-register-login-m88-login-troubleshooting__article {
    padding: 20px;
  }
}