/* ========================================
   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: 54px auto;
}

.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 > h2 {
  font-size: 28px;
  padding-bottom: 24px;
}

.article-body > h2 span {
  color: #5e59f8;
}

.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; }

/* 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;
  margin-bottom: 4rem;
  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 {
  color: #6B7280;
  margin-bottom: 24px;
}

.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: 24px 0 48px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
}

.comparison-table thead {
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
  background: linear-gradient(90deg, #5E59F8 0%, rgba(94, 89, 248, 0.50) 100%);
}

.comparison-table th,
.comparison-table td {
  padding: 14px 12px;
  text-align: center;
  border-top: 1px solid #eee;
  line-height: 1.5;
}

.comparison-table th {
  font-size: 16px;
  position: sticky;
  top: 0;
  z-index: 10;
  color: #fff;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
  position: sticky;
  left: 0;
  width: 160px;
  min-width: 160px;
  max-width: 160px;
  text-align: left;
  white-space: normal !important;
  overflow-wrap: break-word;
  word-wrap: break-word;
  z-index: 50;
  box-shadow: 3px 0 8px rgba(0,0,0,0.07);
}

.comparison-table td:first-child {
  background: #EFEDFE;
  font-weight: 600;
  color: #5E59F8;
}

.comparison-table td:not(:first-child),
.comparison-table th:not(:first-child) {
  width: 150px;
  min-width: 150px;
}

/* Highlight column 2 */
.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
  background: rgba(94, 89, 248, 0.08);
}

/* ========================================
   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 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 Link ========== */
.read-more {
    color: #5E59F8;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.read-more:hover {
    text-decoration: underline;
}