/* style/faq-account-issues.css */
/* 页面完整样式代码 - 注意：所有选择器必须使用BEM命名规则（双下划线__连接） */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark-bg: #FFFFFF; /* For dark backgrounds */
  --text-color-light-bg: #333333; /* For light backgrounds */
  --button-login-color: #EA7C07; /* For login buttons */
  --body-bg-color: #0a0a0a; /* From shared.css */
}

.page-faq-account-issues {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark-bg); /* Default text color for dark body background */
  background-color: var(--body-bg-color); /* Inherit from body or shared, ensure consistency */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-faq-account-issues__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-faq-account-issues__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--text-color-dark-bg);
}

.page-faq-account-issues__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-faq-account-issues__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-faq-account-issues__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-faq-account-issues__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-faq-account-issues__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.page-faq-account-issues__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* General Section Styles */
.page-faq-account-issues__introduction-section,
.page-faq-account-issues__content-section,
.page-faq-account-issues__faq-section,
.page-faq-account-issues__contact-section {
  padding: 60px 0;
}

.page-faq-account-issues__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-faq-account-issues__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--button-login-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-faq-account-issues__sub-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-faq-account-issues__text-block {
  margin-bottom: 15px;
  color: var(--text-color-dark-bg); /* Default for dark body bg */
}

/* Dark Background Section */
.page-faq-account-issues__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: var(--text-color-dark-bg);
}

.page-faq-account-issues__dark-bg .page-faq-account-issues__section-title,
.page-faq-account-issues__dark-bg .page-faq-account-issues__sub-title {
  color: var(--secondary-color); /* White titles on dark background */
}

.page-faq-account-issues__dark-bg .page-faq-account-issues__section-title::after {
  background-color: var(--button-login-color);
}

/* Light Background Section */
.page-faq-account-issues__light-bg {
  background-color: var(--secondary-color); /* White background */
  color: var(--text-color-light-bg); /* Dark text on light background */
}

.page-faq-account-issues__light-bg .page-faq-account-issues__section-title,
.page-faq-account-issues__light-bg .page-faq-account-issues__sub-title {
  color: var(--primary-color); /* Primary color titles on light background */
}

.page-faq-account-issues__light-bg .page-faq-account-issues__text-block,
.page-faq-account-issues__light-bg .page-faq-account-issues__list-item {
  color: var(--text-color-light-bg);
}

/* List Styles */
.page-faq-account-issues__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-color-dark-bg); /* Default for dark body bg */
}

.page-faq-account-issues__ordered-list {
  list-style: decimal inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-color-dark-bg); /* Default for dark body bg */
}

.page-faq-account-issues__list-item,
.page-faq-account-issues__sub-list-item {
  margin-bottom: 10px;
  color: var(--text-color-dark-bg); /* Default for dark body bg */
}

.page-faq-account-issues__sub-list {
  list-style: circle inside;
  margin-left: 20px;
  margin-top: 10px;
}

/* Buttons */
.page-faq-account-issues__btn-primary,
.page-faq-account-issues__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box; /* Ensure padding doesn't push width */
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-faq-account-issues__btn-primary {
  background-color: var(--button-login-color); /* Login color for primary action */
  color: var(--secondary-color);
  border: 2px solid var(--button-login-color);
}

.page-faq-account-issues__btn-primary:hover {
  background-color: #c96806; /* Darken #EA7C07 */
  border-color: #c96806;
}

.page-faq-account-issues__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-faq-account-issues__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-faq-account-issues__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Images */
.page-faq-account-issues__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto; /* Center images */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq-account-issues__image-center {
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-faq-account-issues__faq-list {
  margin-top: 30px;
}

.page-faq-account-issues__faq-item {
  background-color: #1a1a1a; /* Darker background for FAQ items */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-faq-account-issues__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-faq-account-issues__faq-question:hover {
  background-color: #2087b3; /* Darken #26A9E0 */
}

.page-faq-account-issues__faq-title {
  margin: 0;
  color: var(--secondary-color);
}

.page-faq-account-issues__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.page-faq-account-issues__faq-item.active .page-faq-account-issues__faq-toggle {
  transform: rotate(45deg); /* Change to X or - */
}

.page-faq-account-issues__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px; /* Initial padding 0 */
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #1a1a1a; /* Ensure dark background for answer text */
  color: var(--text-color-dark-bg);
}

/* Crucial for FAQ expansion */
.page-faq-account-issues__faq-item.active .page-faq-account-issues__faq-answer {
  max-height: 1000px !important; /* Ensure enough height for content */
  padding: 20px; /* Expanded padding */
}

.page-faq-account-issues__faq-answer .page-faq-account-issues__text-block {
  margin-bottom: 0; /* Remove extra margin for last paragraph in answer */
}

/* Contact Section Specific */
.page-faq-account-issues__contact-text {
  text-align: center;
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-faq-account-issues__hero-title {
    font-size: 2.8em;
  }
  .page-faq-account-issues__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-faq-account-issues__hero-section {
    height: 450px;
  }
  .page-faq-account-issues__hero-title {
    font-size: 2em;
  }
  .page-faq-account-issues__hero-description {
    font-size: 1em;
  }
  .page-faq-account-issues__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-faq-account-issues__btn-primary,
  .page-faq-account-issues__btn-secondary {
    width: 100%;
  }

  .page-faq-account-issues__section-title {
    font-size: 1.8em;
  }
  .page-faq-account-issues__sub-title {
    font-size: 1.5em;
  }
  .page-faq-account-issues__introduction-section,
  .page-faq-account-issues__content-section,
  .page-faq-account-issues__faq-section,
  .page-faq-account-issues__contact-section {
    padding: 40px 0;
  }
  .page-faq-account-issues__container {
    padding: 0 15px;
  }
  
  /* Mobile image responsiveness */
  .page-faq-account-issues img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers with images/videos/buttons must be responsive */
  .page-faq-account-issues__section,
  .page-faq-account-issues__card,
  .page-faq-account-issues__container,
  .page-faq-account-issues__hero-section,
  .page-faq-account-issues__introduction-section,
  .page-faq-account-issues__content-section,
  .page-faq-account-issues__faq-section,
  .page-faq-account-issues__contact-section,
  .page-faq-account-issues__cta-buttons,
  .page-faq-account-issues__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px; /* Add padding to prevent content touching edges */
    padding-right: 15px; /* Add padding to prevent content touching edges */
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  .page-faq-account-issues__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
  }

  .page-faq-account-issues__btn-primary,
  .page-faq-account-issues__btn-secondary {
    padding: 10px 15px;
    font-size: 1em;
  }
  
  /* Ensure padding-top for hero section */
  .page-faq-account-issues__hero-section {
    padding-top: 0 !important; /* Hero is full screen, already handled by body padding-top */
  }
}

@media (max-width: 480px) {
  .page-faq-account-issues__hero-section {
    height: 400px;
  }
  .page-faq-account-issues__hero-title {
    font-size: 1.8em;
  }
  .page-faq-account-issues__section-title {
    font-size: 1.5em;
  }
  .page-faq-account-issues__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-faq-account-issues__faq-answer {
    padding: 15px;
  }
}