/* ================================================================
   PlayerSDK — Blog Detail Page Styles
   blog-detail.css
   ================================================================ */

/* ── Variables & Base ── */
.bd-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero Section ── */
.bd-hero {
  position: relative;
  padding: 130px 0 48px;
  overflow: hidden;
}

.bd-hero__bg-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(var(--accent-rgb, 124, 255, 107), 0.18) 0%, transparent 72%);
  pointer-events: none;
}

/* ── Breadcrumb ── */
.bd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.bd-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.bd-breadcrumb a:hover { color: var(--accent); }
.bd-breadcrumb i { font-size: 0.7rem; opacity: 0.5; }
.bd-breadcrumb span { color: var(--text-primary); font-weight: 500; }

/* ── Badge + read time ── */
.bd-hero__badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.bd-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 100px;
  background: rgba(var(--accent-rgb, 124, 255, 107), 0.12);
  border: 1px solid rgba(var(--accent-rgb, 124, 255, 107), 0.25);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
}
.bd-hero__read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ── Title ── */
.bd-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 16px;
  max-width: 820px;
}

.bd-hero__subtitle {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 0 32px;
}

/* ── Author row ── */
.bd-hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.bd-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bd-author__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.bd-author__name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.bd-author__date {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.bd-hero__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bd-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--glass-bg);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.bd-action-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(var(--accent-rgb, 124, 255, 107),0.08);
}

/* ── Cover Image ── */
.bd-cover-wrap {
  margin-top: 36px;
  margin-bottom: 0;
}
.bd-cover {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 640px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
}
.bd-cover__img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center;
  display: block;
}
.bd-cover__overlay {
  display: none;
}

/* ── Main Layout ── */
.bd-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  margin-top: 56px;
  align-items: start;
}

/* ── Sidebar ── */
.bd-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bd-toc-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.bd-toc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
  font-family: var(--font-display, inherit);
}

.bd-toc-header i {
  font-size: 1.05rem;
  color: #2563eb;
}

.bd-toc-nav {
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-height: calc(100vh - 280px);
  overflow-y: auto;
}

.bd-toc-nav::-webkit-scrollbar {
  width: 4px;
}
.bd-toc-nav::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.bd-toc-link {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.84rem;
  line-height: 1.4;
  color: #64748b !important;
  font-weight: 500;
  text-decoration: none !important;
  transition: all 0.18s ease;
  cursor: pointer;
  border-left: 3px solid transparent;
  background: transparent;
}

.bd-toc-link:hover {
  background: #f1f5f9 !important;
  color: #0f172a !important;
  padding-left: 14px;
}

.bd-toc-link.active,
.bd-toc-link.is-active {
  background: #eff6ff !important;
  color: #2563eb !important;
  font-weight: 700 !important;
  border-left-color: #2563eb !important;
  padding-left: 14px;
}

.bd-toc-link.is-h3 {
  padding-left: 20px;
  font-size: 0.8rem;
  color: #64748b !important;
}

.bd-toc-link.is-h3:hover {
  padding-left: 22px;
  color: #0f172a !important;
}

.bd-toc-link.is-h3.active {
  padding-left: 22px;
}

/* ── Dark Theme TOC Overrides ── */
[data-theme="dark"] .bd-toc-card {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .bd-toc-header {
  background: rgba(255, 255, 255, 0.03);
  color: #94a3b8;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .bd-toc-header i {
  color: #00d289;
}

[data-theme="dark"] .bd-toc-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .bd-toc-link {
  color: #94a3b8 !important;
}

[data-theme="dark"] .bd-toc-link:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #f8fafc !important;
}

[data-theme="dark"] .bd-toc-link.active,
[data-theme="dark"] .bd-toc-link.is-active {
  background: rgba(0, 210, 137, 0.1) !important;
  color: #00d289 !important;
  border-left-color: #00d289 !important;
}

/* Share card */
.bd-share-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
}

.bd-share-card__label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin: 0 0 12px;
  font-family: var(--font-display, inherit);
}

.bd-share-card__btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bd-share-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #334155;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.bd-share-pill:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.bd-share-pill i {
  font-size: 1.1rem;
}

.bd-share-pill#bdShareTwitter i { color: #1d9bf0; }
.bd-share-pill#bdShareFacebook i { color: #1877f2; }
.bd-share-pill#bdShareCopy i { color: #64748b; }

[data-theme="dark"] .bd-share-card {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .bd-share-card__label {
  color: #94a3b8;
}

[data-theme="dark"] .bd-share-pill {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
}

[data-theme="dark"] .bd-share-pill:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* ── Article Content ── */
.bd-content {
  position: relative;
  min-width: 0;
}

/* Reading progress bar */
.bd-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

.bd-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  gap: 16px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.bd-loading__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border-color);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: bdSpin 0.8s linear infinite;
}
@keyframes bdSpin {
  to { transform: rotate(360deg); }
}

/* ── Article Typography ── */
.bd-article {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.bd-article h2,
.bd-article .wp-block-heading:is(h2) {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 2.4em 0 0.7em;
  padding-top: 0.5em;
  border-top: 1px solid var(--border-color);
  scroll-margin-top: 100px;
}

.bd-article h3,
.bd-article .wp-block-heading:is(h3) {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 1.8em 0 0.5em;
  scroll-margin-top: 100px;
}

.bd-article p,
.bd-article .wp-block-paragraph {
  margin: 0 0 1.3em;
  color: var(--text-secondary);
  line-height: 1.8;
}

.bd-article strong {
  color: var(--text-primary);
  font-weight: 700;
}

.bd-article a {
  color: var(--accent) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.bd-article a:hover {
  opacity: 0.85;
}

[data-theme="light"] .bd-article a {
  color: #2563eb !important;
}

[data-theme="dark"] .bd-article a {
  color: #7cff6b !important;
}

.bd-article ul,
.bd-article .wp-block-list:not(ol),
.bd-steps-wrap ul {
  list-style: disc outside !important;
  list-style-type: disc !important;
  margin: 0.8em 0 1.4em 1.6em !important;
  padding: 0 0 0 0.5em !important;
  color: var(--text-secondary);
}

.bd-article ol:not(.bd-steps),
.bd-article .wp-block-list:is(ol),
.bd-steps-wrap ol:not(.bd-steps) {
  list-style: decimal outside !important;
  list-style-type: decimal !important;
  margin: 0.8em 0 1.4em 1.6em !important;
  padding: 0 0 0 0.5em !important;
  color: var(--text-secondary);
}

.bd-article ul li,
.bd-article ol:not(.bd-steps) li,
.bd-steps-wrap ul li,
.bd-steps-wrap ol:not(.bd-steps) li {
  display: list-item !important;
  margin-bottom: 0.6em;
  line-height: 1.75;
}

.bd-steps-wrap {
  margin: 1.4em 0 1.6em;
}

.bd-steps-wrap h3 {
  margin-top: 1.2em;
  margin-bottom: 0.6em;
}

.bd-article figure.wp-block-image,
.bd-article .wp-block-image,
.bd-article figure {
  margin: 2.2em 0;
  display: block;
  text-align: center;
}

.bd-article figure.wp-block-image img,
.bd-article .wp-block-image img,
.bd-article figure img,
.bd-article img {
  max-width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-color);
  margin: 1.5em auto;
}

[data-theme="light"] .bd-article figure.wp-block-image img,
[data-theme="light"] .bd-article .wp-block-image img,
[data-theme="light"] .bd-article figure img,
[data-theme="light"] .bd-article img {
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.12);
  border-color: rgba(15, 23, 42, 0.08);
}

/* Callout / Tip boxes */
.bd-callout {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 12px;
  margin: 1.8em 0;
  border-left: 3px solid;
}
.bd-callout--tip {
  background: rgba(var(--accent-rgb, 124, 255, 107),0.08);
  border-color: var(--accent);
}
.bd-callout--warning {
  background: rgba(245,158,11,0.08);
  border-color: #f59e0b;
}
.bd-callout--success {
  background: rgba(16,185,129,0.08);
  border-color: #10b981;
}
.bd-callout__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.bd-callout--tip .bd-callout__icon { color: var(--accent); }
.bd-callout--warning .bd-callout__icon { color: #f59e0b; }
.bd-callout--success .bd-callout__icon { color: #10b981; }
.bd-callout__body {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.bd-callout__body strong { color: var(--text-primary); }

/* Step list */
.bd-steps {
  list-style: none;
  margin: 0 0 1.6em;
  padding: 0;
  counter-reset: bdStep;
}
.bd-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  counter-increment: bdStep;
}
.bd-steps li:last-child { border-bottom: none; }
.bd-steps li::before {
  content: counter(bdStep);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #7cff6b;
  color: #000000 !important;
  font-size: 0.78rem;
  font-weight: 800;
  font-family: var(--font-display);
}

[data-theme="dark"] .bd-steps li::before {
  background: #7cff6b !important;
  color: #000000 !important;
}

[data-theme="light"] .bd-steps li::before {
  background: #2563eb !important;
  color: #ffffff !important;
}

/* Code block */
.bd-code {
  background: #0e121a;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 16px 20px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #a5f3fc;
  overflow-x: auto;
  margin: 1.4em 0;
}

/* Comparison table */
.bd-table-wrap {
  overflow-x: auto;
  margin: 1.6em 0;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}
.bd-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.bd-table th {
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 700;
  font-family: var(--font-display);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}
.bd-table td {
  padding: 12px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}
.bd-table tr:last-child td { border-bottom: none; }
.bd-table tr:hover td { background: rgba(var(--accent-rgb, 124, 255, 107),0.04); }

/* Tags row */
.bd-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-color);
}
.bd-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-color);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.bd-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(var(--accent-rgb, 124, 255, 107),0.07);
}

/* ── Author Bio ── */
.bd-author-bio {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-top: 48px;
  padding: 30px;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.bd-author-bio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  border-radius: 4px 0 0 4px;
}
.bd-author-bio__avatar-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--accent);
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bd-author-bio__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bd-author-bio__avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--accent);
}
.bd-author-bio__info {
  flex: 1;
}
.bd-author-bio__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.bd-author-bio__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 4px;
}
.bd-author-bio__name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.bd-author-verified {
  color: var(--accent);
  font-size: 1.05rem;
}
.bd-author-bio__role {
  font-size: 0.84rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 2px;
}
.bd-author-bio__profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  background: rgba(124, 255, 107, 0.08);
  border: 1px solid rgba(124, 255, 107, 0.22);
  padding: 6px 14px;
  border-radius: 100px;
  transition: all 0.25s ease;
}
[data-theme="light"] .bd-author-bio__profile-btn {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #2563eb;
}
.bd-author-bio__profile-btn:hover {
  transform: translateX(3px);
  background: var(--accent);
  color: #000;
}
.bd-author-bio__desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* ── Related Articles ── */
.bd-related {
  margin-top: 80px;
  padding: 64px 0 48px;
  border-top: 1px solid var(--border-color);
  position: relative;
}
.bd-related__header {
  margin-bottom: 32px;
}
.bd-related__subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 8px 0 0;
  line-height: 1.5;
}
.bd-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(var(--accent-rgb, 124, 255, 107), 0.1);
  border: 1px solid rgba(var(--accent-rgb, 124, 255, 107), 0.25);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.bd-related__title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.02em;
}
.bd-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bd-rel-card {
  background: var(--bg-card, rgba(15, 23, 42, 0.6));
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.bd-rel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb, 124, 255, 107), 0.45);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.35), 0 0 24px rgba(var(--accent-rgb, 124, 255, 107), 0.12);
}
.bd-rel-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: var(--bg-secondary);
}
.bd-rel-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.bd-rel-card:hover .bd-rel-card__img {
  transform: scale(1.06);
}
.bd-rel-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(11, 15, 25, 0.82);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
[data-theme="light"] .bd-rel-card__badge {
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent, #16a34a);
  border-color: rgba(0, 0, 0, 0.08);
}
.bd-rel-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
.bd-rel-card__title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}
.bd-rel-card:hover .bd-rel-card__title {
  color: var(--accent);
}
.bd-rel-card__meta {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.06));
}
.bd-rel-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.bd-rel-card__cta {
  font-weight: 600;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.bd-rel-card:hover .bd-rel-card__cta {
  transform: translateX(3px);
}

/* ── Newsletter CTA ── */
.bd-newsletter {
  padding: 0 0 64px;
}
.bd-newsletter__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 44px;
  background: var(--bg-card, rgba(15, 23, 42, 0.75));
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.bd-newsletter__glow {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(var(--accent-rgb, 124, 255, 107), 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.bd-newsletter__left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  min-width: 280px;
}
.bd-newsletter__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb, 124, 255, 107), 0.2), rgba(var(--accent-rgb, 124, 255, 107), 0.05));
  border: 1px solid rgba(var(--accent-rgb, 124, 255, 107), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(var(--accent-rgb, 124, 255, 107), 0.15);
}
.bd-newsletter__copy {
  flex: 1;
}
.bd-newsletter__copy h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}
.bd-newsletter__copy p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}
.bd-newsletter__form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.bd-newsletter__input-group {
  position: relative;
  display: flex;
  align-items: center;
}
.bd-newsletter__input-icon {
  position: absolute;
  left: 14px;
  font-size: 1rem;
  color: var(--text-secondary);
  pointer-events: none;
}
.bd-newsletter__input {
  padding: 12px 16px 12px 42px;
  border-radius: 12px;
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
  background: var(--bg-primary, rgba(0, 0, 0, 0.4));
  color: var(--text-primary);
  font-size: 0.9rem;
  width: 270px;
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}
.bd-newsletter__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb, 124, 255, 107), 0.15);
}
.bd-newsletter__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  background: var(--accent);
  color: #000000 !important;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(var(--accent-rgb, 124, 255, 107), 0.3);
}
.bd-newsletter__btn:hover {
  background: var(--accent-hover, var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--accent-rgb, 124, 255, 107), 0.45);
}

/* ── Back to Blog ── */
.bd-back-wrap {
  padding: 0 0 80px;
}
.bd-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: 100px;
  background: var(--bg-card, rgba(15, 23, 42, 0.6));
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}
.bd-back-btn:hover {
  background: rgba(var(--accent-rgb, 124, 255, 107), 0.1);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateX(-4px);
}

/* ── Gutenberg / WordPress Block Styles ── */

/* figcaption */
.bd-article figcaption,
.bd-article figure figcaption {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
  opacity: 0.75;
}

/* Horizontal separator */
.bd-article hr,
.bd-article .wp-block-separator {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 2.5em 0;
  opacity: 0.5;
}

/* Blockquote */
.bd-article blockquote,
.bd-article .wp-block-quote {
  border-left: 3px solid var(--accent);
  margin: 2em 0;
  padding: 14px 22px;
  background: rgba(var(--accent-rgb, 124, 255, 107),0.06);
  border-radius: 0 10px 10px 0;
}
.bd-article blockquote p,
.bd-article .wp-block-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-primary);
  margin: 0;
}
.bd-article blockquote cite,
.bd-article .wp-block-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-style: normal;
}

/* Code / pre blocks from WP */
.bd-article pre,
.bd-article .wp-block-code,
.bd-article .wp-block-preformatted {
  background: #0e121a;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 16px 20px;
  font-family: 'Fira Code', 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  line-height: 1.65;
  color: #a5f3fc;
  overflow-x: auto;
  margin: 1.6em 0;
  white-space: pre-wrap;
  word-break: break-all;
}
.bd-article code {
  font-family: 'Fira Code', 'Courier New', monospace;
  font-size: 0.875em;
  background: rgba(var(--accent-rgb, 124, 255, 107),0.12);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 5px;
}
.bd-article pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  font-size: inherit;
}

/* WordPress buttons */
.bd-article .wp-block-button,
.bd-article .wp-element-button {
  display: inline-block;
  margin: 1.2em 0;
}
.bd-article .wp-block-button__link,
.bd-article .wp-element-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: all 0.22s;
}
.bd-article .wp-block-button__link:hover,
.bd-article .wp-element-button:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(var(--accent-rgb, 124, 255, 107),0.3);
}

/* FAQ Style (h3 pairs) */
.bd-article h3 + p {
  margin-top: 0;
}

/* WordPress columns block */
.bd-article .wp-block-columns {
  display: flex;
  gap: 24px;
  margin: 2em 0;
  flex-wrap: wrap;
}
.bd-article .wp-block-column {
  flex: 1;
  min-width: 200px;
}

/* WordPress group block */
.bd-article .wp-block-group {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  margin: 2em 0;
  background: var(--glass-bg);
}

/* WordPress table block */
.bd-article table,
.bd-article .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 0;
}
.bd-article .wp-block-table {
  overflow-x: auto;
  margin: 1.6em 0;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}
.bd-article table th {
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 700;
  font-family: var(--font-display);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}
.bd-article table td {
  padding: 12px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}
.bd-article table tr:last-child td { border-bottom: none; }
.bd-article table tr:hover td { background: rgba(var(--accent-rgb, 124, 255, 107),0.04); }

/* WordPress media-text block */
.bd-article .wp-block-media-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin: 2em 0;
}
.bd-article .wp-block-media-text .wp-block-media-text__media img {
  border-radius: 12px;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .bd-layout {
    grid-template-columns: 1fr;
  }
  .bd-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .bd-article .wp-block-media-text {
    grid-template-columns: 1fr;
  }
  .bd-article .wp-block-columns {
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .bd-related__grid { grid-template-columns: repeat(2, 1fr); }
  .bd-newsletter__card {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    gap: 24px;
  }
  .bd-newsletter__form { width: 100%; }
  .bd-newsletter__input-group { width: 100%; flex: 1; }
  .bd-newsletter__input { width: 100%; }
}
@media (max-width: 767px) {
  .bd-hero { padding: 110px 0 36px; }
  .bd-hero__title { font-size: 1.8rem; }
  .bd-hero__actions { display: none; }
  .bd-sidebar { grid-template-columns: 1fr; }
  .bd-related__grid { grid-template-columns: 1fr; }
  .bd-newsletter__left { flex-direction: column; align-items: flex-start; gap: 14px; }
  .bd-newsletter__form { width: 100%; flex-direction: column; }
  .bd-newsletter__input-group { width: 100%; }
  .bd-newsletter__input { width: 100%; }
  .bd-newsletter__btn { width: 100%; }
  .bd-cover { aspect-ratio: auto; }
}

/* ── Light Theme Blue Focus Contrast (White text on blue focus/avatars/buttons) ── */
[data-theme="light"] .bd-author__avatar,
[data-theme="light"] .bd-author-bio__avatar,
[data-theme="light"] #bdAuthorAvatar,
[data-theme="light"] #bdBioAvatar,
[data-theme="light"] .bd-hero__badge--solid,
[data-theme="light"] .bd-btn-primary,
[data-theme="light"] .bd-newsletter__btn,
[data-theme="light"] .bd-btn-submit,
[data-theme="light"] .bd-rel-card__badge {
  background: var(--accent) !important;
  color: #ffffff !important;
}

/* ── Dark Theme Green Focus Contrast (Black text on green focus/avatars/buttons) ── */
[data-theme="dark"] .bd-hero__badge,
[data-theme="dark"] .bd-hero__badge-row .bd-hero__badge,
[data-theme="dark"] .bd-cat-badge,
[data-theme="dark"] #bdCatBadge {
  background: var(--accent) !important;
  color: #06080f !important;
  border-color: var(--accent) !important;
}

[data-theme="dark"] .bd-author__avatar,
[data-theme="dark"] .bd-author-bio__avatar,
[data-theme="dark"] #bdAuthorAvatar,
[data-theme="dark"] #bdBioAvatar {
  background: var(--accent) !important;
  color: #06080f !important;
}

[data-theme="dark"] .bd-btn-primary,
[data-theme="dark"] .bd-newsletter__btn,
[data-theme="dark"] .bd-btn-submit,
[data-theme="dark"] .bd-rel-card__badge {
  background: var(--accent) !important;
  color: #06080f !important;
}

/* ================================================================
   Device Specifications & Specs Dashboard UI Component Styles
   ================================================================ */

.device-spec-wrapper {
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
}

.ds-tagline {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary, #475569);
  margin-bottom: 28px;
  font-weight: 450;
}

/* ── Top Highlight Stat Grid ── */
.ds-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
/* ── Top Stat Highlight Cards ── */
.ds-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.ds-stat-card {
  background: var(--bg-card, rgba(255, 255, 255, 0.95));
  border: 1px solid var(--border-color, rgba(15, 23, 42, 0.08));
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03), 0 4px 10px -2px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s var(--transition-smooth, ease), box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ds-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent, #2563eb), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ds-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px -8px rgba(37, 99, 235, 0.15);
  border-color: var(--accent, #2563eb);
}

.ds-stat-card:hover::before {
  opacity: 1;
}

.ds-stat-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb, 37, 99, 235), 0.15), rgba(var(--accent-rgb, 37, 99, 235), 0.04));
  border: 1px solid rgba(var(--accent-rgb, 37, 99, 235), 0.2);
  color: var(--accent, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(var(--accent-rgb, 37, 99, 235), 0.1);
}

.ds-stat-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted, #64748b);
  margin-bottom: 4px;
}

.ds-stat-card__val {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary, #0f172a);
  line-height: 1.3;
}

/* ── Section Cards ── */
.ds-card {
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--border-color, rgba(15, 23, 42, 0.08));
  border-radius: 22px;
  padding: 26px 30px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.ds-card:hover {
  border-color: rgba(var(--accent-rgb, 37, 99, 235), 0.35);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.05);
}

.ds-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle, rgba(15, 23, 42, 0.06));
}

.ds-card__icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb, 37, 99, 235), 0.18), rgba(var(--accent-rgb, 37, 99, 235), 0.04));
  border: 1px solid rgba(var(--accent-rgb, 37, 99, 235), 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent, #2563eb);
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(var(--accent-rgb, 37, 99, 235), 0.12);
}

.ds-card__header-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ds-card__title {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text-primary, #0f172a);
  margin: 0;
  letter-spacing: -0.01em;
}

.ds-card__count {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #2563eb);
  background: rgba(var(--accent-rgb, 37, 99, 235), 0.08);
  border: 1px solid rgba(var(--accent-rgb, 37, 99, 235), 0.2);
  padding: 4px 10px;
  border-radius: 100px;
}

.ds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.ds-item {
  background: var(--bg-secondary, #f8fafc);
  border: 1px solid var(--border-subtle, rgba(15, 23, 42, 0.06));
  padding: 14px 18px;
  border-radius: 14px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 74px;
}

.ds-item:hover {
  background: var(--bg-tertiary, #f1f5f9);
  border-color: rgba(var(--accent-rgb, 37, 99, 235), 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.05);
}

.ds-item__head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}

.ds-item__icon {
  color: var(--accent, #2563eb);
  font-size: 0.95rem;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
}

.ds-item__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-muted, #64748b);
  letter-spacing: 0.06em;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ds-item__val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
  word-break: break-word;
  line-height: 1.4;
}

/* ── Status Pills & Badges ── */
.ds-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.ds-pill i {
  font-size: 0.9rem;
}

.ds-pill--success {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.ds-pill--danger {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.ds-pill--warning {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.ds-pill--info {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.ds-pill--muted {
  background: rgba(148, 163, 184, 0.15);
  color: #64748b;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

/* ── Pros & Cons Grid ── */
.ds-pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.ds-pros-card {
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 18px;
  padding: 24px;
}

.ds-pros-title {
  color: #10b981;
  margin: 0 0 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display, sans-serif);
}

.ds-pros-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ds-pros-list li {
  color: var(--text-primary, #0f172a);
  font-size: 0.94rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ds-pros-list li i {
  color: #10b981;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.ds-cons-card {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 18px;
  padding: 24px;
}

.ds-cons-title {
  color: #ef4444;
  margin: 0 0 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display, sans-serif);
}

.ds-cons-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ds-cons-list li {
  color: var(--text-primary, #0f172a);
  font-size: 0.94rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ds-cons-list li i {
  color: #ef4444;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Buy / Affiliate Banner ── */
.ds-buy-banner {
  background: linear-gradient(135deg, rgba(var(--accent-rgb, 37, 99, 235), 0.08), rgba(var(--accent-rgb, 37, 99, 235), 0.02));
  border: 1px solid rgba(var(--accent-rgb, 37, 99, 235), 0.25);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  box-shadow: 0 15px 35px -10px rgba(var(--accent-rgb, 37, 99, 235), 0.12);
}

.ds-buy-title {
  margin: 0 0 4px 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary, #0f172a);
  font-family: var(--font-display, sans-serif);
}

.ds-buy-sub {
  margin: 0;
  color: var(--text-muted, #64748b);
  font-size: 0.92rem;
}

.ds-buy-btn {
  background: linear-gradient(135deg, var(--accent, #2563eb), var(--accent-hover, #1d4ed8));
  color: #ffffff !important;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(var(--accent-rgb, 37, 99, 235), 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ds-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(var(--accent-rgb, 37, 99, 235), 0.45);
}

/* ================================================================
   91MOBILES / GSMARENA STYLE DEVICE SPECIFICATION UI
================================================================ */
.gsm-container {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary, #1e293b);
  margin-top: 10px;
}

/* 1. Header Bar */
.gsm-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color, rgba(0,0,0,0.08));
}

.gsm-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-primary, #0f172a);
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
  font-family: var(--font-display, sans-serif);
}

.gsm-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--text-muted, #64748b);
}

.gsm-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gsm-rating-tag {
  background: #fef3c7;
  color: #b45309;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #fde68a;
}

.gsm-status-pill {
  background: #ecfdf5;
  color: #059669;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #a7f3d0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.gsm-status-pill--disc {
  background: #f1f5f9;
  color: #64748b;
  border-color: #cbd5e1;
}

.gsm-btn-compare-top {
  background: #fff7ed;
  color: #ea580c !important;
  border: 1px solid #ffedd5;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.08);
}

.gsm-btn-compare-top:hover {
  background: #ea580c;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

/* 2. Top Showcase: 2-Column Split View */
.gsm-showcase-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 36px;
}

@media (max-width: 991px) {
  .gsm-showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* Left Photo Column */
.gsm-photo-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gsm-main-photo-card {
  position: relative;
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--border-color, rgba(0,0,0,0.08));
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  box-shadow: 0 4px 20px -5px rgba(0,0,0,0.06);
}

.gsm-spec-score-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #16a34a;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.3);
  z-index: 2;
  line-height: 1.1;
}

.gsm-spec-score-pill .score-num {
  font-size: 1.15rem;
  font-weight: 900;
  display: block;
}

.gsm-spec-score-pill .score-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.95;
}

.gsm-main-img {
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.gsm-main-img:hover {
  transform: scale(1.04);
}

/* Price Box */
.gsm-price-action-box {
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--border-color, rgba(0,0,0,0.08));
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 16px -4px rgba(0,0,0,0.04);
}

.gsm-price-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary, #0f172a);
  letter-spacing: -0.02em;
  display: block;
}

.gsm-price-stock {
  font-size: 0.78rem;
  color: #16a34a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.gsm-btn-orange-buy {
  background: #f97316;
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 11px 22px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
  transition: all 0.2s ease;
}

.gsm-btn-orange-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.45);
}

/* Media Thumbnails */
.gsm-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gsm-media-tab {
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--border-color, rgba(0,0,0,0.08));
  border-radius: 10px;
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary, #475569);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.gsm-media-tab i {
  font-size: 1.25rem;
  color: #ea580c;
}

.gsm-media-tab:hover,
.gsm-media-tab.active {
  background: #fff7ed;
  border-color: #fdba74;
  color: #c2410c;
}

/* Right Key Specs Card */
.gsm-keyspecs-card {
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--border-color, rgba(0,0,0,0.08));
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 4px 20px -5px rgba(0,0,0,0.06);
}

.gsm-keyspecs-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color, rgba(0,0,0,0.07));
  margin-bottom: 18px;
}

.gsm-keyspecs-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary, #0f172a);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display, sans-serif);
}

.gsm-os-pill-badge {
  background: #f1f5f9;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e2e8f0;
}

/* Spec Rows with Meters */
.gsm-spec-section-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color, rgba(0,0,0,0.05));
}

.gsm-spec-section-item:last-child {
  border-bottom: none;
  padding-bottom: 4px;
}

.gsm-cat-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.gsm-cat-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-primary, #0f172a);
}

.gsm-cat-name i {
  color: #ea580c;
  font-size: 1.15rem;
}

.gsm-meter-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
}

.gsm-mini-meter {
  display: flex;
  gap: 3px;
}

.gsm-mini-meter span {
  display: inline-block;
  width: 10px;
  height: 5px;
  border-radius: 2px;
  background: #cbd5e1;
}

.gsm-mini-meter.meter--5 span { background: #16a34a; }
.gsm-mini-meter.meter--4 span:nth-child(-n+4) { background: #22c55e; }
.gsm-mini-meter.meter--3 span:nth-child(-n+3) { background: #f59e0b; }

.gsm-rating-txt {
  color: #16a34a;
  font-weight: 700;
}

.gsm-spec-bullets {
  margin: 0;
  padding-left: 28px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gsm-spec-bullets li {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-secondary, #334155);
}

.gsm-spec-bullets li strong {
  color: var(--text-primary, #0f172a);
  font-weight: 600;
}

/* Key Specs Bottom Action Buttons */
.gsm-keyspecs-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color, rgba(0,0,0,0.07));
}

.gsm-btn-action-outline {
  border: 1px solid #ea580c;
  color: #ea580c !important;
  background: transparent;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.gsm-btn-action-outline:hover {
  background: #fff7ed;
}

.gsm-btn-action-fill {
  background: #fff7ed;
  border: 1px solid #ffedd5;
  color: #ea580c !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.gsm-btn-action-fill:hover {
  background: #ea580c;
  color: #ffffff !important;
}

/* 3. Section Cards */
.gsm-section-card {
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--border-color, rgba(0,0,0,0.08));
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px -5px rgba(0,0,0,0.06);
}

.gsm-sec-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color, rgba(0,0,0,0.07));
  margin-bottom: 20px;
}

.gsm-sec-title {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--text-primary, #0f172a);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display, sans-serif);
}

.gsm-sec-title i {
  color: #ea580c;
  font-size: 1.25rem;
}

.gsm-sec-badge {
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Prices Table */
.gsm-price-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gsm-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-card-sub, #f8fafc);
  border: 1px solid var(--border-color, rgba(0,0,0,0.06));
  border-radius: 12px;
  flex-wrap: wrap;
  gap: 16px;
}

.gsm-store-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gsm-store-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fff7ed;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border: 1px solid #ffedd5;
}

.gsm-store-info strong {
  font-size: 1rem;
  color: var(--text-primary, #0f172a);
  display: block;
}

.gsm-store-name {
  font-size: 0.84rem;
  color: var(--text-muted, #64748b);
}

.gsm-store-price {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gsm-price-tag {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary, #0f172a);
}

.gsm-btn-store {
  background: #ea580c;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.gsm-btn-store:hover {
  background: #c2410c;
}

/* 4. Expert Review Summary */
.gsm-award-banner {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.gsm-award-icon {
  font-size: 1.85rem;
}

.gsm-award-banner strong {
  color: #92400e;
  font-size: 1rem;
  display: block;
}

.gsm-award-banner p {
  margin: 2px 0 0 0;
  font-size: 0.86rem;
  color: #b45309;
}

.gsm-verdict-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.gsm-expert-score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gsm-score-big {
  font-size: 2rem;
  font-weight: 900;
  color: #16a34a;
  line-height: 1;
}

.gsm-score-meta strong {
  font-size: 0.95rem;
  color: var(--text-primary, #0f172a);
  display: block;
}

.gsm-score-meta span {
  font-size: 0.82rem;
  color: #b45309;
  font-weight: 700;
}

.gsm-author-chip {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gsm-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.gsm-author-chip strong {
  font-size: 0.88rem;
  color: var(--text-primary, #0f172a);
  display: block;
}

.gsm-author-chip span {
  font-size: 0.78rem;
  color: var(--text-muted, #64748b);
}

.gsm-verdict-heading {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary, #0f172a);
  margin: 0 0 8px 0;
}

.gsm-verdict-p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text-secondary, #334155);
  margin: 0 0 24px 0;
}

/* Pros & Cons */
.gsm-pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .gsm-pros-cons-grid {
    grid-template-columns: 1fr;
  }
}

.gsm-pros-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 18px;
}

.gsm-cons-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 18px;
}

.gsm-box-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gsm-pros-title { color: #16a34a; }
.gsm-cons-title { color: #dc2626; }

.gsm-pros-list,
.gsm-cons-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gsm-pros-list li {
  font-size: 0.88rem;
  color: #1e293b;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.gsm-pros-list li i {
  color: #16a34a;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.gsm-cons-list li {
  font-size: 0.88rem;
  color: #1e293b;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.gsm-cons-list li i {
  color: #dc2626;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Accordion Breakdown */
.gsm-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gsm-accordion {
  border: 1px solid var(--border-color, rgba(0,0,0,0.08));
  border-radius: 10px;
  background: var(--bg-card-sub, #f8fafc);
  overflow: hidden;
  transition: all 0.2s ease;
}

.gsm-accordion summary {
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary, #0f172a);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
}

.gsm-accordion summary::-webkit-details-marker {
  display: none;
}

.gsm-accordion summary i:first-child {
  color: #ea580c;
  margin-right: 8px;
}

.gsm-accordion .gsm-caret {
  color: #64748b;
  transition: transform 0.2s ease;
}

.gsm-accordion[open] .gsm-caret {
  transform: rotate(180deg);
}

.gsm-acc-content {
  padding: 14px 18px 16px 18px;
  border-top: 1px solid var(--border-color, rgba(0,0,0,0.06));
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary, #334155);
}

.gsm-acc-content p {
  margin: 0;
}

/* 5. Full Specs Category Tables */
/* 2. Store Availability Table Enhanced */
.gsm-sec-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.gsm-sec-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary, #0f172a);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gsm-sec-title i {
  color: #ea580c;
}

.gsm-sec-subtitle {
  font-size: 0.85rem;
  color: #64748b;
  margin: 4px 0 0 0;
}

.gsm-price-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gsm-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-card-sub, #f8fafc);
  border: 1px solid var(--border-color, rgba(0, 0, 0, 0.06));
  border-radius: 12px;
  flex-wrap: wrap;
  gap: 16px;
  transition: all 0.2s ease;
}

.gsm-price-row:hover {
  border-color: rgba(234, 88, 12, 0.3);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.gsm-price-row--featured {
  background: #fff8f5;
  border-color: #ffedd5;
}

.gsm-store-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gsm-store-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.gsm-store-icon--brand {
  background: #ffedd5;
  color: #c2410c;
}

.gsm-store-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gsm-store-title-wrap strong {
  font-size: 1rem;
  color: var(--text-primary, #0f172a);
}

.gsm-store-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: #e2e8f0;
  color: #475569;
}

.gsm-pill-official {
  background: #dcfce7;
  color: #15803d;
}

.gsm-pill-prime {
  background: #e0f2fe;
  color: #0369a1;
}

.gsm-store-name {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted, #64748b);
  margin-top: 3px;
}

.gsm-store-price {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.gsm-price-val-wrap {
  text-align: right;
}

.gsm-stock-tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.gsm-in-stock {
  color: #16a34a;
}

.gsm-btn-store {
  background: #ea580c;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.gsm-btn-store:hover {
  background: #c2410c;
  transform: translateY(-1px);
}

.gsm-btn-store--primary {
  background: #00875a;
}

.gsm-btn-store--primary:hover {
  background: #006644;
}

/* 3. Performance Benchmark Card */
.gsm-benchmark-card {
  border-left: 4px solid #ea580c;
}

.gsm-overall-score-chip {
  background: #dcfce7;
  color: #15803d;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
}

.gsm-overall-score-chip strong {
  font-size: 1.15rem;
}

.gsm-benchmark-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.gsm-bench-item {
  background: var(--bg-card-sub, #f8fafc);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border-color, rgba(0, 0, 0, 0.05));
}

.gsm-bench-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.gsm-bench-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
  display: flex;
  align-items: center;
  gap: 6px;
}

.gsm-bench-label i {
  color: #ea580c;
}

.gsm-bench-val {
  font-size: 0.8rem;
  font-weight: 800;
  color: #16a34a;
}

.gsm-bench-bar {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.gsm-bench-fill {
  height: 100%;
  background: linear-gradient(90deg, #ea580c, #16a34a);
  border-radius: 4px;
}

/* 4. Filter Buttons Bar for Specifications */
.gsm-spec-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color, rgba(0,0,0,0.06));
}

.gsm-filter-btn {
  background: var(--bg-card-sub, #f1f5f9);
  color: #475569;
  border: 1px solid var(--border-color, rgba(0,0,0,0.08));
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.gsm-filter-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.gsm-filter-btn.active {
  background: #ea580c;
  color: #ffffff;
  border-color: #ea580c;
}

/* 5. Full Specs Category Tables Enhanced */
.gsm-full-specs-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gsm-spec-table-block {
  border: 1px solid var(--border-color, rgba(0,0,0,0.1)) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: var(--bg-card, #ffffff) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02) !important;
}

.gsm-spec-table-head {
  background: var(--bg-card-sub, #f8fafc) !important;
  padding: 14px 20px !important;
  border-bottom: 1px solid var(--border-color, rgba(0,0,0,0.08)) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.gsm-spec-table-head h4 {
  margin: 0 !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: var(--text-primary, #0f172a) !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.gsm-spec-table-head h4 i {
  color: #ea580c !important;
  font-size: 1.2rem !important;
}

.gsm-spec-count-tag {
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  color: #64748b !important;
  background: rgba(0,0,0,0.05) !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  letter-spacing: 0.04em !important;
}

.gsm-spec-table-body {
  display: flex !important;
  flex-direction: column !important;
}

.gsm-spec-table-row {
  display: grid !important;
  grid-template-columns: 260px 1fr !important;
  padding: 14px 20px !important;
  border-bottom: 1px solid var(--border-color, rgba(0,0,0,0.05)) !important;
  font-size: 0.92rem !important;
  align-items: center !important;
  gap: 16px !important;
}

.gsm-spec-table-row:last-child {
  border-bottom: none !important;
}

.gsm-spec-table-row:nth-child(even) {
  background: rgba(0,0,0,0.02) !important;
}

.gsm-spec-label {
  color: var(--text-muted, #475569) !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 0.9rem !important;
}

.gsm-spec-label i {
  color: #ea580c !important;
  font-size: 1.1rem !important;
  flex-shrink: 0 !important;
}

.gsm-spec-value {
  color: var(--text-primary, #0f172a) !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
}

@media (max-width: 640px) {
  .gsm-spec-table-row {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    padding: 12px 16px !important;
  }
}

/* Dark Theme Adjustments for 91mobiles Layout */
[data-theme="dark"] .gsm-main-photo-card,
[data-theme="dark"] .gsm-price-action-box,
[data-theme="dark"] .gsm-keyspecs-card,
[data-theme="dark"] .gsm-media-tab,
[data-theme="dark"] .gsm-section-card,
[data-theme="dark"] .gsm-spec-table-block,
[data-theme="dark"] .gsm-price-row,
[data-theme="dark"] .gsm-bench-item {
  background: var(--bg-card, #0f172a) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .gsm-os-pill-badge,
[data-theme="dark"] .gsm-sec-badge,
[data-theme="dark"] .gsm-author-avatar,
[data-theme="dark"] .gsm-accordion,
[data-theme="dark"] .gsm-spec-table-head,
[data-theme="dark"] .gsm-filter-btn {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: #cbd5e1 !important;
}

[data-theme="dark"] .gsm-filter-btn.active {
  background: #ea580c !important;
  color: #ffffff !important;
  border-color: #ea580c !important;
}

[data-theme="dark"] .gsm-price-row--featured {
  background: rgba(234, 88, 12, 0.08) !important;
  border-color: rgba(234, 88, 12, 0.25) !important;
}

[data-theme="dark"] .gsm-store-icon {
  background: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .gsm-bench-bar {
  background: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .gsm-spec-table-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.02) !important;
}

[data-theme="dark"] .gsm-spec-table-row {
  border-bottom-color: rgba(255, 255, 255, 0.04) !important;
}

[data-theme="dark"] .gsm-title,
[data-theme="dark"] .gsm-keyspecs-heading,
[data-theme="dark"] .gsm-cat-name,
[data-theme="dark"] .gsm-price-text,
[data-theme="dark"] .gsm-sec-title,
[data-theme="dark"] .gsm-spec-table-head h4,
[data-theme="dark"] .gsm-spec-value,
[data-theme="dark"] .gsm-store-title-wrap strong,
[data-theme="dark"] .gsm-bench-label {
  color: #f8fafc !important;
}

[data-theme="dark"] .gsm-spec-label {
  color: #94a3b8 !important;
}

[data-theme="dark"] .gsm-spec-bullets li,
[data-theme="dark"] .gsm-verdict-p,
[data-theme="dark"] .gsm-acc-content,
[data-theme="dark"] .gsm-store-name {
  color: #cbd5e1 !important;
}

[data-theme="dark"] .gsm-pros-box {
  background: rgba(22, 163, 74, 0.12) !important;
  border-color: rgba(22, 163, 74, 0.3) !important;
}

[data-theme="dark"] .gsm-cons-box {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: rgba(220, 38, 38, 0.25) !important;
}
}

[data-theme="dark"] .gsm-cons-box {
  background: rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.3);
}

[data-theme="dark"] .gsm-pros-list li,
[data-theme="dark"] .gsm-cons-list li {
  color: #f1f5f9;
}

[data-theme="dark"] .gsm-award-banner {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
}

[data-theme="dark"] .gsm-award-banner strong {
  color: #fcd34d;
}

[data-theme="dark"] .gsm-award-banner p {
  color: #fde68a;
}

/* Specific 91mobiles Screenshot Refinements */
.gsm-main-top-card {
  border-radius: 8px !important;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06) !important;
  padding: 24px 28px !important;
  margin-bottom: 24px !important;
}

.gsm-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  gap: 16px;
  flex-wrap: wrap;
}

.gsm-meta-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
  font-size: 0.85rem;
}

.gsm-badge-new {
  background: #16a34a;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gsm-trend-tag {
  color: #16a34a !important;
  font-weight: 600;
}

.gsm-star-tag {
  color: #b45309;
  font-weight: 700;
}

.gsm-subnav-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 24px;
  background: #f8fafc;
  padding: 0 20px;
  border-radius: 6px;
  overflow-x: auto;
}

[data-theme="dark"] .gsm-subnav-bar {
  background: rgba(255, 255, 255, 0.03);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.gsm-subnav-item {
  font-size: 0.82rem;
  font-weight: 800;
  color: #64748b;
  text-decoration: none;
  padding: 12px 2px;
  letter-spacing: 0.06em;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.gsm-subnav-item:hover {
  color: #ea580c;
}

.gsm-subnav-item.active {
  color: #0f172a;
  border-bottom-color: #ea580c;
}

[data-theme="dark"] .gsm-subnav-item.active {
  color: #f8fafc;
}

.gsm-keyspecs-heading {
  border-left: 4px solid #ea580c;
  padding-left: 10px;
}

.gsm-btn-view-photos {
  background: #ffedd5;
  color: #ea580c;
  border: 1px solid #fed7aa;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  margin-top: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.gsm-btn-view-photos:hover {
  background: #ea580c;
  color: #ffffff;
}

/* ── Streaming Device Page Isolation & Full Width Layout ── */
body.page-is-device #bdHero,
body.page-is-device .bd-hero,
body.page-is-device .bd-cover-wrap,
body.page-is-device #bdCoverWrap,
body.page-is-device .bd-sidebar,
body.page-is-device #bdSidebar,
body.page-is-device .bd-tags-row,
body.page-is-device #bdTagsRow,
body.page-is-device .bd-author-bio,
body.page-is-device #bdAuthorBio,
body.page-is-device .bd-related,
body.page-is-device #bdRelatedSec,
body.page-is-device .bd-newsletter,
body.page-is-device #bdProgressBar {
  display: none !important;
}

body.page-is-device .bd-layout {
  display: block !important;
  grid-template-columns: 1fr !important;
  max-width: 1200px !important;
  width: 100% !important;
  margin: 24px auto 60px !important;
  padding: 0 16px !important;
}

body.page-is-device .bd-content,
body.page-is-device .bd-article {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ── Modern Device Specification & Review Styles ──────────────────────── */
.device-hero-showcase {
  background: linear-gradient(135deg, rgba(20, 25, 35, 0.95), rgba(15, 18, 26, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 28px;
  margin-bottom: 36px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .device-hero-showcase {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.device-hero-showcase::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(0, 210, 137, 0.15), transparent 70%);
  pointer-events: none;
}

.device-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.device-hero-title-wrap {
  flex: 1;
  min-width: 280px;
}

.device-hero-tagline {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 8px;
}

.device-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.dev-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.dev-badge--brand {
  background: rgba(0, 210, 137, 0.12);
  color: #00d289;
  border: 1px solid rgba(0, 210, 137, 0.3);
}

.dev-badge--year {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dev-badge--status {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.device-score-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 20px;
  border-radius: 14px;
}

[data-theme="light"] .device-score-card {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.device-score-num {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-display, inherit);
  color: #00d289;
  line-height: 1;
}

.device-score-meta {
  display: flex;
  flex-direction: column;
}

.device-score-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.device-score-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-top: 2px;
}

/* ── 6-Card Quick Spec Metric Grid ── */
.spec-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.spec-quick-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s, border-color 0.2s;
}

[data-theme="light"] .spec-quick-card {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.spec-quick-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 210, 137, 0.3);
}

.spec-quick-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 210, 137, 0.1);
  color: #00d289;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.spec-quick-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.spec-quick-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.spec-quick-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

/* ── Modern Soft UI Specification Cards ── */
.device-spec-card {
  background: var(--bg-card, #161b22);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  border-radius: 16px;
  margin: 22px 0;
  overflow: hidden;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .device-spec-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 18px -2px rgba(15, 23, 42, 0.04), 0 1px 4px rgba(15, 23, 42, 0.02);
}

.device-spec-card__header {
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  display: flex;
  align-items: center;
  justify-content: space-between;
}

[data-theme="light"] .device-spec-card__header {
  background: #f8fafc;
  border-bottom: 1px solid #eef2f6;
}

.device-spec-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
}

.device-spec-card__title i {
  color: #00d289;
  font-size: 1.2rem;
}

[data-theme="light"] .device-spec-card__title {
  color: #1e293b;
}

[data-theme="light"] .device-spec-card__title i {
  color: #3b82f6;
}

.device-spec-card__badge {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .device-spec-card__badge {
  background: #ffffff;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.device-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.device-spec-table tr {
  border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.05));
  transition: background 0.15s ease;
}

[data-theme="light"] .device-spec-table tr {
  border-bottom: 1px solid #f1f5f9;
}

.device-spec-table tr:last-child {
  border-bottom: none;
}

.device-spec-table tr:hover {
  background: rgba(0, 210, 137, 0.03);
}

[data-theme="light"] .device-spec-table tr:hover {
  background: #f8fafc;
}

.device-spec-table td {
  padding: 12px 20px;
  vertical-align: middle;
}

.device-spec-table td.spec-key {
  width: 35%;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.88rem;
  background: transparent;
  border-right: none;
}

[data-theme="light"] .device-spec-table td.spec-key {
  color: #64748b;
  background: transparent;
}

.device-spec-table td.spec-val {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
}

[data-theme="light"] .device-spec-table td.spec-val {
  color: #1e293b;
}

/* Soft UI Status & Price Badges */
.spec-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(0, 210, 137, 0.12);
  color: #00d289;
  border: 1px solid rgba(0, 210, 137, 0.25);
}

[data-theme="light"] .spec-status-pill {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #dbeafe;
}

.spec-price-tag {
  color: #00d289;
  font-weight: 700;
  font-size: 1rem;
}

[data-theme="light"] .spec-price-tag {
  color: #2563eb;
}

/* ── Soft UI Step Cards ── */
.device-setup-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.device-setup-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card, #161b22);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  border-radius: 12px;
  padding: 14px 18px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

[data-theme="light"] .device-setup-step {
  background: #ffffff;
  border: 1px solid #eef2f6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.device-setup-step:hover {
  border-color: rgba(0, 210, 137, 0.4);
}

[data-theme="light"] .device-setup-step:hover {
  border-color: #bfdbfe;
  background: #f8fafc;
}

.step-num-pill {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 210, 137, 0.15);
  color: #00d289;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

[data-theme="light"] .step-num-pill {
  background: #eff6ff;
  color: #2563eb;
}

.step-text-wrap {
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-primary);
}

[data-theme="light"] .step-text-wrap {
  color: #334155;
}

.step-text-wrap strong {
  color: #00d289;
}

[data-theme="light"] .step-text-wrap strong {
  color: #1e293b;
}

/* ── Soft UI Verdict & Purchase Banner ── */
.device-verdict-banner {
  background: linear-gradient(135deg, rgba(0, 210, 137, 0.06), rgba(15, 23, 42, 0.8));
  border: 1px solid rgba(0, 210, 137, 0.2);
  border-radius: 16px;
  padding: 26px 24px;
  margin: 36px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

[data-theme="light"] .device-verdict-banner {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.04);
}

.verdict-info-wrap {
  flex: 1;
  min-width: 260px;
}

.verdict-info-wrap h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px;
}

[data-theme="light"] .verdict-info-wrap h3 {
  color: #1e293b;
}

[data-theme="light"] .verdict-info-wrap h3 i {
  color: #2563eb;
}

.verdict-info-wrap p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}

[data-theme="light"] .verdict-info-wrap p {
  color: #475569;
}

/* ── Verdict Action Button ── */
.verdict-action-btn,
.bd-article a.verdict-action-btn,
[data-theme="dark"] .bd-article a.verdict-action-btn,
[data-theme="dark"] .verdict-action-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 12px 24px !important;
  background: #00d289 !important;
  color: #000000 !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(0, 210, 137, 0.35) !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
}

.verdict-action-btn *,
.bd-article a.verdict-action-btn *,
[data-theme="dark"] .bd-article a.verdict-action-btn *,
[data-theme="dark"] .verdict-action-btn * {
  color: #000000 !important;
}

.verdict-action-btn:hover,
[data-theme="dark"] .verdict-action-btn:hover {
  background: #05f09f !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0, 210, 137, 0.45) !important;
  color: #000000 !important;
}

/* Light Theme: Blue background with White text & icon */
[data-theme="light"] .verdict-action-btn,
[data-theme="light"] .bd-article a.verdict-action-btn {
  background: #2563eb !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3) !important;
}

[data-theme="light"] .verdict-action-btn *,
[data-theme="light"] .bd-article a.verdict-action-btn * {
  color: #ffffff !important;
}

[data-theme="light"] .verdict-action-btn:hover,
[data-theme="light"] .bd-article a.verdict-action-btn:hover {
  background: #1d4ed8 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4) !important;
}

[data-theme="light"] .bd-callout--success {
  background: #f0fdf4;
  border-left-color: #22c55e;
}

[data-theme="light"] .bd-callout--success .bd-callout__icon i {
  color: #16a34a;
}

[data-theme="light"] h2 i[style*="color:#00d289"],
[data-theme="light"] h3 i[style*="color:#00d289"] {
  color: #3b82f6 !important;
}

