/* style/blog-hello88-login-troubleshooting.css */

/* Custom Colors */
:root {
  --page-bg: #08160F;
  --card-bg: #11271B;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
  --brand-primary: #11A84E;
  --brand-secondary: #22C768;
}

.page-blog-hello88-login-troubleshooting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--page-bg); /* Body background is dark, so main text is light */
}

.page-blog-hello88-login-troubleshooting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: var(--deep-green);
  overflow: hidden;
}

.page-blog-hello88-login-troubleshooting__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-hello88-login-troubleshooting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-hello88-login-troubleshooting__hero-content {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: center;
  padding: 0 20px;
  z-index: 1;
}

.page-blog-hello88-login-troubleshooting__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em);
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-blog-hello88-login-troubleshooting__intro-text {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-hello88-login-troubleshooting__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-hello88-login-troubleshooting__btn-primary,
.page-blog-hello88-login-troubleshooting__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-blog-hello88-login-troubleshooting__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-hello88-login-troubleshooting__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-hello88-login-troubleshooting__btn-secondary {
  background-color: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
}

.page-blog-hello88-login-troubleshooting__btn-secondary:hover {
  background-color: var(--gold-color);
  color: var(--page-bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-hello88-login-troubleshooting__video-section {
  background-color: var(--card-bg);
  padding: 60px 20px;
  text-align: center;
}

.page-blog-hello88-login-troubleshooting__section-header {
  margin-bottom: 40px;
}

.page-blog-hello88-login-troubleshooting__section-title {
  font-size: 2.2em;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-blog-hello88-login-troubleshooting__section-description {
  font-size: 1.1em;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-hello88-login-troubleshooting__video-container {
  width: 100%;
  max-width: 1000px; /* Adjusted max-width for video */
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background-color: #000;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-hello88-login-troubleshooting__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-blog-hello88-login-troubleshooting__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-hello88-login-troubleshooting__content-area {
  background-color: var(--page-bg);
  padding: 60px 20px;
}

.page-blog-hello88-login-troubleshooting__wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.page-blog-hello88-login-troubleshooting__text-block {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1em;
}

.page-blog-hello88-login-troubleshooting__issue-card,
.page-blog-hello88-login-troubleshooting__step-card,
.page-blog-hello88-login-troubleshooting__card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-blog-hello88-login-troubleshooting__card-title {
  font-size: 1.6em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-hello88-login-troubleshooting__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  display: block;
}

.page-blog-hello88-login-troubleshooting__list {
  list-style: disc inside;
  color: var(--text-secondary);
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-blog-hello88-login-troubleshooting__list-item {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.page-blog-hello88-login-troubleshooting__faq-list {
  margin-top: 30px;
}

.page-blog-hello88-login-troubleshooting__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
}

.page-blog-hello88-login-troubleshooting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: var(--deep-green);
  color: var(--text-main);
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-blog-hello88-login-troubleshooting__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hello88-login-troubleshooting__faq-question:hover {
  background-color: var(--brand-primary);
}

.page-blog-hello88-login-troubleshooting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-blog-hello88-login-troubleshooting__faq-answer {
  padding: 20px 25px;
  color: var(--text-secondary);
  background-color: var(--card-bg);
  font-size: 1em;
}

.page-blog-hello88-login-troubleshooting__related-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-hello88-login-troubleshooting__article-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-blog-hello88-login-troubleshooting__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-hello88-login-troubleshooting__article-title {
  font-size: 1.3em;
  font-weight: 600;
  margin: 15px 20px 10px;
  line-height: 1.3;
}

.page-blog-hello88-login-troubleshooting__article-title a {
  color: var(--gold-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-hello88-login-troubleshooting__article-title a:hover {
  color: var(--brand-primary);
}

.page-blog-hello88-login-troubleshooting__article-meta {
  font-size: 0.9em;
  color: var(--text-secondary);
  margin: 0 20px 10px;
}

.page-blog-hello88-login-troubleshooting__article-excerpt {
  font-size: 0.95em;
  color: var(--text-secondary);
  margin: 0 20px 20px;
  flex-grow: 1;
}

.page-blog-hello88-login-troubleshooting__read-more {
  display: inline-block;
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: color 0.3s ease;
}

.page-blog-hello88-login-troubleshooting__read-more:hover {
  color: var(--gold-color);
  text-decoration: underline;
}

.page-blog-hello88-login-troubleshooting__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Color Contrast Fixes (applied based on body background being dark) */
.page-blog-hello88-login-troubleshooting__dark-bg {
  color: var(--text-main);
}

.page-blog-hello88-login-troubleshooting__light-bg {
  color: var(--text-secondary);
  background-color: var(--page-bg);
}

.page-blog-hello88-login-troubleshooting__text-contrast-fix {
  color: var(--text-main) !important;
}

.page-blog-hello88-login-troubleshooting__text-secondary {
  color: var(--text-secondary) !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-hello88-login-troubleshooting__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }

  .page-blog-hello88-login-troubleshooting__section-title {
    font-size: 1.8em;
  }

  .page-blog-hello88-login-troubleshooting__video-container {
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .page-blog-hello88-login-troubleshooting {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-hello88-login-troubleshooting__hero-content {
    padding: 0 15px;
  }

  .page-blog-hello88-login-troubleshooting__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-hello88-login-troubleshooting__btn-primary,
  .page-blog-hello88-login-troubleshooting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-hello88-login-troubleshooting__video-section,
  .page-blog-hello88-login-troubleshooting__content-area {
    padding: 40px 15px;
  }

  .page-blog-hello88-login-troubleshooting__video-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
    overflow: hidden !important;
  }

  .page-blog-hello88-login-troubleshooting__video-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-hello88-login-troubleshooting__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-hello88-login-troubleshooting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-hello88-login-troubleshooting__section,
  .page-blog-hello88-login-troubleshooting__card,
  .page-blog-hello88-login-troubleshooting__container,
  .page-blog-hello88-login-troubleshooting__issue-card,
  .page-blog-hello88-login-troubleshooting__step-card,
  .page-blog-hello88-login-troubleshooting__article-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-hello88-login-troubleshooting__video-section {
    padding-top: 10px !important; /* body 已承担 --header-offset，此处禁止 var(--header-offset) */
  }

  .page-blog-hello88-login-troubleshooting__related-articles-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-hello88-login-troubleshooting__faq-question {
    padding: 15px;
    font-size: 1em;
  }

  .page-blog-hello88-login-troubleshooting__faq-answer {
    padding: 15px;
  }
}