/* FS Gaming 演示站 — 对齐 fsgaming.net/demo/ 深色科技风 */

:root {
    --fs-brand: #00f2ff;
    --fs-brand-2: #7000ff;
    --fs-bg-dark: #050b18;
    --fs-card-dark: rgba(18, 27, 45, 0.7);
    --fs-text-main: #e6edf7;
    --fs-text-dim: #93a4c3;
    --fs-glow: rgba(0, 242, 255, 0.3);
    --fs-tg-blue: #24A1DE;
    --fs-orange: #ff9800;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

body.fs-demo {
    margin: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, 'Manrope', sans-serif;
    background-color: var(--fs-bg-dark);
    color: var(--fs-text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

body.fs-demo::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 30%, #101a30 0%, #050b18 100%);
    z-index: -2;
}

.fs-container { max-width: 1500px; margin: 0 auto; padding: 20px; }

/* ── 顶栏 + 分类导航（双行布局，分类独占一行） ── */
.fs-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding: 12px 16px 10px;
    border-radius: 16px;
    background: rgba(11, 21, 41, 0.92);
    border: 1px solid rgba(0, 242, 255, 0.15);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 8px;
    z-index: 150;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.fs-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.fs-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}
.fs-logo-link:hover { opacity: 0.92; }
.fs-logo-picture { display: inline-flex; line-height: 0; }
.fs-logo-picture img { display: block; }
.fs-logo-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
}
.fs-logo-wordmark {
    height: 30px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.fs-header-nav-wrap {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 2;
}

.fs-nav-toggle {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(0, 242, 255, 0.2);
    background: rgba(0, 242, 255, 0.06);
    color: var(--fs-text-main);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
.fs-nav-toggle:hover {
    border-color: var(--fs-brand);
    background: rgba(0, 242, 255, 0.12);
}
.fs-nav-toggle-icon {
    width: 18px;
    height: 2px;
    background: currentColor;
    position: relative;
    border-radius: 1px;
    transition: transform 0.2s;
}
.fs-nav-toggle-icon::before,
.fs-nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.2s;
}
.fs-nav-toggle-icon::before { top: -6px; }
.fs-nav-toggle-icon::after { top: 6px; }
.fs-header.is-nav-open .fs-nav-toggle-icon { background: transparent; }
.fs-header.is-nav-open .fs-nav-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.fs-header.is-nav-open .fs-nav-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.fs-site-nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2px;
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,242,255,0.3) transparent;
    padding: 6px 0 2px;
}
.fs-site-nav::-webkit-scrollbar { height: 4px; }
.fs-site-nav::-webkit-scrollbar-thumb {
    background: rgba(0, 242, 255, 0.25);
    border-radius: 4px;
}
.fs-site-nav-link {
    padding: 7px 11px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fs-text-dim);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
    flex-shrink: 0;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}
.fs-site-nav-link:hover {
    color: var(--fs-text-main);
    background: rgba(255, 255, 255, 0.05);
}
.fs-site-nav-link.active {
    color: #ff6b9d;
    background: rgba(255, 107, 157, 0.12);
}
.fs-site-nav-link--external::after {
    content: "↗";
    font-size: 10px;
    margin-left: 4px;
    opacity: 0.7;
}

.fs-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}
.fs-header-telegram {
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: auto;
}
.fs-header-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--fs-text-main);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.2s;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}
.fs-header-pill:hover {
    border-color: var(--fs-tg-blue);
    background: rgba(36, 161, 222, 0.12);
    color: #fff;
}
.fs-header-pill-pending {
    opacity: 0.75;
    cursor: default;
}
.fs-header-pill-pending:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 900px) {
    .fs-container { padding: 12px; }
    .fs-header { top: 0; border-radius: 0 0 14px 14px; padding: 10px 12px 8px; }
    .fs-logo-wordmark { max-width: 120px; height: 26px; }
    .fs-header-telegram .fs-header-pill { padding: 6px 8px; font-size: 11px; }
    .fs-lang-trigger-label { display: none; }
}

@media (max-width: 768px) {
    .fs-nav-toggle { display: flex; }
    .fs-site-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        overflow: visible;
        gap: 4px;
        padding: 0 0 8px;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.2s ease;
    }
    .fs-header.is-nav-open .fs-site-nav {
        display: flex;
        max-height: 480px;
        opacity: 1;
        padding: 8px 0 4px;
    }
    .fs-site-nav-link {
        font-size: 14px;
        padding: 11px 14px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    .fs-site-nav-link.active {
        border-color: rgba(255, 107, 157, 0.35);
    }
    .fs-hero { padding: 20px 14px 24px; }
    .fs-hero-visual { border-radius: 14px; margin-bottom: 16px; min-height: 120px; }
    .fs-nav-bar {
        top: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 10px 12px;
        border-radius: 12px;
    }
    .fs-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        scrollbar-width: none;
    }
    .fs-tabs::-webkit-scrollbar { display: none; }
    .fs-tab { flex-shrink: 0; font-size: 12px; padding: 7px 10px; }
    .fs-search { width: 100%; }
    .fs-search input { width: 100%; }
}

@media (max-width: 480px) {
    .fs-logo-picture--wordmark { display: none; }
    .fs-header-telegram { display: none; }
    .fs-header-top { gap: 8px; }
}

/* 兼容旧类名 */
.fs-topbar { display: none; }
.fs-topbar-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.fs-lang-trigger {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2); color: var(--fs-text-main);
    cursor: pointer; font-size: 13px;
}
.fs-lang-trigger:hover { border-color: var(--fs-brand); }

/* ── Hero ── */
.fs-hero {
    position: relative;
    border-radius: 24px;
    padding: 24px 24px 32px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    text-align: center;
    overflow: hidden;
}
.fs-hero-visual {
    width: 100%;
    max-width: 1450px;
    aspect-ratio: 1450 / 630;
    height: auto;
    min-height: 160px;
    margin: 0 auto 22px;
    border-radius: 18px;
    background: url("../image/fs-api-promo-1450x630.png") center center / contain no-repeat;
    border: 1px solid rgba(0, 242, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}
.fs-hero-visual::after {
    display: none;
}
.fs-hero-content { position: relative; z-index: 1; }
.fs-hero h1 {
    font-size: clamp(24px, 4vw, 36px); font-weight: 800; margin: 0 0 16px;
    background: linear-gradient(to right, var(--fs-brand), var(--fs-brand-2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; letter-spacing: 1px;
}
.fs-hero p { color: var(--fs-text-dim); margin: 8px 0; font-size: 15px; line-height: 1.6; }

/* ── 客服面板 ── */
.fs-service-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px; margin-bottom: 24px;
}
.fs-service-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,242,255,0.15);
    border-radius: 12px; padding: 12px;
    text-align: center; text-decoration: none;
    transition: 0.3s;
    display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.fs-service-item:hover {
    background: rgba(0,242,255,0.1);
    transform: translateY(-3px);
    border-color: var(--fs-brand);
    box-shadow: 0 5px 15px var(--fs-glow);
}
.fs-service-label { font-size: 11px; color: var(--fs-text-dim); }
.fs-service-handle { font-size: 14px; font-weight: 700; color: var(--fs-brand); }
.fs-service-item.notice { border-color: var(--fs-orange); }
.fs-service-item.notice .fs-service-handle { color: var(--fs-orange); }

/* ── 导航栏 tabs + 搜索 ── */
.fs-nav-bar {
    display: flex; flex-wrap: wrap; align-items: center;
    justify-content: space-between; margin-bottom: 24px; gap: 15px;
    position: sticky; top: 10px; z-index: 100;
    padding: 12px 20px; border-radius: 16px;
    background: rgba(11,21,41,0.85);
    border: 1px solid rgba(0,242,255,0.15);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.fs-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.fs-tab {
    padding: 8px 14px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer; font-weight: 600; transition: 0.3s;
    background: transparent; color: var(--fs-text-dim); font-size: 13px;
}
.fs-tab.active {
    background: var(--fs-brand); color: #000;
    box-shadow: 0 0 15px var(--fs-glow); border-color: var(--fs-brand);
}
.fs-tab:hover:not(.active) { border-color: rgba(0,242,255,0.4); color: var(--fs-text-main); }
.fs-search input {
    padding: 10px 15px; border-radius: 10px; width: 240px; max-width: 100%;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2); color: #fff; outline: none; font-size: 13px;
}
.fs-search input:focus { border-color: var(--fs-brand); }
.fs-search input::placeholder { color: var(--fs-text-dim); }

/* ── 演示卡片网格 ── */
.fs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}
@media (max-width: 1400px) { .fs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .fs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .fs-grid { grid-template-columns: 1fr; } }

.fs-card {
    border-radius: 18px; overflow: hidden; transition: 0.35s ease;
    background: var(--fs-card-dark);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex; flex-direction: column; position: relative;
}
.fs-card:hover {
    transform: translateY(-8px);
    border-color: var(--fs-brand);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.fs-card.baow-scheme { border: 1px solid rgba(0,242,255,0.25); }
.fs-card.baow-scheme::after {
    content: attr(data-badge);
    position: absolute; top: 12px; left: 12px;
    background: var(--fs-brand); color: #000;
    font-size: 10px; font-weight: 800;
    padding: 3px 8px; border-radius: 5px; z-index: 2;
}
.fs-thumb { position: relative; overflow: hidden; background: #000; }
.fs-thumb.m  { aspect-ratio: 9/14; }
.fs-thumb.pc { aspect-ratio: 16/11; }
.fs-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: 0.5s; opacity: 0.9;
}
.fs-card:hover .fs-thumb img { opacity: 1; transform: scale(1.03); }
.fs-card-body { padding: 18px; flex-grow: 1; display: flex; flex-direction: column; }
.fs-card-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.fs-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 15px; }
.fs-tag {
    font-size: 10px; padding: 3px 8px; border-radius: 6px;
    background: rgba(255,255,255,0.05); color: var(--fs-text-dim);
}
.fs-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fs-btns-ref .fs-btn-main { grid-column: span 2; }
.fs-btn {
    padding: 9px; border-radius: 10px; font-size: 12px; font-weight: 600;
    text-align: center; text-decoration: none; transition: 0.2s;
    border: 1px solid rgba(255,255,255,0.08); color: var(--fs-text-main);
    display: flex; align-items: center; justify-content: center; gap: 4px;
    cursor: pointer; background: transparent;
}
.fs-btn-main {
    grid-column: span 2;
    background: linear-gradient(90deg, var(--fs-brand), var(--fs-brand-2));
    color: #fff; border: none;
}
.fs-btn-main:hover { opacity: 0.9; color: #fff; }
.fs-btn-ghost { background: rgba(255,255,255,0.03); }
.fs-btn-ghost:hover { background: rgba(0,242,255,0.1); border-color: var(--fs-brand); }
.fs-btn-disabled {
    opacity: 0.55;
    cursor: help;
    pointer-events: auto;
    background: rgba(255,255,255,0.02);
}
.fs-btn-disabled small { font-size: 10px; opacity: 0.85; font-weight: 400; display: block; margin-top: 2px; }
.fs-service-item.fs-service-pending { cursor: default; opacity: 0.7; }
.fs-service-item.fs-service-pending:hover {
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
}
.fs-service-item.fs-service-pending .fs-service-handle { color: var(--fs-text-dim); }
.fs-account-info {
    margin-top: 12px; padding: 10px; border-radius: 8px;
    background: rgba(0,242,255,0.05);
    border: 1px dashed rgba(0,242,255,0.3);
    font-size: 11px; color: var(--fs-brand); text-align: center;
}
.fs-account-info + .fs-account-info { margin-top: 8px; }
.fs-account-player {
    border-style: solid;
    color: var(--fs-orange);
    border-color: rgba(255,152,0,0.3);
    background: rgba(255,152,0,0.05);
}
.fs-copy-msg {
    position: absolute; top: 15px; right: 15px;
    background: var(--fs-brand); color: #000;
    padding: 4px 10px; border-radius: 6px;
    font-size: 11px; font-weight: 800; z-index: 10;
}

/* ── FSAPI 内容区 ── */
.fs-section {
    margin: 40px 0; padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}
.fs-section h2 {
    font-size: 22px; font-weight: 700; margin: 0 0 16px;
    background: linear-gradient(to right, var(--fs-brand), var(--fs-brand-2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fs-section p { color: var(--fs-text-dim); line-height: 1.7; margin-bottom: 12px; font-size: 14px; }

.fs-kw-grid {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}
.fs-kw-tag {
    font-size: 11px; padding: 5px 10px; border-radius: 20px;
    background: rgba(0,242,255,0.08);
    border: 1px solid rgba(0,242,255,0.15);
    color: var(--fs-text-dim);
}

.fs-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px; margin-top: 20px;
}
.fs-feature-card {
    padding: 20px; border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}
.fs-feature-card h3 { font-size: 15px; color: var(--fs-brand); margin: 0 0 8px; }
.fs-feature-card p { font-size: 13px; margin: 0; }

.fs-notice {
    border-color: rgba(255,152,0,0.3);
    background: rgba(255,152,0,0.05);
}
.fs-notice h2 { background: linear-gradient(to right, #ff9800, #ff5722); -webkit-background-clip: text; background-clip: text; }

/* ── 分类宣传内容区 ── */
#home, #demos, #notice, #fsapi, #sitemap, .fs-page-section {
    scroll-margin-top: 110px;
}
.fs-page-lead { font-size: 15px; margin-bottom: 20px; }
.fs-page-brand {
    text-align: center;
    margin-bottom: 16px;
}
.fs-page-brand--light {
    display: inline-block;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 16px;
}
.fs-page-brand--light img { max-width: 200px; }
.fs-page-brand img {
    max-width: 220px;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.fs-page-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 8px;
}
.fs-page-card {
    padding: 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.fs-page-card h3 {
    font-size: 15px;
    color: var(--fs-brand);
    margin: 0 0 8px;
}
.fs-page-card p { font-size: 13px; margin: 0; }
.fs-page-card-head { margin-bottom: 6px; }
.fs-page-date {
    font-size: 12px;
    color: var(--fs-text-dim);
    opacity: 0.85;
}
.fs-faq-list { margin-top: 12px; }
.fs-faq-item {
    border-radius: 12px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}
.fs-faq-item summary {
    padding: 14px 16px;
    cursor: pointer;
    font-weight: 600;
    color: var(--fs-text-main);
    list-style: none;
}
.fs-faq-item summary::-webkit-details-marker { display: none; }
.fs-faq-item summary::after {
    content: "+";
    float: right;
    color: var(--fs-brand);
    font-weight: 700;
}
.fs-faq-item[open] summary::after { content: "−"; }
.fs-faq-item p {
    padding: 0 16px 14px;
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}

/* ── 站点导航 ── */
.fs-sitemap-section {
    text-align: left;
}
.fs-sitemap-section h2 {
    margin-bottom: 10px;
}
.fs-sitemap-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}
.fs-sitemap-col {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(0, 242, 255, 0.12);
}
.fs-sitemap-col h3 {
    margin: 0 0 14px;
    color: var(--fs-text-main);
    font-size: 16px;
}
.fs-sitemap-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
    gap: 10px;
}
.fs-sitemap-links a,
.fs-sitemap-links button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 12px;
    border-radius: 10px;
    background: rgba(0, 242, 255, 0.06);
    border: 1px solid rgba(0, 242, 255, 0.14);
    color: var(--fs-text-main);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.2s;
    font-family: inherit;
    cursor: pointer;
}
.fs-sitemap-links a:hover,
.fs-sitemap-links button:hover {
    color: #fff;
    border-color: var(--fs-brand);
    background: rgba(0, 242, 255, 0.14);
    transform: translateY(-1px);
}

/* ── Footer ── */
.fs-footer-logo {
    display: block;
    margin: 0 auto 12px;
    opacity: 0.9;
}
.fs-footer {
    text-align: center; padding: 30px 20px;
    color: var(--fs-text-dim); font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 40px;
}
.fs-footer a { color: var(--fs-brand); text-decoration: none; }
.fs-footer a:hover { text-decoration: underline; }

.fs-scroll-top {
    position: fixed; bottom: 24px; right: 24px;
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--fs-brand), var(--fs-brand-2));
    color: #000; border: none; cursor: pointer;
    display: none; align-items: center; justify-content: center;
    font-size: 18px; z-index: 200;
    box-shadow: 0 4px 15px var(--fs-glow);
}
.fs-scroll-top.visible { display: flex; }

/* SEO 静态摘要（noscript） */
.seo-static-summary {
    padding: 20px; background: rgba(255,255,255,0.03);
    border-radius: 12px; margin-bottom: 20px;
}
.seo-static-summary a { color: var(--fs-brand); }

/* SEO 内容区：保持用户可见，避免隐藏文本被搜索引擎误判 */
.fs-seo-vault {
    margin: 28px 0;
    padding: 22px;
    border-radius: 18px;
    background: rgba(11, 21, 41, 0.62);
    border: 1px solid rgba(0, 242, 255, 0.12);
    color: var(--fs-text-dim);
    font-size: 13px;
    line-height: 1.8;
}
.fs-seo-vault h2,
.fs-seo-vault h3 {
    color: var(--fs-text-main);
    margin: 0 0 10px;
}
.fs-seo-vault h2 {
    font-size: 20px;
}
.fs-seo-vault h3 {
    font-size: 15px;
}
.fs-seo-vault section {
    margin-top: 16px;
}
.fs-seo-vault ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
}
.fs-seo-vault li,
.fs-seo-vault .fs-seo-keyword {
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fs-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: var(--fs-text-dim);
    font-size: 15px;
}
