.page-resources-troubleshooting-fun88-login {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: var(--background-color, #FFFFFF); /* Fallback to white if var not set */
}

.page-resources-troubleshooting-fun88-login__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-troubleshooting-fun88-login__hero-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  background-color: #26A9E0;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-troubleshooting-fun88-login__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-resources-troubleshooting-fun88-login__intro-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-troubleshooting-fun88-login__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-troubleshooting-fun88-login__btn-primary,
.page-resources-troubleshooting-fun88-login__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  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;
  max-width: 100%;
  box-sizing: border-box;
}

.page-resources-troubleshooting-fun88-login__btn-primary {
  background-color: #EA7C07;
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-troubleshooting-fun88-login__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-resources-troubleshooting-fun88-login__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-troubleshooting-fun88-login__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-troubleshooting-fun88-login__common-issues,
.page-resources-troubleshooting-fun88-login__troubleshooting-guide,
.page-resources-troubleshooting-fun88-login__contact-support,
.page-resources-troubleshooting-fun88-login__secure-login,
.page-resources-troubleshooting-fun88-login__faq-section,
.page-resources-troubleshooting-fun88-login__cta-bottom {
  padding: 60px 0;
}

.page-resources-troubleshooting-fun88-login__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-troubleshooting-fun88-login__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-resources-troubleshooting-fun88-login__issue-grid,
.page-resources-troubleshooting-fun88-login__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-troubleshooting-fun88-login__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
}

.page-resources-troubleshooting-fun88-login__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-troubleshooting-fun88-login__card-image,
.page-resources-troubleshooting-fun88-login__tip-icon {
  width: 100%;
  height: auto;
  max-width: 400px; /* Adjust max-width for content images */
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block;
}

.page-resources-troubleshooting-fun88-login__card-title,
.page-resources-troubleshooting-fun88-login__tip-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-troubleshooting-fun88-login__card-text {
  font-size: 1em;
  color: #555555;
}

.page-resources-troubleshooting-fun88-login__steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-resources-troubleshooting-fun88-login__step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-troubleshooting-fun88-login__step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #26A9E0;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
}

.page-resources-troubleshooting-fun88-login__step-content {
  flex-grow: 1;
}

.page-resources-troubleshooting-fun88-login__step-title {
  font-size: 1.3em;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-troubleshooting-fun88-login__step-content p {
  color: #555555;
}

.page-resources-troubleshooting-fun88-login__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-troubleshooting-fun88-login__dark-bg .page-resources-troubleshooting-fun88-login__section-title,
.page-resources-troubleshooting-fun88-login__dark-bg .page-resources-troubleshooting-fun88-login__section-description {
  color: #ffffff;
}

.page-resources-troubleshooting-fun88-login__light-bg {
  background-color: #f5f8fa; /* A slightly off-white for contrast */
  color: #333333;
}

.page-resources-troubleshooting-fun88-login__support-list {
  list-style: disc;
  max-width: 800px;
  margin: 0 auto 40px auto;
  padding-left: 25px;
  font-size: 1.1em;
}

.page-resources-troubleshooting-fun88-login__support-list li {
  margin-bottom: 10px;
}

.page-resources-troubleshooting-fun88-login__tip-item {
  text-align: center;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
}

.page-resources-troubleshooting-fun88-login__tip-item p {
  color: #555555;
}

.page-resources-troubleshooting-fun88-login__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-troubleshooting-fun88-login__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-resources-troubleshooting-fun88-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-resources-troubleshooting-fun88-login__faq-question::-webkit-details-marker {
  display: none;
}

.page-resources-troubleshooting-fun88-login__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-resources-troubleshooting-fun88-login__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-resources-troubleshooting-fun88-login__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #f0f0f0;
}

.page-resources-troubleshooting-fun88-login__cta-bottom {
  text-align: center;
}

/* Image responsiveness */
.page-resources-troubleshooting-fun88-login img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-resources-troubleshooting-fun88-login__main-title {
    font-size: 2.8em;
  }
  .page-resources-troubleshooting-fun88-login__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-troubleshooting-fun88-login {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-troubleshooting-fun88-login__hero-section {
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-troubleshooting-fun88-login__main-title {
    font-size: 2.2em;
  }
  .page-resources-troubleshooting-fun88-login__intro-text {
    font-size: 1em;
  }
  .page-resources-troubleshooting-fun88-login__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-resources-troubleshooting-fun88-login__btn-primary,
  .page-resources-troubleshooting-fun88-login__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-resources-troubleshooting-fun88-login__common-issues,
  .page-resources-troubleshooting-fun88-login__troubleshooting-guide,
  .page-resources-troubleshooting-fun88-login__contact-support,
  .page-resources-troubleshooting-fun88-login__secure-login,
  .page-resources-troubleshooting-fun88-login__faq-section,
  .page-resources-troubleshooting-fun88-login__cta-bottom {
    padding: 40px 0;
  }
  .page-resources-troubleshooting-fun88-login__section-title {
    font-size: 1.8em;
  }
  .page-resources-troubleshooting-fun88-login__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-resources-troubleshooting-fun88-login__issue-grid,
  .page-resources-troubleshooting-fun88-login__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-troubleshooting-fun88-login__card {
    padding: 20px;
  }
  .page-resources-troubleshooting-fun88-login__card-title,
  .page-resources-troubleshooting-fun88-login__tip-title {
    font-size: 1.3em;
  }
  .page-resources-troubleshooting-fun88-login__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .page-resources-troubleshooting-fun88-login__step-number {
    margin-bottom: 15px;
  }
  .page-resources-troubleshooting-fun88-login__step-title {
    font-size: 1.2em;
  }
  .page-resources-troubleshooting-fun88-login__support-list {
    padding-left: 20px;
    font-size: 1em;
  }
  .page-resources-troubleshooting-fun88-login__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-resources-troubleshooting-fun88-login__faq-answer {
    padding: 15px 20px;
  }

  /* Mobile image and video responsiveness */
  .page-resources-troubleshooting-fun88-login img,
  .page-resources-troubleshooting-fun88-login video,
  .page-resources-troubleshooting-fun88-login__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-troubleshooting-fun88-login__section,
  .page-resources-troubleshooting-fun88-login__card,
  .page-resources-troubleshooting-fun88-login__container,
  .page-resources-troubleshooting-fun88-login__video-section,
  .page-resources-troubleshooting-fun88-login__video-container,
  .page-resources-troubleshooting-fun88-login__video-wrapper,
  .page-resources-troubleshooting-fun88-login__cta-buttons,
  .page-resources-troubleshooting-fun88-login__button-group,
  .page-resources-troubleshooting-fun88-login__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-resources-troubleshooting-fun88-login__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-resources-troubleshooting-fun88-login__main-title {
    font-size: 1.8em;
  }
  .page-resources-troubleshooting-fun88-login__section-title {
    font-size: 1.5em;
  }
  .page-resources-troubleshooting-fun88-login__btn-primary,
  .page-resources-troubleshooting-fun88-login__btn-secondary {
    padding: 10px 15px;
    font-size: 0.9em;
  }
}