/* SM Manual — frontend
 * Dark "glass-morphism" aesthetic matching /old2/ landing:
 *   - Layered radial + linear gradient background
 *   - Subtle grid overlay
 *   - Translucent panels with backdrop blur
 *   - Strong drop shadows, generous border radius
 *   - Tight letter-spacing on big headings
 * Body font Roboto, code Roboto Mono, accent Emulator orange.
 */
:root {
    --smm-bg-base: #0b0b0c;
    --smm-bg-soft: #141416;
    --smm-fg: #f4f4f5;
    --smm-fg-strong: #ffffff;
    --smm-muted: #a1a1aa;
    --smm-border: rgba(255,255,255,.08);
    --smm-border-strong: rgba(255,255,255,.16);
    --smm-panel: rgba(255,255,255,.04);
    --smm-panel-hover: rgba(255,255,255,.07);
    --smm-accent: #ff8a00;
    --smm-accent-soft: rgba(255,138,0,.10);
    --smm-accent-strong: #ffae4d;
    --smm-link: #7fb6ff;
    --smm-link-hover: #ffae4d;
    --smm-code-bg: rgba(255,255,255,.045);
    --smm-code-fg: #e6e8ec;
    --smm-shadow-sm: 0 4px 14px rgba(0,0,0,.35);
    --smm-shadow: 0 10px 30px rgba(0,0,0,.45), 0 2px 6px rgba(0,0,0,.4);
    --smm-shadow-lg: 0 20px 60px rgba(0,0,0,.5);
    --smm-radius: 18px;
    --smm-radius-sm: 10px;
    --smm-radius-lg: 28px;
    --smm-sidebar-w: 320px;
    --smm-toc-w: 240px;
    --smm-content-max: 820px;
    --smm-font: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --smm-font-mono: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* Layered gradient background for the entire viewport. The radial highlight
 * gives the page that "spotlight" feel from the old2 landing. */
html, body {
    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,.08), transparent 38%),
        linear-gradient(180deg, var(--smm-bg-soft) 0%, var(--smm-bg-base) 100%);
    background-attachment: fixed;
    color: var(--smm-fg);
}

/* Subtle grid behind everything in the manual — green at low alpha, masked
 * to fade out at the edges. Pointer-events none so it can't intercept clicks. */
body.smm-manual-view::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,138,0,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,138,0,.06) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(circle at center, black 45%, transparent 90%);
            mask-image: radial-gradient(circle at center, black 45%, transparent 90%);
}
body.smm-manual-view .smm-shell { position: relative; z-index: 1; }

/* Hide the active theme's automatic page-title bar / hero / breadcrumbs / featured image
 * so the manual owns the visible canvas. Targets the common patterns across
 * Twenty* themes, Astra, GeneratePress, OceanWP, Kadence, block themes, etc. */
body.smm-manual-view .entry-header,
body.smm-manual-view header.entry-header,
body.smm-manual-view .page-header,
body.smm-manual-view header.page-header,
body.smm-manual-view .post-thumbnail,
body.smm-manual-view .wp-block-post-title,
body.smm-manual-view .wp-block-post-featured-image,
body.smm-manual-view .breadcrumbs,
body.smm-manual-view .breadcrumb,
body.smm-manual-view nav.breadcrumb,
body.smm-manual-view .yoast-breadcrumbs,
body.smm-manual-view #breadcrumb,
body.smm-manual-view .single-page-title,
body.smm-manual-view .page-title-bar,
body.smm-manual-view .page-hero,
body.smm-manual-view .hero-section,
body.smm-manual-view .ast-archive-description,
body.smm-manual-view .ast-page-header-section,
body.smm-manual-view .elementor-page-title,
body.smm-manual-view .elementor-section.title-section {
    display: none !important;
}
/* Also nuke any sidebar widgets the theme may inject — manual provides its own. */
body.smm-manual-view .widget-area,
body.smm-manual-view #secondary,
body.smm-manual-view aside.sidebar:not(.smm-sidebar) {
    display: none !important;
}
/* Don't override the theme's wrappers — that breaks Elementor / theme headers.
 * .smm-shell has its own max-width and centering. */

/* Guard against accidental cropping of the site logo on manual pages */
body.smm-manual-view .elementor-widget-theme-site-logo,
body.smm-manual-view .elementor-widget-theme-site-logo .elementor-widget-container,
body.smm-manual-view .elementor-widget-image,
body.smm-manual-view .elementor-widget-image .elementor-widget-container {
    overflow: visible !important;
    max-height: none !important;
}
body.smm-manual-view .elementor-widget-theme-site-logo img,
body.smm-manual-view .elementor-widget-image img {
    max-height: none !important;
    height: auto !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    clip-path: none !important;
}

/* Reset border/background/padding on our internal <header>, <main>, <article>, <aside>,
 * <nav> wrappers — the active theme commonly styles these tags globally
 * (e.g. "header { border-bottom:1px solid; padding:20px }") and we don't want
 * those to leak into our layout. */
body.smm-manual-view .smm-shell header,
body.smm-manual-view .smm-shell main,
body.smm-manual-view .smm-shell article,
body.smm-manual-view .smm-shell aside,
body.smm-manual-view .smm-shell nav,
body.smm-manual-view .smm-index-head,
body.smm-manual-view .smm-article-head,
body.smm-manual-view .smm-article {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}
/* Allow our intentional decorations back where we want them */
body.smm-manual-view .smm-content h2 {
    border-bottom: 1px solid var(--smm-border) !important;
}
body.smm-manual-view .smm-pager a {
    border: 1px solid var(--smm-border) !important;
}
body.smm-manual-view .smm-pager a:hover {
    border-color: var(--smm-accent) !important;
}
body.smm-manual-view .smm-software-card {
    border: 1px solid var(--smm-border) !important;
}
body.smm-manual-view .smm-software-card:hover {
    border-color: var(--smm-accent) !important;
}
body.smm-manual-view .smm-content blockquote {
    border-left: 3px solid var(--smm-accent) !important;
}

/* Roboto everywhere inside the manual — overrides any theme typography */
.smm-shell,
.smm-shell *:not(code):not(pre):not(kbd):not(samp):not(.smm-content code):not(.smm-content pre) {
    font-family: var(--smm-font);
}
.smm-shell code,
.smm-shell pre,
.smm-shell kbd,
.smm-shell samp {
    font-family: var(--smm-font-mono);
}
/* Form controls, buttons, inputs that normally reset font */
.smm-shell input,
.smm-shell textarea,
.smm-shell select,
.smm-shell button {
    font-family: var(--smm-font);
}

/* ----- shell ----- */
.smm-shell {
    display: grid;
    grid-template-columns: var(--smm-sidebar-w) 1fr;
    min-height: calc(100vh - 100px);
    color: var(--smm-fg);
    font-family: var(--smm-font);
    font-size: 18px;
    line-height: 1.7;
    padding: 28px 28px 40px;
    gap: 28px;
    max-width: 1480px;
    margin: 0 auto;
}
.smm-shell--index { grid-template-columns: 1fr; }

/* ----- sidebar ----- */
.smm-sidebar {
    background: transparent;
    border: 0;
    box-shadow: none;
    position: sticky;
    top: 28px;
    align-self: start;
    height: calc(100vh - 56px);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.smm-sidebar-inner { padding: 22px 18px 60px; }
/* Custom scrollbar inside sidebar */
.smm-sidebar::-webkit-scrollbar { width: 8px; }
.smm-sidebar::-webkit-scrollbar-track { background: transparent; }
.smm-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.08); border-radius: 8px; }
.smm-sidebar::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.15); }

.smm-brand {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: inherit;
    margin-bottom: 18px;
}
.smm-brand-mark {
    background: var(--smm-accent); color: #0a0a0a;
    width: 38px; height: 38px; border-radius: var(--smm-radius-sm);
    display: grid; place-items: center;
    font-weight: 800; font-size: 14px; letter-spacing: .04em;
}
.smm-brand-text { display: flex; flex-direction: column; line-height: 1.2; font-size: 16px; font-weight: 600; color: var(--smm-fg-strong); }
.smm-brand-text small { color: var(--smm-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }

.smm-search {
    position: relative;
    margin-bottom: 16px;
}
.smm-search input {
    width: 100%; padding: 11px 14px;
    border: 1px solid var(--smm-border);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    color: var(--smm-fg);
    font: inherit;
    font-size: 14px;
}
.smm-search input::placeholder { color: var(--smm-muted); }
.smm-search input:focus {
    outline: none;
    border-color: var(--smm-accent);
    background: rgba(255,255,255,.07);
    box-shadow: 0 0 0 3px rgba(255,138,0,.15);
}
.smm-search input:focus {
    outline: 2px solid var(--smm-accent);
    outline-offset: -1px;
    border-color: var(--smm-accent);
}
.smm-search-results {
    position: absolute;
    top: calc(100% + 4px); left: 0; right: 0;
    background: rgba(20,20,22,.95);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border: 1px solid var(--smm-border);
    border-radius: var(--smm-radius-sm);
    box-shadow: var(--smm-shadow-lg);
    max-height: 320px; overflow-y: auto;
    z-index: 20;
}
.smm-search-results a {
    display: block; padding: 10px 12px; color: var(--smm-fg);
    text-decoration: none; font-size: 15px;
    border-bottom: 1px solid var(--smm-border);
}
.smm-search-results a:last-child { border-bottom: 0; }
.smm-search-results a:hover { background: var(--smm-accent-soft); color: var(--smm-accent-strong); }
.smm-search-results .smm-no-results { padding: 12px; color: var(--smm-muted); font-size: 14px; }

/* ----- tree ----- */
.smm-tree, .smm-tree ul {
    list-style: none; margin: 0; padding: 0;
}
.smm-tree ul {
    padding-left: 14px;
    border-left: 1px solid var(--smm-border);
    margin-left: 8px;
    display: none;
}
.smm-tree-item.is-open > ul { display: block; }

.smm-tree-item {
    position: relative;
    margin: 1px 0;
}
.smm-tree-item > a {
    display: block;
    padding: 7px 10px;
    border-radius: var(--smm-radius-sm);
    color: var(--smm-sidebar-fg);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
    padding-right: 28px;
}
.smm-tree-item > a:hover { background: rgba(255,255,255,.06); color: var(--smm-fg-strong); }
.smm-tree-item.is-current > a {
    background: var(--smm-accent-soft);
    color: var(--smm-accent-strong);
    font-weight: 600;
    box-shadow: inset 3px 0 0 var(--smm-accent);
    border-radius: 8px;
}
.smm-tree-item.depth-1 > a { font-weight: 600; color: var(--smm-fg-strong); }

.smm-tree-toggle {
    position: absolute; top: 4px; right: 2px;
    width: 22px; height: 22px;
    background: transparent; border: 0; cursor: pointer;
    color: var(--smm-muted);
    display: grid; place-items: center;
    transition: transform .15s ease;
}
.smm-tree-item.is-open > .smm-tree-toggle { transform: rotate(180deg); }
.smm-tree-toggle:hover { color: var(--smm-fg); }

/* ----- main / article ----- */
/* Content area sits directly on the page background — no panel,
 * no backdrop blur, no border. The gradient + grid do the heavy lifting.
 * Generous bottom padding so the pager (Previous / Next) never gets
 * hidden behind the active theme's footer. */
.smm-main {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 28px 40px 160px;
    max-width: 100%;
    overflow-x: hidden;
}
.smm-main--index { padding: 80px 40px 160px; }

.smm-breadcrumbs {
    font-size: 14px;
    color: var(--smm-muted);
    margin-bottom: 22px;
    display: flex; flex-wrap: wrap; gap: 8px;
}
.smm-breadcrumbs a { color: var(--smm-muted); text-decoration: none; }
.smm-breadcrumbs a:hover { color: var(--smm-fg-strong); }
.smm-breadcrumbs .smm-current { color: var(--smm-fg-strong); font-weight: 500; }
.smm-breadcrumbs .smm-sep { color: var(--smm-border-strong); }

.smm-article {
    max-width: var(--smm-content-max);
}
.smm-article-head h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    margin: 0 0 14px;
    letter-spacing: -.03em;
    font-weight: 800;
    color: var(--smm-fg-strong);
}
.smm-article-head .smm-lede {
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    color: var(--smm-muted);
    margin: 0 0 36px;
    line-height: 1.65;
    max-width: 620px;
}

.smm-content {
    font-size: 18px;
    color: var(--smm-fg);
    line-height: 1.75;
}
/* Default vertical rhythm — every block-level element gets bottom margin. */
.smm-content p,
.smm-content ul,
.smm-content ol,
.smm-content blockquote,
.smm-content pre,
.smm-content table,
.smm-content figure,
.smm-content hr,
.smm-content .wp-block-image,
.smm-content .wp-block-embed,
.smm-content .wp-block-video,
.smm-content .wp-block-quote,
.smm-content .wp-block-table,
.smm-content .wp-block-gallery,
.smm-content .wp-block-columns,
.smm-content .wp-block-group {
    margin: 0 0 1.1em;
}
.smm-content > *:last-child { margin-bottom: 0; }

.smm-content h2,
.smm-content h3,
.smm-content h4 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--smm-fg-strong);
}
.smm-content h2 {
    font-size: 30px;
    margin: 2.2em 0 .6em;
    padding-bottom: .35em;
    border-bottom: 1px solid var(--smm-border);
    scroll-margin-top: 24px;
}
.smm-content h3 {
    font-size: 22px;
    margin: 1.8em 0 .4em;
    scroll-margin-top: 24px;
}
.smm-content h4 {
    font-size: 19px;
    margin: 1.4em 0 .3em;
}
/* Inline emphasis */
.smm-content strong,
.smm-content b { font-weight: 700; }
.smm-content em,
.smm-content i { font-style: italic; }
.smm-content a { color: var(--smm-link); text-decoration: underline; text-underline-offset: 2px; }
.smm-content a:hover { color: var(--smm-accent-strong); }
.smm-content img,
.smm-content video {
    max-width: 100%; height: auto;
    /* No border-radius, no shadow — keep images as authored. */
    margin: 1.2em 0;
}
.smm-content figure { margin: 1.2em 0; }
.smm-content figure img { margin: 0; }
.smm-content figcaption { font-size: 13px; color: var(--smm-muted); margin-top: 6px; }
.smm-content blockquote {
    border-left: 3px solid var(--smm-accent);
    padding: 12px 18px;
    background: rgba(255,138,0,.08);
    border-radius: 0 var(--smm-radius-sm) var(--smm-radius-sm) 0;
    color: var(--smm-fg-strong);
    font-size: 17px;
}
.smm-content code {
    font-family: var(--smm-font-mono);
    background: var(--smm-code-bg);
    color: var(--smm-accent-strong);
    padding: 2px 7px;
    border-radius: 4px;
    font-size: .9em;
    border: 1px solid var(--smm-border);
}
.smm-content pre {
    background: var(--smm-code-bg);
    border: 1px solid var(--smm-border);
    border-radius: var(--smm-radius-sm);
    padding: 16px 18px;
    overflow-x: auto;
    font-size: 15px;
    color: var(--smm-fg);
}
.smm-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
    border: 0;
}
.smm-content ul, .smm-content ol { padding-left: 26px; }
.smm-content li { margin: 0 0 .35em; }
.smm-content li > p { display: inline; }
.smm-content table {
    width: 100%; border-collapse: collapse; font-size: 16px;
    border: 1px solid var(--smm-border);
    border-radius: var(--smm-radius-sm);
    overflow: hidden;
    color: var(--smm-fg);
}
.smm-content th, .smm-content td {
    padding: 10px 14px; text-align: left;
    border-bottom: 1px solid var(--smm-border);
}
.smm-content th { background: #1a1a1a; color: var(--smm-fg-strong); font-weight: 600; }
.smm-content tr:last-child td { border-bottom: 0; }

/* iframes (youtube / vimeo) — keep responsive */
.smm-content iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

/* ----- pager ----- */
.smm-pager {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    margin-top: 56px;
    margin-bottom: 100px;          /* transparent breathing room below the buttons */
    padding-top: 24px;
    border-top: 1px solid var(--smm-border);
}
.smm-pager a {
    display: flex; flex-direction: column; gap: 6px;
    text-decoration: none;
    padding: 18px 22px;
    border: 1px solid var(--smm-border);
    border-radius: var(--smm-radius);
    color: var(--smm-fg);
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    background: rgba(255,255,255,.03);
    box-shadow: var(--smm-shadow-sm);
}
.smm-pager a:hover {
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.06);
    color: var(--smm-fg-strong);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0,0,0,.45);
}
.smm-pager small { color: var(--smm-muted); font-size: 13px; }
.smm-pager strong { font-size: 17px; font-weight: 600; color: var(--smm-fg-strong); }
.smm-pager-next { text-align: right; }

/* ----- TOC (right rail, only on wide screens) ----- */
.smm-toc {
    display: none;
}
@media (min-width: 1200px) {
    .smm-shell:not(.smm-shell--index) { grid-template-columns: var(--smm-sidebar-w) 1fr var(--smm-toc-w); }
    .smm-toc {
        display: block;
        position: sticky;
        top: 24px;
        align-self: start;
        padding: 24px 24px 24px 0;
        font-size: 13px;
    }
    .smm-toc-title {
        text-transform: uppercase; letter-spacing: .08em;
        font-size: 12px; font-weight: 600;
        color: var(--smm-muted); margin-bottom: 10px;
    }
    .smm-toc ul { list-style: none; padding: 0; margin: 0; border-left: 1px solid var(--smm-border); font-size: 14px; }
    .smm-toc li { margin: 0; }
    .smm-toc a {
        display: block; padding: 5px 14px;
        color: var(--smm-muted); text-decoration: none;
        margin-left: -1px; border-left: 1px solid transparent;
        line-height: 1.4;
    }
    .smm-toc a:hover { color: var(--smm-fg-strong); }
    .smm-toc-h3 a { padding-left: 26px; font-size: 13px; }
    .smm-toc a.is-active { color: var(--smm-accent-strong); border-left-color: var(--smm-accent); }
}

/* ----- mobile ----- */
.smm-mobile-toggle {
    display: none;
    position: fixed; top: 12px; left: 12px; z-index: 50;
    width: 44px; height: 44px;
    background: #1a1a1a;
    border: 1px solid var(--smm-border-strong);
    border-radius: var(--smm-radius-sm);
    cursor: pointer;
    box-shadow: var(--smm-shadow);
}
.smm-mobile-toggle span {
    display: block; width: 20px; height: 2px;
    background: var(--smm-fg-strong);
    margin: 4px auto;
    transition: transform .2s ease;
}
.smm-mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.smm-mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.smm-mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 900px) {
    .smm-shell { grid-template-columns: 1fr !important; font-size: 17px; padding: 12px; gap: 12px; }
    .smm-mobile-toggle { display: block; }
    .smm-sidebar {
        position: fixed; top: 0; left: 0; bottom: 0;
        width: min(88vw, 340px);
        z-index: 40;
        transform: translateX(-100%);
        transition: transform .25s ease;
        box-shadow: var(--smm-shadow);
        height: 100vh;
        border-radius: 0;
    }
    .smm-sidebar[data-mobile-open="true"] { transform: translateX(0); }
    .smm-main { padding: 32px 22px 120px; border-radius: 0; }
    .smm-main--index { padding: 56px 22px 120px; }
    .smm-content { font-size: 17px; }
    .smm-content h2 { font-size: 26px; }
    .smm-content h3 { font-size: 20px; }
    .smm-pager { grid-template-columns: 1fr; }
}

/* ----- index (software list) ----- */
/* Index landing — modeled after the /old2 hero card */
.smm-index-head {
    text-align: center;
    margin-bottom: 56px;
    padding: 0;
}
.smm-index-head h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    margin: 0 0 18px;
    color: var(--smm-fg-strong);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.02;
}
.smm-index-head p {
    color: var(--smm-muted);
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.7;
    margin: 0 auto;
    max-width: 620px;
}
.smm-software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}
.smm-software-card {
    display: flex; flex-direction: column; gap: 14px;
    padding: 30px;
    border: 1px solid var(--smm-border);
    border-radius: 22px;
    text-decoration: none;
    color: var(--smm-fg);
    background: var(--smm-panel);
    -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
    box-shadow: var(--smm-shadow-sm);
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.smm-software-card:hover {
    border-color: rgba(255,255,255,.22);
    background: var(--smm-panel-hover);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.smm-software-card-mark {
    width: 50px; height: 50px;
    background: linear-gradient(180deg, #2a2a2e 0%, #1b1b1f 100%);
    color: var(--smm-accent-strong);
    border: 1px solid var(--smm-border-strong);
    border-radius: 14px;
    display: grid; place-items: center;
    font-weight: 800; letter-spacing: .04em; font-size: 16px;
}
.smm-software-card h3 { margin: 0; font-size: 22px; color: var(--smm-fg-strong); letter-spacing: -.01em; }
.smm-software-card p { margin: 0; color: var(--smm-muted); font-size: 15px; flex: 1; line-height: 1.6; }
.smm-software-card-cta { color: var(--smm-accent-strong); font-size: 15px; font-weight: 600; letter-spacing: .01em; }

.smm-empty-state { padding: 80px 0; max-width: 640px; text-align: center; margin: 0 auto; }
.smm-empty-state h1 { margin: 0 0 14px; color: var(--smm-fg-strong); font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -.03em; }
.smm-empty-state p { color: var(--smm-muted); font-size: 18px; }

.smm-empty { color: var(--smm-muted); font-style: italic; font-size: 14px; }

/* Pill badge utility (for "New", live status, etc.) — matches /old2 style */
.smm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--smm-border);
    color: var(--smm-muted);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
}
.smm-badge::before {
    content: "";
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--smm-accent);
    box-shadow: 0 0 10px rgba(255,138,0,.8);
}
