/* style/blog-how-to-download-install-daga68-android-app.css */
/* 页面完整样式代码 - 注意：所有选择器必须使用BEM命名规则（双下划线__连接） */

/* 定义颜色变量 */
:root {
  --primary-color: #C61F1F; /* 主色调 */
  --secondary-color: #E53030; /* 辅助色 */
  --card-bg: #2A1212; /* Card BG */
  --background-main: #140C0C; /* 背景 */
  --text-main: #FFF1E8; /* Text Main */
  --border-color: #6A1E1E; /* 边框 */
  --gold-color: #F3C54D; /* Gold */
  --deep-red-color: #7E0D0D; /* Deep Red */
  --button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* 按钮渐变 */
  --white-text: #ffffff;
  --dark-text: #333333;
}

/* 页面内容区域样式 - 根据 body 背景色（var(--background-color) 视为 dark #140C0C）设置文字颜色 */
.page-blog-how-to-download-install-daga68-android-app {
  color: var(--text-main); /* 必须使用浅色文字 */
  background-color: var(--background-main); /* 确保背景色为深色 */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-how-to-download-install-daga68-android-app__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-how-to-download-install-daga68-android-app__section-title {
  font-size: 32px;
  color: var(--gold-color); /* 标题使用金色 */
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-blog-how-to-download-install-daga68-android-app__subsection-title {
  font-size: 24px;
  color: var(--gold-color); /* 副标题使用金色 */
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-download-install-daga68-android-app p {
  margin-bottom: 15px;
  font-size: 16px;
}

.page-blog-how-to-download-install-daga68-android-app ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-blog-how-to-download-install-daga68-android-app ol {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-blog-how-to-download-install-daga68-android-app li {
  margin-bottom: 8px;
  font-size: 16px;
}

.page-blog-how-to-download-install-daga68-android-app strong {
  color: var(--gold-color);
}

/* HERO：主图必须用 <img src="[GALLERY:hero:...]>，禁止用 background-image 显示主图；区块衬底可用纯色/渐变，但不得替代主图 img */
.page-blog-how-to-download-install-daga68-android-app__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  /* 🚨 页头由 shared 的 body { padding-top: var(--header-offset); } 承担；此处仅用小额顶距，禁止 var(--header-offset) 以免双倍空白 */
  padding-top: 10px;
  background-color: var(--background-main); /* 衬底颜色 */
}

.page-blog-how-to-download-install-daga68-android-app__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Flex 与首屏全宽 */
}

.page-blog-how-to-download-install-daga68-android-app__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-how-to-download-install-daga68-android-app__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.page-blog-how-to-download-install-daga68-android-app__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-how-to-download-install-daga68-android-app__hero-content h1 {
  font-size: clamp(28px, 4vw, 48px); /* H1 字号 clamp */
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-download-install-daga68-android-app__hero-description {
  font-size: 18px;
  color: var(--text-main);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-blog-how-to-download-install-daga68-android-app__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* 移动端按钮换行 */
}

.page-blog-how-to-download-install-daga68-android-app__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient); /* 按钮渐变色 */
  color: var(--white-text);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%; /* 确保按钮响应式 */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-download-install-daga68-android-app__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-download-install-daga68-android-app__cta-button--secondary {
  background: var(--card-bg); /* 辅助按钮使用卡片背景色 */
  border: 1px solid var(--border-color);
}

.page-blog-how-to-download-install-daga68-android-app__cta-button--secondary:hover {
  background: var(--deep-red-color);
}

.page-blog-how-to-download-install-daga68-android-app__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-blog-how-to-download-install-daga68-android-app__image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  min-width: 200px; /* 最小尺寸要求 */
  min-height: 200px; /* 最小尺寸要求 */
}

.page-blog-how-to-download-install-daga68-android-app__download-cta {
  text-align: center;
  margin: 40px 0;
}

.page-blog-how-to-download-install-daga68-android-app__benefit-list,
.page-blog-how-to-download-install-daga68-android-app__install-steps,
.page-blog-how-to-download-install-daga68-android-app__troubleshoot-list,
.page-blog-how-to-download-install-daga68-android-app__feature-list {
  background-color: var(--card-bg);
  padding: 25px 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
}

.page-blog-how-to-download-install-daga68-android-app__benefit-list li,
.page-blog-how-to-download-install-daga68-android-app__install-steps li,
.page-blog-how-to-download-install-daga68-android-app__troubleshoot-list li,
.page-blog-how-to-download-install-daga68-android-app__feature-list li {
  color: var(--text-main);
  margin-bottom: 10px;
}

.page-blog-how-to-download-install-daga68-android-app__cta-section {
  text-align: center;
  padding: 50px 20px;
  background-color: var(--deep-red-color);
  border-radius: 10px;
  margin-top: 50px;
  margin-bottom: 50px;
  border: 1px solid var(--border-color);
}

.page-blog-how-to-download-install-daga68-android-app__cta-title {
  font-size: 36px;
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-how-to-download-install-daga68-android-app__cta-description {
  font-size: 20px;
  color: var(--text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ样式 */
.page-blog-how-to-download-install-daga68-android-app__faq-container {
  margin-top: 40px;
}

details.page-blog-how-to-download-install-daga68-android-app__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg); /* FAQ item 背景色 */
  color: var(--text-main); /* FAQ item 文字颜色 */
}
details.page-blog-how-to-download-install-daga68-android-app__faq-item summary.page-blog-how-to-download-install-daga68-android-app__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--gold-color); /* FAQ question 文字颜色 */
  font-weight: bold;
}
details.page-blog-how-to-download-install-daga68-android-app__faq-item summary.page-blog-how-to-download-install-daga68-android-app__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-how-to-download-install-daga68-android-app__faq-item summary.page-blog-how-to-download-install-daga68-android-app__faq-question:hover {
  background: var(--deep-red-color); /* Hover effect */
}
.page-blog-how-to-download-install-daga68-android-app__faq-qtext {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
}
.page-blog-how-to-download-install-daga68-android-app__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--gold-color); /* Toggle icon color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-how-to-download-install-daga68-android-app__faq-item .page-blog-how-to-download-install-daga68-android-app__faq-answer {
  padding: 0 20px 20px;
  background: var(--background-main); /* FAQ answer 背景色 */
  border-radius: 0 0 8px 8px;
  color: var(--text-main);
}
.page-blog-how-to-download-install-daga68-android-app__faq-answer p {
  margin-bottom: 0;
}

/* 🚨 移动端响应式设计（必须严格遵守） */
@media (max-width: 768px) {
  .page-blog-how-to-download-install-daga68-android-app {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-how-to-download-install-daga68-android-app__hero-section {
    padding-top: 10px !important; /* body 已留白；与桌面一致，小额顶距即可 */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-how-to-download-install-daga68-android-app__hero-image img {
    border-radius: 4px;
  }
  .page-blog-how-to-download-install-daga68-android-app__hero-content h1 {
    font-size: clamp(24px, 6vw, 36px);
  }
  .page-blog-how-to-download-install-daga68-android-app__hero-description {
    font-size: 16px;
  }
  .page-blog-how-to-download-install-daga68-android-app__cta-buttons {
    flex-direction: column; /* 移动端按钮垂直排列 */
    gap: 15px;
    padding: 0 15px; /* 按钮容器 padding */
  }
  .page-blog-how-to-download-install-daga68-android-app__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-how-to-download-install-daga68-android-app__section-title {
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-blog-how-to-download-install-daga68-android-app__subsection-title {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-blog-how-to-download-install-daga68-android-app__content-area {
    padding: 20px 15px;
  }
  .page-blog-how-to-download-install-daga68-android-app__image-wrapper {
    margin: 20px 0;
  }
  .page-blog-how-to-download-install-daga68-android-app__image-wrapper img {
    border-radius: 4px;
  }
  .page-blog-how-to-download-install-daga68-android-app__benefit-list,
  .page-blog-how-to-download-install-daga68-android-app__install-steps,
  .page-blog-how-to-download-install-daga68-android-app__troubleshoot-list,
  .page-blog-how-to-download-install-daga68-android-app__feature-list {
    padding: 20px;
  }
  .page-blog-how-to-download-install-daga68-android-app__cta-section {
    padding: 30px 15px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .page-blog-how-to-download-install-daga68-android-app__cta-title {
    font-size: 28px;
  }
  .page-blog-how-to-download-install-daga68-android-app__cta-description {
    font-size: 16px;
  }

  /* 移动端图片强制适配 */
  .page-blog-how-to-download-install-daga68-android-app img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-how-to-download-install-daga68-android-app__content-area,
  .page-blog-how-to-download-install-daga68-android-app__cta-section,
  .page-blog-how-to-download-install-daga68-android-app__faq-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  details.page-blog-how-to-download-install-daga68-android-app__faq-item summary.page-blog-how-to-download-install-daga68-android-app__faq-question { padding: 15px; }
  .page-blog-how-to-download-install-daga68-android-app__faq-qtext { font-size: 16px; }
  .page-blog-how-to-download-install-daga68-android-app__faq-toggle { font-size: 20px; }
  details.page-blog-how-to-download-install-daga68-android-app__faq-item .page-blog-how-to-download-install-daga68-android-app__faq-answer {
    padding: 0 15px 15px;
  }
}