/* ========================================
   Download Banner
======================================== */
.download-banner {
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(0,123,255,0.08) 0%, rgba(140,100,255,0.08) 100%);
  backdrop-filter: blur(10px);
  margin: 80px 0 30px;
}

/* ========================================
   Download Card
======================================== */
.download-card {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px 40px;
  box-shadow: 0 10px 40px rgba(94, 89, 248, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.download-text .title {
  margin: 0 0 8px;
  font-size: 26px;
  color: #090B0E;
  font-weight: 600;
}

.download-text .subtitle {
  margin-bottom: 8px !important;
  font-size: 18px;
}

.download-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

/* Buttons */
.btn-win {
  background: #5E59F8;
  color: white;
}

.btn-win:hover {
  background: #0c04f7;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,123,255,0.3);
  color: white;
}

.btn-mac {
  background: white;
  color: #5E59F8;
  border: 2px solid #5E59F8;
}

.btn-mac:hover {
  background: #5E59F8;
  color: white;
}

/* Highlight Lines */
.highlight-line span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 16px;
  margin-top: 9px;
  color: #5E59F8;
}

.highlight-line span::before {
  content: "✓";
  color: #5E59F8;
  font-weight: bold;
  font-size: 16px;
}

.download-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.download-item .btn {
  margin: 10px;
}

/* Trust Badge */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #555;
  justify-content: center;
}

.trust-badge .shield {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.75;
}

/* ========================================
   Breadcrumb
======================================== */
.breadcrumb {
  color: #666;
  margin: 24px auto 8px;
}

.breadcrumb ol {
  list-style: none;
  padding: 0 20px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: #5E59F8;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.separator {
  color: #999;
  user-select: none;
}

/* ========================================
   TOC (Table of Contents)
======================================== */
.toc-wrapper {
  flex-shrink: 0;
  align-self: start;
}

.toc {
  background: #F8F9FA;
  border-radius: 8px;
  padding: 20px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  position: relative;
}

.toc-title {
  margin: 20px 0 8px;
  font-size: 24px;
  color: #090B0E;
  font-weight: 600;
}

/* List */
.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc > ul > li {
  margin: 10px 0;
}

/* Links */
.toc a {
  display: block;
  padding: 8px 0;
  border-radius: 8px;
  color: #090B0E;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.25s;
}

.toc a:hover { color: #5e59f8; }
.toc a.active { color: #5e59f8; }

/* Parent Item */
.toc .parent {
  position: relative;
}

.toc .parent > a {
  padding-left: 28px;
}

.toc .parent > a::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 30px;
  color: #090B0E;
  transition: transform 0.25s, color 0.25s;
}

.toc .parent.active > a::before {
  content: "▾";
  color: #5e59f8;
}

/* Child List */
.toc .children {
  max-height: 0;
  overflow: hidden;
  padding-left: 20px;
  transition: max-height .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toc .children.show {
  max-height: 500px;
}

.toc .children a {
  padding: 8px 12px;
  font-size: 16px;
  color: #6B7280;
}

.toc .children a.active {
  background: #5E59F814;
  color: #5e59f8;
}

/* Mobile Button */
.toc-toggle {
  display: none;
  position: fixed;
  left: 15px;
  top: 15px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 24px;
  background: #007bff;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 123, 255, .4);
}

/* ========================================
   Layout Wrapper
======================================== */
.my-wrapper {
  max-width: 1240px;
  margin: 20px auto;
  display: flex;
  gap: 30px;
  padding: 0 20px;
}

hr {
  margin: 48px;
}

/* ========================================
   Article Layout
======================================== */
.article {
  padding: 0 20px;
}

.article-header h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  color: #090B0E;
  font-weight: 600;
}

.article-meta {
  color: #6B7280;
  font-size: 16px;
  margin: 8px 0 48px;
}

.featured-image {
  margin: 48px 0;
  border-radius: 12px;
  overflow: hidden;
}

/* Headings */
.article-body > h2,
.article-body > h3,
.article-body > h4 {
  margin-bottom: 24px;
  scroll-margin-top: 100px;
  font-weight: 600;
  line-height: 1.3;
}

.article-body > h4 {
  font-size: 20px;             /* 稍微调小字号 */
  display: block;              /* 确保宽度可控 */
  padding-bottom: 8px;
  background-image: linear-gradient(to right, #e0d7ff, rgba(224, 215, 255, 0));
  background-size: 60% 2px;    /* 宽度占60%，高度为2px */
  background-repeat: no-repeat;
  background-position: bottom left;
}

.article-body > h4 span {
  color: #5e59f8;
  margin-right: 10px;
  position: relative;
  display: inline-block;
}

/* 在 span 下方叠加一个小小的加重线 */
.article-body > h4 span::after {
  content: "";
  position: absolute;
  bottom: -8px; /* 刚好压在背景渐变线上 */
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #5e59f8; /* 深色短线，形成视觉焦点 */
}

.article-body > h2 {
  font-size: 28px;
  padding-bottom: 12px;
  margin-bottom: 32px; /* 增加下方间距，让大标题更有呼吸感 */
  position: relative;
  display: flex;
  align-items: center;
}

/* 使用伪元素制作一个精致的短粗渐变底线 */
.article-body > h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px; /* 短线更有高级感 */
  height: 4px;
  background: linear-gradient(to right, #5e59f8, rgba(94, 89, 248, 0));
  border-radius: 2px;
}

.article-body > h2 span {
  color: #5e59f8;
  margin-right: 8px; /* 如果 span 是序号，增加点间距 */
}

.article-body > h3,
.related-articles > h5 {
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  padding-left: 20px;
  position: relative;
}

.article-body > h3::before,
.related-articles > h5::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 100%;
  background-color: #5E59F8;
  border-radius: 999px;
}

.article-body p,
.article-header p {
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 150%;
}

/* Info Card */
.info-card {
  background: #E3E6FA;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

.info-card p { margin-bottom: 0; }

.info-card-blue {
  background: #e8faf8;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

.info-card-red p { margin-bottom: 0; }

/* Code Block */
pre {
  background: #2d2d2d;
  color: #f8f8f2;
  border-radius: 8px;
  padding: 1rem;
  overflow-x: auto;
}

/* ========================================
   Pros & Cons
======================================== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.pros, .cons {
  padding: 20px;
  border-radius: 8px;
}

.pros h5,
.cons h5 {
  font-weight: 600;
  font-size: 20px;
}

.pros { background: #E3F9E9; }
.cons { background: #FFF0ED; }

.pros-cons ul {
  list-style: none;
  padding-left: 0;
  margin: 12px 0 0;
}

.pros-cons li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  line-height: 150%;
  font-size: 16px;
}

.pros li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url('/img/articles/pros-yes.webp');
  background-size: contain;
  background-repeat: no-repeat;
}

.cons li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url('/img/articles/cons-no.webp');
  background-size: contain;
  background-repeat: no-repeat;
}
/* ========================================
   Tools Box
======================================== */
.tools, .support, .not-support {
  display: block;
  gap: 20px;
  margin-bottom: 48px;
}

.tools-box, .yes-box {
  padding: 20px;
  border-radius: 8px;
  background: #E3F9E9;
}

.no-box {
  padding: 20px;
  border-radius: 8px;
  background: #FFF0ED;
}

.tools-box ul, .yes-box ul, .no-box ul {
  list-style: none;
  padding-left: 0;
  margin: 12px 0 0;
}

.tools-box ul li, .yes-box ul li, .no-box ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  line-height: 150%;
  font-size: 16px;
}

.tools-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url('/img/articles/pros-yes.webp');
  background-size: contain;
  background-repeat: no-repeat;
}
.yes-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url('/img/articles/pros-yes.webp');
  background-size: contain;
  background-repeat: no-repeat;
}
.no-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url('/img/articles/cons-no.webp');
  background-size: contain;
  background-repeat: no-repeat;
}
.dot-list {
  list-style: none;
  padding-left: 30px;
  margin-bottom: 40px;
}
.dot-list li {
  position: relative;
  padding: 0 1.4rem;
  line-height: 150%;
  margin-bottom: 8px;
}
.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #5E59F8;
}
/* ========================================
   Download Box
======================================== */
.download-box {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  margin: 30px 0;
  border: 2px solid #c3c1ff;
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.12);
}

.download-box h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.download-box span {
  color: #6B7280;
  font-size: 14px;
  line-height: 150%;
}

.download-box .btn { margin: 10px; }

/* ========================================
   Steps Guide
======================================== */
.steps-guide { margin: 0 auto; }

.step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1rem;
  align-items: start;
}

.step-number {
  background: #5E59F8;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

/* Style 2 */
.step-style2 {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  margin-bottom: 4rem;
  align-items: start;
}

.step-style2 .step-number {
  background: #5E59F8;
  color: white;
  width: 80px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content p {
  margin-top: 8px;
  line-height: 1.6;
  color: #6b7280; /* 比 text-muted 更柔和 */
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #090B0E;
}

.step-img {
  max-width: 100%;
  height: auto;
  border: 1px solid #e0e0e0;
}

/* ========================================
   优化后的 Comparison Table (全列垂直分割线版)
   ======================================== */
.comparison-table-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 32px 0 48px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(94, 89, 248, 0.06);
  border: 1px solid #EBEBFF;
}

.comparison-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  table-layout: fixed;
  background-color: #ffffff;
  /* 确保表格整体边框不会干扰内边框 */
  border-style: hidden; 
}

/* --- 表头（深紫色） --- */
.comparison-table thead tr {
  background-color: #7f7cf9;
}

.comparison-table th {
  padding: 18px 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 20;
  /* 表头内部的纵向分割线：使用半透明白色，更高级 */
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- 数据行基础样式 --- */
.comparison-table tbody tr {
  background-color: #ffffff;
  transition: background-color 0.2s ease;
}

.comparison-table td {
  padding: 20px 12px;
  text-align: center;
  color: #555;
  line-height: 1.5;
  /* 横向分割线 */
  border-bottom: 1px solid #F0F0FF;
  /* 纵向分割线：实现每一列之间的线条 */
  border-right: 1px solid #F0F0FF;
  background-color: inherit;
}

/* --- 第一列（固定列）的特殊处理 --- */
.comparison-table td:first-child,
.comparison-table th:first-child {
  position: sticky;
  left: 0;
  width: 160px;
  min-width: 160px;
  z-index: 10;
  text-align: center;
  font-weight: 600;
  /* 重点：确保固定列的右边框始终存在，不被遮挡 */
  border-right: 1px solid #F0F0FF !important;
}

/* 固定列在非悬停时的背景 */
.comparison-table td:first-child {
  background-color: #ffffff;
  color: #4A44E0;
}

/* 表头第一列背景保持深紫 */
.comparison-table th:first-child {
  background-color: #7f7cf9;
  z-index: 21;
}

/* --- 悬停效果 --- */
.comparison-table tbody tr:hover {
  background-color: #F6F5FF !important;
}

.comparison-table tbody tr:hover td {
  background-color: #F6F5FF !important;
  color: #333;
}

/* --- 视觉收尾 --- */
/* 最后一列去掉右边框，防止双边框或圆角溢出 */
.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: none;
}

/* 最后一行去掉底边框 */
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* 适配移动端 */
@media (max-width: 768px) {
  .comparison-table-wrapper {
    border-radius: 8px;
  }

  .comparison-table {
    font-size: 13px;
    table-layout: auto; /* 关键：取消固定列宽，让内容自适应 */
  }

  .comparison-table th {
    padding: 12px 8px;
    font-size: 13px;
  }

  .comparison-table td {
    padding: 14px 8px;
    font-size: 13px;
  }

  .comparison-table td:first-child,
  .comparison-table th:first-child {
    width: 90px;
    min-width: 90px;
    font-size: 12px;
    padding: 12px 6px;
  }
}


/* ========================================
   Related Box
======================================== */
.related-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin: 24px 0;
  font-size: 18px;
}

.style-3 {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 600;
}

.style-3:hover { text-decoration: underline; }

/* List (Solid) */
.list-solid {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.list-solid li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.list-solid li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -5px;
  color: #5E59F8;
  font-weight: bold;
  font-size: 20px;
}

/* ========================================
   PlaylistGo Card
======================================== */
.playlistgo-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 20px;
  padding: 1.8rem 2rem;
  margin: 3rem auto;
  border: 2px solid #c3c1ff;
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.12);
}

.card-logo img {
  width: 100px;
  border-radius: 16px;
}

.card-content {
  flex: 1;
  margin: 0 2.5rem;
  color: #333;
}

.card-content h5 {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 700;
}

.card-content p {
  margin: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.card-button {
  display: grid;
  align-items: center;
  gap: 20px;
}

/* ========================================
   Pro Card
======================================== */
.pro-card {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 2.5rem;
  padding: 2.5rem;
  border-radius: 20px;
  background: #fff;
  border: 2px solid #c3c1ff;
  box-shadow: 0 0 0 4px rgba(167,139,250,0.12);
  margin-bottom: 48px;
  word-break: break-word;
  align-items: center;
}

.pro-left h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.pro-left h5 span { color: #5E59F8; }

.pro-desc { color: #6B7280; }

.pro-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pro-features li {
  margin-bottom: 0.55rem;
  padding-left: 40px;
  position: relative;
  color: #6B7280;
}

.pro-features li::before {
  content: "✓";
  position: absolute;
  left: 15px;
  top: 0;
  color: #5E59F8;
  font-size: 1.2em;
  font-weight: bold;
}

/* Right box */
.pro-right {
  background: #f7f5ff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.pro-right img {
  max-width: 100%;
}

.pro-right .btn {
  margin-top: 20px;
}

.pro-logo {
  width: 100px;
  height: 100px;
}

.pro-note {
  font-size: 14px;
  color: #6B7280;
}

/* ========================================
   Related Articles
======================================== */
.related-articles {
  margin: 48px auto;
}

.related-heading {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.related-list {
  list-style: none;
  padding: 30px;
  margin-top: 24px;
  columns: 2;
  column-gap: 3rem;
  line-height: 1.5;
  border-radius: 8px;
  background: #F8F9FA;
}

.related-list li {
  break-inside: avoid;
  padding-left: 1.5em;
  margin-bottom: 0.8em;
  position: relative;
}

.related-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #5E59F8;
}

.related-list a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.2s;
}

.related-list a:hover {
  color: #635bff;
}

/* Sidebar version */
.related-list-side {
  list-style: none;
  margin-top: 20px;
  line-height: 1.5;
}

.related-list-side li {
  padding-left: 1.6rem;
  margin-bottom: 1rem;
  position: relative;
}

.related-list-side li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #090B0E;
  font-weight: bold;
}

.related-list-side a {
  color: #090B0E;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s;
}

.related-list-side a:hover {
  color: #5E59F8;
}

/* ========================================
   Author Bio
======================================== */
.author-bio {
  display: flex;
  gap: 1.8rem;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 18px;
  border: 1px solid #eaeaea;
  align-items: flex-start;
}

.author-avatar img {
  border-radius: 50%;
  width: 96px;
  height: 96px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.author-info { flex: 1; }

.author-name {
  margin: 0 0 0.3rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
}

.author-role {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: #635bff;
  font-weight: 600;
}

.author-desc {
  margin: 0 0 1.2rem;
  color: #444;
  line-height: 1.7;
  font-size: 1rem;
}

.author-links a {
  display: inline-block;
  margin-right: 1.2rem;
  color: #635bff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.author-links a:hover {
  color: #5148e6;
  text-decoration: underline;
}

/* ========================================
   Share Article
======================================== */
.share-article {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  margin: 2rem auto;
  max-width: 900px;
  flex-wrap: wrap;
}

.share-text {
  color: #555;
  font-weight: 500;
}

.share-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(94, 89, 248, 0.1);
  transition: all 0.2s;
}

.share-btn:hover {
  transform: translateY(-3px);
  background: #5E59F8;
}

.share-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.twitter:hover   { background: #000;    color: white; }
.facebook:hover  { background: #1877f2; color: white; }
.linkedin:hover  { background: #0a66c2; color: white; }
.reddit:hover    { background: #ff4500; color: white; }
.whatsapp:hover  { background: #25d366; color: white; }
.copy-link:hover { background: #635bff; color: white; }

/* ========================================
   PG Download Pro
======================================== */
.pg-download-pro {
  margin: 50px auto;
  padding: 40px;
  text-align: center;
  border-radius: 20px;
  border: 2px solid #c3c1ff;
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.12);
}

.pg-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.1;
}

.pg-free-tag {
  display: inline-block;
  background: linear-gradient(90deg, rgba(244, 82, 143, 0.1), rgba(99, 89, 245, 0.1));
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 999px;
  margin-left: 14px;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image:
    linear-gradient(90deg, rgba(244, 82, 143, 0.1), rgba(99, 89, 245, 0.1)),
    linear-gradient(90deg, #F4528F, #6359F5);
  background-clip: padding-box, text;
  -webkit-background-clip: padding-box, text;
}

.pg-subtitle {
  font-size: 1.25rem;
  color: #555;
  margin: 0 0 40px;
  line-height: 1.5;
}

.pg-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pg-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #6B7280;
  margin-top: 24px;
}

.pg-shield { color: #10b981; }

.pg-proof {
  margin: 0;
  font-size: 16px;
  color: #6B7280;
}

.pg-proof strong {
  color: #111;
  font-weight: 700;
}

/* ========================================
   Top Feature Tags
======================================== */
.topfeature-tags {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244, 82, 143, 0.1), rgba(99, 89, 245, 0.1));
  gap: 16px;
}

.topfeature-tags .divider {
  color: #E4B8FF;
  font-weight: 400;
  padding: 0 8px;
}

/* ========================================
   Hero Section
======================================== */
.hero {
  width: 100%;
  padding: 120px 20px 60px;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/img/articles/hero-bg.webp");
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  margin-top: 20px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  color: #090B0E;
}

.hero-subtitle {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #6B7280;
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  justify-content: center;
}

/* Buttons */

.btn {
  padding: 14px 28px;
  font-size: 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}

.btn:hover {
  transform: translateY(-4px);  
  cursor: pointer;
}

.btn i {
  font-size: 20px;
  margin-right: 8px;
}

.btn-primary {
  background: #5E59F8;
  color: #fff;
}

.btn-primary:hover {
  background: #0800fc;
  color: #fff;
}

.btn-org {
  background: #F79259;
  color: #fff;
}

.btn-org:hover {
  background: #fc5b00;
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid #5E59F8;
  color: #5E59F8;
}

.btn-outline:hover {
  background: #5E59F8;
  color: #fff;
}

.hero-safe {
  margin-top: 14px;
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 14px;
  color: #6B7280;
}

/* ========================================
   FAQ Section
======================================== */
.faq-section {
  margin: 48px auto;
}

.faq-section > h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 48px;
}

.faq-section > h2 span {
  color: #5e59f8;
}

/* Accordion */
.accordion-item {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.accordion-button {
  background: #fff;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 600;
  border: none;
  color: #1A1A1A;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  transition: background 0.25s, color 0.25s;
  box-shadow: none !important;
}

/* Left Highlight Line */
.accordion-button::before {
  content: "";
  width: 4px;
  height: 0%;
  background: linear-gradient(180deg, #5E59F8, #9b97ff);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 4px;
  transition: height 0.25s;
}

/* Hover */
.accordion-button:hover {
  background: #f8f8ff;
}

/* Expanded */
.accordion-button:not(.collapsed) {
  background: #F1EEFF;
  color: #5E59F8;
}

.accordion-button:not(.collapsed)::before {
  height: 100%;
}

/* Arrow rotation */
.accordion-button::after {
  transition: transform 0.3s;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* Body */
.accordion-body {
  background: #fff;
  padding: 18px 22px 22px;
  font-size: 15.5px;
  line-height: 1.68;
  color: #444;
}

/* Dark Mode */
body.dark .accordion-item,
body.dark .accordion-button,
body.dark .accordion-body {
  background: #1E1E1E;
  color: #eee;
  box-shadow: 0 4px 14px rgba(0,0,0,0.55);
}

/* 1200px */
@media (max-width: 1200px) {
  .download-banner {
    display: none;
  }

  .download-text .title {
    font-size: 24px;
  }

  .download-text .subtitle {
    font-size: 15px;
  }

  .trust-badge {
    display: none;
  }

  .breadcrumb {
    margin-top: 100px !important;
  }

  .hero {
    display: none;
  }
}

/* 960px */
@media (max-width: 960px) {
  .container {
    flex-direction: column;
  }

  .toc-wrapper {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 998;
    transition: left .3s;
  }

  .toc-wrapper.show {
    left: 0;
  }

  .toc {
    width: 300px;
    height: 100%;
    border-radius: 0;
  }

  .toc-toggle {
    display: block;
  }

  .my-wrapper {
    flex-direction: column;
  }
}

/* 840px */
@media (max-width: 840px) {
  .comparison-table td:first-child,
  .comparison-table th:first-child {
    width: 135px;
    min-width: 135px;
    max-width: 135px;
    font-size: 14.5px;
    padding: 12px 10px;
  }

  .comparison-scroll::before {
    content: "← Swipe to see more →";
    display: block;
    text-align: center;
    font-size: 14px;
    color: #666;
    padding: 10px;
    background: #f0f2f5;
    font-weight: 500;
  }
}

/* 768px */
@media (max-width: 768px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }

  .step,
  .step-style2 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }

  /* PlaylistGo Card */
  .playlistgo-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .card-content {
    margin: 1.2rem;
  }

  .card-logo img {
    width: 56px;
    height: 56px;
  }

  /* Pro Card */
  .pro-card {
    display: block;
    padding: 1.8rem;
  }

  .pro-right {
    margin-top: 1.5rem;
    width: 100%;
  }

  /* Related List */
  .related-list {
    columns: 1;
  }

  .related-list a {
    font-size: 1.02rem;
  }

  /* Author Bio */
  .author-bio {
    flex-direction: column;
    text-align: center;
    padding: 1.8rem 1.4rem;
  }

  .author-avatar img {
    margin: 0 auto;
  }

  .author-links {
    margin-top: 0.5rem;
  }

  /* Sidebar Related */
  .related-list-side a {
    font-size: 1.05rem;
  }
}

/* 640px */
@media (max-width: 640px) {
  /* Breadcrumb */
  .breadcrumb li:nth-child(1),
  .breadcrumb li:nth-child(2) ~ li:not(:last-child) .separator {
    display: none;
  }

  .breadcrumb li:first-of-type {
    display: flex;
  }

  /* PG Download Pro */
  .pg-buttons {
    flex-direction: column;
    align-items: center;
  }

  .pg-title {
    font-size: 2.2rem;
  }

  .pg-btn {
    min-width: 280px;
  }
}

/* 576px */
@media (max-width: 576px) {
  .share-article {
    justify-content: center;
  }

  .share-text {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
}
/* ========== Sidebar Topics ========== */
.sidebar-topics {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgb(228 222 245);
    top: 100px;
    align-self: start;
}

.topics h3 {
    font-size: 24px;
    margin-bottom: 1.5rem;
    color: #090B0E;
    font-weight: 600;
}

.topics ul {
    list-style: none;
}

.topics li {
    margin-bottom: 0.75rem;
	font-size: 18px;
}

.topics a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: #090B0E;
    text-decoration: none;
    font-weight: 500;
    transition: all .2s;
}

/* “All Topics” */
.topics a[data-category="all"]::before {
    content: "";
}

.topics a:hover,
.topics a.active {
    background: #5E59F8;
    color: #fff;
    transform: translateX(4px);
}


/* ========== Post List ========== */
.post {
    padding: 2rem;
    border-bottom: 1px solid #e2e2e2;
    display: block;
    transition: all .3s;
}

.post.hidden {
    display: none;
}

.post:last-child {
    border-bottom: none;
}

.post:hover {
    background: #E3E6FA;
    border-radius: 8px;
}


/* ========== Post Meta ========== */
.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #475569;
}

.post-meta .tag {
    background: #5E59F8;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}


/* ========== Post Title & Text ========== */
.post h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-weight: 600;
}

.post h2 a {
    color: #0f172a;
    text-decoration: none;
}

.post h2 a:hover {
    color: #5E59F8;
}

.post p {
    color: #090B0E;
    margin-bottom: 1rem;
}
.read-more-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 45px 0;
  padding: 18px 24px;
  background: #ffffff;
  position: relative;
  border: 1px solid rgba(94, 89, 248, 0.12);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(94, 89, 248, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.read-more-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 4px;
  background-color: #5e59f8;
  border-radius: 0 4px 4px 0;
  transition: height 0.3s ease;
}

.read-more-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(94, 89, 248, 0.12);
  border-color: rgba(94, 89, 248, 0.3);
  background: linear-gradient(90deg, #f9f8ff 0%, #ffffff 100%);
}

.read-more-box:hover::before {
  top: 10%;
  height: 80%;
}

.read-more-content {
  flex: 1;
}

.read-more-tag {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: #5e59f8;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.read-more-title {
  margin: 0 0 8px 0 !important;
  font-size: 20px !important;
  line-height: 1.35;
  font-weight: 800;
}

.read-more-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.read-more-box:hover .read-more-title a {
  color: #5e59f8;
}

.read-more-summary {
  margin: 0;
  font-size: 13.5px !important;
  line-height: 1.6;
  color: #666;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-img {
  width: 250px;
  aspect-ratio: 7 / 4;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.read-more-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.read-more-box:hover .read-more-img img {
  transform: scale(1.1);
}

@media (max-width: 580px) {
  .read-more-box {
    padding: 15px;
    gap: 12px;
  }
  .read-more-img {
    width: 90px;
  }
  .read-more-title {
    font-size: 16px !important;
  }
  .read-more-summary {
    display: none;
  }
}

.bg-theme {
    background-color: #5E59F8 !important;
}
.text-theme {
    color: #5E59F8 !important;
}
.hero-bg {
    background: linear-gradient(135deg, #e0f2fe 0%, #f3e8ff 50%, #fce7f3 100%);
    padding: 160px 0 120px;
}

.feature-list li {
    font-size: 1.15rem;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
}

.feature-list .check {
    color: #10b981;
    font-size: 1.4rem;
    margin-right: 16px;
    margin-top: -4px;
    flex-shrink: 0;
}
.spotify-green, a.spotify-green {
    color: #1DB954 !important;
}

.apple-pink, a.apple-pink {
    color: #FC3C7C !important;
}

.tidal-blue, a.tidal-blue {
    color: #00BFFF !important;
}

.youtube-red, a.youtube-red {
    color: #FF0000 !important;
}

.amazon-orange, a.amazon-orange {
    color: #FF9900 !important;
}

.deezer-purple, a.deezer-purple {
    color: #FF0090 !important;
}
.card {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.cta-btn {
    background: linear-gradient(90deg, #10b981, #14b8a6);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.35);
}

.section-padding {
    padding: 110px 0;
}

/* Category Transfer */
.platform-container {
    background: #1a1a1a;
    border-radius: 14px;
    padding: 18px 20px;
    color: white;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.category-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-count {
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    min-width: 52px;
    text-align: right;
    display: inline-block;
}

.category-item.playlists .category-count {
    font-size: 1rem;
}

.category-item.tracks .category-count {
    font-size: 1rem;
    min-width: 48px;
}

.transfer-arrow {
    font-size: 3.5rem;
    color: #10b981;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .hero-bg {
        padding: 110px 0 90px;
    }

    .platform-container {
        padding: 16px 18px;
    }

    .category-item {
        padding: 11px 14px;
        font-size: 0.92rem;
    }
}

@media (max-width: 767px) {
    .hero-bg {
        padding: 100px 0 70px;
    }

    .transfer-arrow {
        font-size: 2.8rem;
        margin: 15px 0;
    }
}

.cursor-pointer {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.cursor-pointer:hover {
    transform: scale(1.03);
}

.feature-step__image img {
    width: 100%;
    height: auto;
    display: block;
}
.transfer-card {
    border-radius: 20px;
    padding: 28px 24px;
    height: 100%;
    color: #ababab;
    border: 4px solid transparent;
    background-image: 
        linear-gradient(#172031, #172031),
        linear-gradient(328.29deg, #3A49BB 12.98%, #FA518A 88.01%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-repeat: no-repeat;
}

.platform-logo {
    width: 80px;
    height: 80px;
    overflow: hidden;
    margin: 0 auto 12px;
}

.platform-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.05rem;
}

.progress-container {
    height: 10px;
    background: #333;
    border-radius: 9999px;
    overflow: hidden;
    margin: 24px 0;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, #1db954, #22c55e);
    width: 0%;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.6);
}

.success-box {
    position: absolute;
	top: -45px;
	left: 230px;
    background: #fff;
    color: #111;
    border-radius: 18px;
    padding: 18px 26px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    display: none;
    align-items: center;
    gap: 14px;
    z-index: 10;
}

.platforms-bar {
    padding: 80px 20px;
    background: #ffffff;
    border-bottom: 1px solid #f5f5f5;
}

.platforms-bar .container {
    max-width: 1200px;
    margin: 0 auto;
}

.platforms-bar .label {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.platforms-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px; /* 大气间距 */
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #374151;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.platform-icon-wrap {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #f9fafb;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}


.platform-icon-wrap svg {
    width: 36px;
    height: 36px;
    display: block;
}

.platform-item:hover {
    transform: translateY(-8px);
    color: #000;
}

.platform-item:hover .platform-icon-wrap {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.pi-spotify:hover {
    background: #f0faf4 !important;
}

.pi-apple:hover {
    background: #fff1f2 !important;
}

.pi-ytmusic:hover {
    background: #fff1f1 !important;
}

.pi-amazon:hover {
    background: #fff8ee !important;
}

.pi-tidal:hover {
    background: #f4f4f5 !important;
}

.pi-deezer:hover {
    background: #f5f0ff !important;
}


@media (max-width: 768px) {
    .platforms-bar {
        padding: 60px 15px;
    }

    .platforms-list {
        gap: 32px;
    }

    .platform-icon-wrap {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .platform-icon-wrap svg {
        width: 30px;
        height: 30px;
    }

    .platform-item {
        font-size: 13px;
    }

    .platforms-bar .label {
        margin-bottom: 40px;
        font-size: 12px;
    }
}

.feature-step {
    position: relative;
    text-align: center;
    padding-bottom: 20px;
}

.feature-step__image {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease;
}

.feature-step__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.feature-step:hover .feature-step__image {
    transform: translateY(-10px);
}

.feature-step__badge {
    width: 40px;
    height: 40px;
    background: #10b981;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -45px auto 15px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    border: 4px solid #f8fafc;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.feature-step__title {
    margin-top: 10px;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-step__desc {
    font-size: 0.95rem;
    color: #6B7280;
    max-width: 260px;
    margin: 0 auto;
}

.feature-card,
.reason-card {
    transition: all 0.3s ease;
    border-radius: 20px !important; /* 更圆润的角看起来更现代 */
}

.feature-card:hover,
.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* 图标容器盒 */

.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px; /* 容器也圆润一点 */
}

.small-line-height {
    line-height: 1.6;
}

.bg-orange-100 {
    background-color: #ffedd5;
}

.text-orange-600 {
    color: #ea580c;
}

.bg-emerald-100 {
    background-color: #d1fae5;
}

.text-emerald-600 {
    color: #059669;
}

.bg-violet-100 {
    background-color: #ede9fe;
}

.text-violet-600 {
    color: #7c3aed;
}



.video-container {
  width: 100%;
  max-width: 800px; /* 设置最大宽度，防止在大屏上过大 */
  margin: 20px auto; /* 居中 */
  
  /* 核心：保持 16:9 比例 */
  aspect-ratio: 16 / 9; 
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px; /* 圆角让视觉更现代 */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* 兼容旧版浏览器的方案（如果需要） */
@supports not (aspect-ratio: 16 / 9) {
  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 9/16 = 0.5625 */
    height: 0;
  }
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
  }
}



/* 模块基础容器 */
.blog7-section-area {
    padding: 80px 0;
    background: #fcfaff; /* 浅色背景区分 */
}

/* 渐变文字参考 */
.gradient-text {
    background: linear-gradient(90deg, #ff4d97, #a33fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 文章卡片容器 */
.blog-card-v2 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* 图片区域：强制 16:9 比例 */
.blog-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-v2:hover .blog-img img {
    transform: scale(1.05);
}

/* 内容区域 */
.blog-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-info .meta {
    list-style: none;
    padding: 0;
    margin-bottom: 12px;
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.blog-info .title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
    font-weight: 700;
}

.blog-info .title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-info .title a:hover {
    color: #ff4d97;
}

.blog-info .desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    /* 限制描述文本在两行 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-info .readmore {
    margin-top: auto; /* 推到最底部对齐 */
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.blog-info .readmore:hover {
    gap: 10px;
    color: #ff4d97;
}

/* 底部按钮 */
.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
}

.view-all-btn:hover {
    background: #ff4d97;
    color: #fff;
}



/* 容器设置 */
.tutorial-container {
    line-height: 1.7;
    color: #333;
    max-width: 800px;
    margin: 20px 0;
}

/* 列表核心样式 */
.step-list {
    list-style-position: outside;
    padding-left: 1.8em;
    margin: 0;
}

.step-list li {
    margin-bottom: 18px;
    font-size: 16px;
    color: #444;
    padding-left: 8px;
}

/* 强调文字 */
.step-list strong {
    color: #000;
    font-weight: 600;
}



/* 标注行的样式 */
.table-footer-note {
    font-size: 0.875rem;      /* 稍微小一点的字号 */
    color: #6c757d;           /* 灰色，降低视觉权重 (Bootstrap 的 secondary 颜色) */
    padding: 0 4px;           /* 左右微调对齐 */
    margin-top: -4px;         /* 向上微调，让它贴近表格边框 */
    line-height: 1.5;         /* 保持行高舒适 */
}


.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr; /* 手机上还原单栏 */
  }
}


.pg-feat {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #1f1f1f;
  margin: 32px 0;
  background: #F8F5FE;
  border: 1px solid #E1D8F5;
  border-radius: 16px;
  padding: 20px 24px 18px;
  width: 100%;
  box-sizing: border-box;
}

.pg-feat__hat {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.pg-feat__hat-line {
  display: block;
  width: 32px;
  height: 2px;
  background: #7C3AED;
  flex-shrink: 0;
}
.pg-feat__hat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #7C3AED;
}

.pg-feat__row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #E1D8F5;
}
.pg-feat__row:first-of-type {
  border-top: 1px solid #E1D8F5;
}

.pg-feat__num {
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 28px;
  font-weight: 600;
  color: #E1D8F5;
  min-width: 44px;
  letter-spacing: -1px;
  line-height: 1;
  flex-shrink: 0;
}

.pg-feat__title-row {
  width: 260px;
  flex-shrink: 0;
}
.pg-feat__title {
  font-size: 16px;
  font-weight: 600;
  color: #1f1f1f;
  margin: 0;
  line-height: 1.4;
}

.pg-feat__body {
  flex: 1;
  min-width: 0;
}
.pg-feat .pg-feat__sub {
  font-size: 13px;
  color: #6b6b73;
  margin: 0;
  line-height: 1.5;
}

.pg-feat__metric--mobile { display: none; }
.pg-feat__metric--desktop {
  font-size: 13px;
  font-weight: 600;
  color: #5B21B6;
  background: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.pg-feat__compat {
  margin-top: 14px;
  font-size: 13px;
  color: #6b6b73;
  display: inline-block;
  background: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #E1D8F5;
}
.pg-feat__compat strong {
  color: #1f1f1f;
  font-weight: 600;
}

@media (max-width: 520px) {
  .pg-feat {
    padding: 16px 16px 14px;
  }

  .pg-feat__row {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-areas:
      "num titlerow"
      "num sub";
    gap: 0 10px;
    align-items: start;
  }

  .pg-feat__num {
    grid-area: num;
    font-size: 22px;
    min-width: unset;
    padding-top: 3px;
  }

  .pg-feat__title-row {
    grid-area: titlerow;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .pg-feat__title {
    font-size: 14px;
    flex: 1;
    min-width: 0;
  }

  .pg-feat__body {
    grid-area: sub;
  }

  .pg-feat .pg-feat__sub {
    font-size: 12px;
    margin-top: 3px;
  }

  .pg-feat__metric--mobile {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #5B21B6;
    background: #fff;
    padding: 3px 8px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .pg-feat__metric--desktop { display: none; }
}



ul.choose-list {
  background: #FAF9F5;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 10px 0 24px;
  list-style: none;
}

ul.choose-list li {
  position: relative;
  font-size: 16px;
  color: #3a3a3a;
  line-height: 1.6;
  padding-left: 24px;
  margin-bottom: 8px;
}

ul.choose-list li:last-child {
  margin-bottom: 0;
}

ul.choose-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: #7C3AED;
  font-size: 14px;
  font-weight: 600;
}


/* --- Playlist Transfer Directory Styles --- */

/* 容器间距控制 */
.section-padding80 {
    padding: 80px 0;
}

/* 卡片基础样式 */
.directory-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 24px; /* 品牌风格的大圆角 */
    padding: 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.directory-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.12);
    border-color: #7c3aed;
}

/* 头部 Logo 样式 */
.directory-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.platform-icon {
    width: 32px;
    height: 32px;
    object-fit: contain; /* 确保 Logo 比例不失真 */
}

.directory-header h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

/* 链接列表样式 */
.transfer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transfer-list li {
    margin-bottom: 10px;
}

.transfer-list li:last-child {
    margin-bottom: 0;
}

/* 1. 所有链接的基础样式 */
.transfer-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* 2. 正常可点击链接的悬停效果 (变紫) */
/* 注意：这里排除了 .coming-soon 类 */
.transfer-list li a:not(.coming-soon):hover {
    background-color: #7c3aed !important; /* 强制背景变紫 */
    color: #ffffff !important;           /* 强制文字变白 */
    padding-left: 20px;                  /* 增加一个向右位移的动感 */
    border-color: #7c3aed;
}

/* 3. 置灰链接的特定样式 (不准变紫) */
.transfer-list li a.coming-soon {
    background-color: #f3f4f6 !important; /* 保持灰色背景 */
    color: #9ca3af !important;           /* 保持灰色文字 */
    cursor: default;                      /* 正常鼠标箭头 */
    border: 1px dashed #d1d5db;
    user-select: none;
}

/* 4. 置灰链接悬停时仅显示 (Soon) 字样 */
.transfer-list li a.coming-soon:hover::after {
    content: "(Soon)";
    font-size: 14px;
    font-weight: 600;
    color: #7c3aed; 
    margin-left: 8px;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .directory-card {
        padding: 20px;
    }
}


/* ===== Hub Hero ===== */
.lp-hub-hero {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  padding: 72px 0 60px;
  text-align: center;
  padding-top: 150px;

}

.hub-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.hub-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #7c3aed;
  background: #ede9fe;
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hub-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.25;
  margin-bottom: 18px;
}

.hub-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hub-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hub-safe {
  font-size: 13px;
  color: #888;
}

/* ===== Section Heading ===== */
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: clamp(20px, 2.5vw, 35px);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.section-heading p {
  font-size: 15px;
  color: #666;
}


.hub-entry-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #f5f3ff, #ede9fe);
  border: 1.5px solid #d4bbff;
  border-radius: 12px;
  padding: 20px 32px;
  margin: 24px auto 0;
  max-width: 860px;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}

.hub-entry-banner:hover {
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
  transform: translateY(-2px);
}

.hub-entry-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.hub-entry-text strong {
  font-size: 22px;
  color: #1a1a2e;
}

.hub-entry-text span {
  font-size: 16px;
  color: #7c3aed;
}

.hub-entry-banner .arrow {
  width: 40px;
  height: 40px;
  background: #7c3aed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hub-entry-banner .arrow i {
  color: #fff;
  font-size: 0.9rem;
}


.checklist-box {
  border: 1.5px solid #e0d7f5;
  border-radius: 12px;
  background-color: #faf8ff;
  padding: 24px 28px;
  margin: 32px 0;
}

.checklist-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  margin-top: 0;
}

.checklist-box p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 16px;
}

.checklist-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
}

.checklist-box ul li::before {
  content: "✔";
  color: #7c3aed;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}



/* ============================================
   PlaylistGo — Free License Page
   free-license.css
   ============================================ */

.fl-tiers-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 992px) {
  .fl-tiers-new {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.fl-tier-new {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.fl-tier-new:hover {
  border-color: #6366f1;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.tier-2 {
  border-color: #6366f1;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
}

/* Tier Header */
.fl-tier-header {
  background: #f8fafc;
  padding: 28px 32px 24px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.fl-tier-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  background: #6366f1;
  color: white;
  border-radius: 9999px;
  margin-bottom: 12px;
}

.fl-tier-days {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  color: #1e293b;
  margin-bottom: 8px;
}

.tier-2 .fl-tier-days {
  color: #6366f1;
}

/* Tier Content */
.fl-tier-content {
  padding: 32px;
}

.fl-tier-content h3 {
  color: #1e293b;
  margin-bottom: 12px;
}

.fl-tier-content h4 {
  color: #4338ca;
  margin-bottom: 8px;
}

/* Social Grid */
.fl-social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.fl-social-card {
  padding: 20px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  height: 100%;
}

.fl-social-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.fl-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.fl-icon-x   { background: #000; }
.fl-icon-fb  { background: #1877f2; }
.fl-icon-ins { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }
.fl-icon-yt  { background: #ff0000; }

.fl-social-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fl-social-steps li {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

/* Platform Badges & Reddit Tip */
.fl-platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.fl-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: all 0.2s;
}

.fl-platform-badge:hover {
  border-color: #6366f1;
  background: #eef2ff;
  color: #6366f1;
}

.fl-reddit-tip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #6366f1;
  border-radius: 8px;
  padding: 16px;
  font-size: 0.95rem;
  color: #64748b;
  margin-top: 16px;
  line-height: 1.6;
}

.fl-reddit-tip strong {
  color: #4338ca;
}

/* ── Claim Steps ── */
.fl-claim-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 42px;
}

.fl-claim-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.fl-claim-step:hover {
  border-color: #c7d2fe;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.08);
  transform: translateY(-2px);
}

.fl-claim-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eef2ff;
  color: #6366f1;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.fl-claim-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.fl-claim-step-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #64748b;
}

.fl-claim-step-desc code {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 0.84rem;
  color: #334155;
}

@media (max-width: 767px) {
  .fl-claim-steps {
    grid-template-columns: 1fr;
  }
}

/* ── Notes Box ── */
.fl-notes-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 32px;
}
.fl-notes-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fl-notes-box ul li {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}
.fl-notes-box ul li i {
  color: #94a3b8;
  margin-top: 5px;
  flex-shrink: 0;
  font-size: 0.6rem;
} 

/* ── SEO Entry ── */
.fl-seo-section {
  margin-bottom: 48px;
}

.fl-seo-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fl-seo-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
}

.fl-seo-card:hover {
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

.fl-seo-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f1f5f9;
}

.fl-seo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fl-seo-card-body {
  padding: 14px 16px;
}

.fl-seo-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6366f1;
  margin-bottom: 6px;
}

.fl-seo-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .fl-about-section {
    flex-direction: column;
    padding: 22px 20px;
  }

  .fl-about-logo {
    width: 60px;
  }

  .fl-seo-articles {
    grid-template-columns: 1fr;
  }
}
.fl-seo-header {
  margin-bottom: 16px;
}

.fl-seo-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}