/**
 * aurora · 极光影院 — 深空影院 + 极光渐变
 * 午夜蓝画布 + 青/紫/品红极光；玻璃拟态卡片、高对比可读，面向国内影视 SEO 内链密度
 * 令牌前缀 --au- / 类前缀 .au-；footer_rich 已在 TemplatePresenter SELF_FOOTER_THEMES 跳过
 */
:root {
    /* 深空画布 */
    --au-bg:      #070b14;
    --au-bg-2:    #0f1629;
    --au-bg-3:    #141c32;
    --au-bg-4:    #1a2340;
    /* 浅色文本（高对比） */
    --au-text:    #e8eef9;
    --au-text-2:  #b8c5dc;
    --au-text-3:  #7b8ba8;
    /* 极光青（CTA / 强调） */
    --au-cyan:    #06b6d4;
    --au-cyan-d:  #0891b2;
    --au-cyan-l:  #22d3ee;
    --au-cyan-t:  rgba(34, 211, 238, .12);
    --au-cyan-t2: rgba(34, 211, 238, .32);
    /* 极光紫（链接 / 次级） */
    --au-blue:    #8b5cf6;
    --au-blue-l:  #a78bfa;
    /* 品红 accent（热播/更新） */
    --au-violet:  #e879f9;
    /* 线 */
    --au-line:    rgba(148, 163, 184, .08);
    --au-line-2:  rgba(148, 163, 184, .18);
    --au-line-3:  rgba(148, 163, 184, .05);
    /* 投影 */
    --au-shadow:    0 16px 48px rgba(0, 0, 0, .45);
    --au-shadow-sm: 0 8px 24px rgba(0, 0, 0, .35);
    --au-glow-cyan: 0 0 28px rgba(34, 211, 238, .38);
    /* 半径：圆润清新 */
    --au-radius:    10px;
    --au-radius-lg: 14px;
    --au-radius-sm: 6px;
    /* 字体 */
    --au-font:    -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", system-ui, sans-serif;
    --au-contain: 1240px;
}

/* ============ base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    background:
        radial-gradient(ellipse 90% 55% at 8% -8%, rgba(34, 211, 238, .16), transparent 58%),
        radial-gradient(ellipse 70% 45% at 92% 4%, rgba(167, 139, 250, .14), transparent 52%),
        radial-gradient(ellipse 55% 40% at 50% 100%, rgba(232, 121, 249, .08), transparent 48%),
        var(--au-bg);
    color: var(--au-text);
    font-family: var(--au-font);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--au-blue-l); text-decoration: none; transition: color .15s; }
a:hover { color: var(--au-cyan-l); }
h1, h2, h3, h4 { margin: 0; line-height: 1.3; font-weight: 800; }
p { margin: 0 0 .6em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--au-cyan); outline-offset: 2px; }

.au-visually-hidden {
    position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.au-container { width: 100%; max-width: var(--au-contain); margin: 0 auto; padding: 0 20px; }

/* ============ 顶栏 header ============ */
.au-header {
    position: sticky; top: 0; z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .2s, border-color .2s;
}
.au-header.is-scrolled {
    background: rgba(7, 11, 20, .88);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    border-bottom-color: var(--au-line-2);
    box-shadow: var(--au-shadow-sm);
}
.au-header-inner { max-width: var(--au-contain); margin: 0 auto; display: flex; align-items: center; gap: 18px; padding: 0 20px; height: 64px; }
.au-logo { display: inline-flex; align-items: center; gap: 10px; color: var(--au-text); flex-shrink: 0; }
.au-logo:hover { color: var(--au-text); }
.au-logo-mark {
    display: inline-grid; place-items: center; width: 40px; height: 40px;
    color: #fff;
    background: linear-gradient(135deg, var(--au-cyan-l), var(--au-blue-l), var(--au-violet));
    border: 1px solid var(--au-cyan-t2); border-radius: var(--au-radius-sm);
    box-shadow: var(--au-glow-cyan);
}
.au-logo-text {
    font-weight: 800; font-size: 21px; letter-spacing: .04em;
    background: linear-gradient(120deg, var(--au-cyan-l), var(--au-blue-l));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* 导航 */
.au-nav { display: flex; align-items: center; gap: 2px; flex: 1; min-width: 0; }
.au-nav-link {
    position: relative; display: inline-flex; align-items: center; gap: 4px;
    padding: 8px 13px; color: var(--au-text-2);
    font-weight: 600; font-size: 15px; white-space: nowrap;
    background: none; border: 0;
    transition: color .15s;
}
.au-nav-link::after {
    content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px; height: 2px;
    background: var(--au-cyan); border-radius: 2px;
    transform: scaleX(0); transform-origin: center; transition: transform .18s;
}
.au-nav-link:hover { color: var(--au-text); }
.au-nav-link:hover::after, .au-nav-link.is-active::after { transform: scaleX(1); }
.au-nav-link.is-active { color: var(--au-cyan-l); }
.au-nav-group-arrow { font-size: 10px; opacity: .6; }
.au-nav-group { position: relative; }
.au-nav-group-toggle { cursor: pointer; }
.au-nav-submenu {
    position: absolute; top: calc(100% + 8px); left: 0;
    min-width: 172px; padding: 6px;
    background: var(--au-bg-3); border: 1px solid var(--au-line-2);
    border-radius: var(--au-radius); box-shadow: var(--au-shadow);
    opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .15s;
}
.au-nav-group:hover .au-nav-submenu, .au-nav-group:focus-within .au-nav-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.au-nav-subitem { display: block; padding: 9px 12px; color: var(--au-text-2); font-weight: 600; border-radius: var(--au-radius-sm); }
.au-nav-subitem:hover { background: var(--au-cyan-t); color: var(--au-text); }
.au-nav-subitem.is-active { color: var(--au-cyan-l); font-weight: 800; }

/* 搜索框 */
.au-search { display: flex; align-items: center; flex-shrink: 0; border: 1px solid var(--au-line-2); border-radius: var(--au-radius); background: var(--au-bg-2); overflow: hidden; transition: border-color .15s; }
.au-search:focus-within { border-color: var(--au-cyan-t2); box-shadow: 0 0 0 3px var(--au-cyan-t); }
.au-search--mobile { display: none; }
.au-search-input { width: 160px; padding: 8px 10px; border: 0; background: transparent; color: var(--au-text); font-size: 14px; font-family: inherit; }
.au-search-input::placeholder { color: var(--au-text-3); }
.au-search-input:focus { outline: none; }
.au-search-btn { display: grid; place-items: center; width: 38px; height: 36px; border: 0; background: var(--au-cyan); color: #fff; }
.au-search-btn:hover { background: var(--au-cyan-l); }

.au-menu-toggle { display: none; flex-direction: column; gap: 5px; width: 38px; height: 38px; align-items: center; justify-content: center; background: none; border: 1px solid var(--au-line-2); border-radius: var(--au-radius-sm); }
.au-menu-toggle span { width: 18px; height: 2px; background: var(--au-text); transition: transform .2s, opacity .2s; }
.au-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.au-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.au-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.au-scrim { position: fixed; inset: 0; z-index: 90; background: rgba(4, 8, 18, .62); backdrop-filter: blur(3px); }

.au-main { display: block; min-height: 60vh; }

/* ============ 按钮 ============ */
.au-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 26px; font-weight: 700; font-size: 15px;
    border: 1px solid transparent; border-radius: var(--au-radius);
    transition: transform .12s, background .15s, color .15s, box-shadow .15s;
}
.au-btn svg { width: 16px; height: 16px; }
.au-btn--primary { background: linear-gradient(135deg, var(--au-cyan-l), var(--au-blue)); color: #fff; box-shadow: 0 4px 18px rgba(34,211,238,.28); }
.au-btn--primary:hover { background: linear-gradient(135deg, #67e8f9, var(--au-cyan-l)); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(34,211,238,.38); }
.au-btn--ghost { background: rgba(15, 22, 41, .72); color: var(--au-text); border-color: var(--au-line-2); }
.au-btn--ghost:hover { background: var(--au-cyan-t); border-color: var(--au-cyan-t2); transform: translateY(-2px); }

/* ============ Hero ============ */
.au-hero { position: relative; min-height: 500px; display: flex; align-items: flex-end; overflow: hidden; border-bottom: 1px solid var(--au-line-2); }
.au-hero-bg, .au-detail-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 18%; }
.au-hero-aurora {
    position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .58;
    background:
        linear-gradient(105deg, transparent 28%, rgba(34,211,238,.24) 40%, rgba(167,139,250,.2) 52%, rgba(232,121,249,.16) 64%, transparent 76%);
    animation: auAuroraShift 14s ease-in-out infinite alternate;
}
@keyframes auAuroraShift {
    0% { transform: translateX(-3%) skewY(-1.5deg); opacity: .42; }
    100% { transform: translateX(3%) skewY(1.5deg); opacity: .65; }
}
.au-hero-veil {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(90deg, rgba(7,11,20,.96) 0%, rgba(7,11,20,.88) 36%, rgba(7,11,20,.52) 70%, rgba(7,11,20,.12) 100%),
        linear-gradient(0deg, rgba(7,11,20,1) 0%, rgba(7,11,20,0) 54%);
}
.au-hero-inner { position: relative; z-index: 2; max-width: var(--au-contain); margin: 0 auto; width: 100%; padding: 56px 20px 52px; }
.au-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 12px; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--au-cyan-l); }
.au-eyebrow-stamp { display: inline-grid; place-items: center; width: 24px; height: 24px; background: var(--au-cyan); color: var(--au-bg); font-weight: 800; border-radius: var(--au-radius-sm); font-size: 13px; }
.au-hero-title { font-weight: 800; font-size: clamp(32px, 5.5vw, 58px); line-height: 1.1; color: var(--au-text); max-width: 680px; }
.au-hero-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 14px; }
.au-pill { display: inline-flex; align-items: center; padding: 4px 12px; font-size: 13px; font-weight: 600; color: var(--au-text-2); background: var(--au-bg-2); border: 1px solid var(--au-line-2); border-radius: var(--au-radius-sm); }
.au-pill--accent { background: var(--au-violet); color: #fff; border-color: transparent; }
.au-pill--cyan { background: var(--au-cyan); color: #fff; border-color: transparent; font-weight: 800; }
.au-hero-desc { max-width: 580px; color: var(--au-text-2); font-size: 15px; margin: 0 0 22px; }
.au-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ 章节 ============ */
.au-section { padding: 38px 0 10px; }
.au-section-head {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
    margin-bottom: 22px; padding-bottom: 14px;
    border-bottom: 1px solid var(--au-line);
    position: relative;
}
.au-section-head::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 64px; height: 2px; background: var(--au-cyan); border-radius: 2px; box-shadow: var(--au-glow-cyan); }
.au-section-head-text { display: flex; flex-direction: column; gap: 2px; }
.au-section-title { font-weight: 800; font-size: clamp(20px, 3vw, 27px); color: var(--au-text); letter-spacing: .02em; }
.au-section-more { flex-shrink: 0; color: var(--au-text-2); font-weight: 600; font-size: 14px; padding: 6px 14px; border: 1px solid var(--au-line-2); border-radius: var(--au-radius-sm); transition: all .15s; }
.au-section-more:hover { background: var(--au-cyan-t); color: var(--au-cyan-l); border-color: var(--au-cyan-t2); }

/* 横滚行 */
.au-row { margin: 0 -20px; padding: 0 20px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.au-row::-webkit-scrollbar { display: none; }
.au-row-track { display: grid; grid-auto-flow: column; grid-auto-columns: 170px; gap: 16px; padding-bottom: 14px; }

/* ============ 卡片 ============ */
.au-card { position: relative; }
.au-card-link { display: block; color: var(--au-text); }
.au-card-poster {
    position: relative; aspect-ratio: 2 / 3; overflow: hidden;
    border-radius: var(--au-radius);
    background: var(--au-bg-3);
    border: 1px solid var(--au-line);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.au-card-poster img { width: 100%; height: 100%; object-fit: cover; }
.au-card-glow { position: absolute; inset: 0; opacity: 0; background: linear-gradient(180deg, transparent 40%, rgba(34,197,94,.18)); transition: opacity .2s; }
.au-card-link:hover .au-card-poster { transform: translateY(-4px); box-shadow: var(--au-shadow), var(--au-glow-cyan); border-color: var(--au-cyan-t2); }
.au-card-link:hover .au-card-glow { opacity: 1; }
.au-card-link:hover { color: var(--au-text); }
.au-card-badge {
    position: absolute; top: 0; left: 0; z-index: 2;
    padding: 3px 9px; font-size: 12px; font-weight: 700; color: #fff;
    background: var(--au-cyan);
    border-radius: var(--au-radius-sm) 0 var(--au-radius-sm) 0;
}
.au-card-score {
    position: absolute; top: 8px; right: 8px; z-index: 2;
    display: inline-flex; align-items: center; gap: 2px;
    padding: 3px 8px; font-size: 12px; font-weight: 800; color: #fff;
    background: var(--au-violet); border-radius: var(--au-radius-sm);
}
.au-card-play {
    position: absolute; inset: 0; display: grid; place-items: center; z-index: 1;
    color: #fff; opacity: 0; transition: opacity .18s;
    background: radial-gradient(circle at center, rgba(34,197,94,.35), rgba(20,83,45,.55));
}
.au-card-link:hover .au-card-play { opacity: 1; }
.au-card-body { padding: 9px 2px 0; }
.au-card-title {
    font-size: 14.5px; font-weight: 600; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.au-card-link:hover .au-card-title { color: var(--au-cyan-l); }
.au-card-meta { display: flex; gap: 8px; margin-top: 3px; font-size: 12px; color: var(--au-text-3); }

/* ============ 网格 ============ */
.au-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 22px 16px; }
.au-grid--rel { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 18px 14px; }

/* 「查看全部分类」CTA */
.au-allcat { padding-bottom: 14px; }
.au-allcat-cta {
    display: flex; align-items: center; gap: 16px;
    padding: 22px 26px;
    border-radius: var(--au-radius-lg);
    background: linear-gradient(135deg, var(--au-cyan-l), var(--au-cyan));
    color: #fff;
    box-shadow: 0 8px 22px rgba(34,211,238,.22);
    transition: transform .14s, box-shadow .14s;
}
.au-allcat-cta:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 14px 30px rgba(34,211,238,.32); }
.au-allcat-stamp { display: inline-grid; place-items: center; flex-shrink: 0; width: 48px; height: 48px; background: rgba(255,255,255,.22); color: #fff; font-weight: 800; font-size: 22px; border-radius: var(--au-radius-sm); border: 1px solid rgba(255,255,255,.35); }
.au-allcat-text { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.au-allcat-text strong { font-weight: 800; font-size: 18px; }
.au-allcat-text em { font-style: normal; font-size: 13px; opacity: .82; }
.au-allcat-arrow { font-size: 28px; font-weight: 600; line-height: 1; }

/* ============ 列表页 ============ */
.au-list-pad { padding: 30px 0 14px; }
.au-list-head { margin-bottom: 18px; }
.au-list-title { font-weight: 800; font-size: clamp(24px, 4vw, 34px); color: var(--au-text); }
.au-list-sub { margin: 8px 0 0; color: var(--au-text-2); font-size: 14px; }
.au-list-sub strong { color: var(--au-cyan-l); }

.au-filter { border: 1px solid var(--au-line); border-radius: var(--au-radius); background: var(--au-bg-2); padding: 6px 14px; margin-bottom: 22px; }
.au-filter-row { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding: 9px 0; border-bottom: 1px solid var(--au-line); }
.au-filter-row:last-child { border-bottom: 0; }
.au-filter-label { flex-shrink: 0; width: 44px; font-weight: 700; color: var(--au-text-3); font-size: 14px; }
.au-filter-item {
    display: inline-flex; align-items: center; padding: 5px 13px; font-size: 13.5px; font-weight: 600;
    color: var(--au-text-2); background: var(--au-bg-3); border: 1px solid var(--au-line); border-radius: var(--au-radius-sm);
    transition: all .12s;
}
.au-filter-item:hover { border-color: var(--au-cyan-t2); color: var(--au-text); }
.au-filter-item.is-active { background: var(--au-cyan); color: #fff; border-color: transparent; }

/* 分页 */
.au-pagination { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 32px; padding: 12px 0; }
.au-page-btn, .au-page-num {
    min-width: 40px; height: 40px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 14px; color: var(--au-text-2);
    background: var(--au-bg-3); border: 1px solid var(--au-line-2); border-radius: var(--au-radius-sm);
    transition: background .12s, color .12s, transform .1s, border-color .12s;
}
.au-page-btn:hover, .au-page-num:hover { background: var(--au-bg-4); color: var(--au-text); border-color: var(--au-cyan-t2); transform: translateY(-2px); }
.au-page-num.is-active { background: var(--au-cyan); color: #fff; border-color: transparent; cursor: default; }

.au-empty { text-align: center; padding: 80px 20px; color: var(--au-text-2); }
.au-empty p { margin-bottom: 16px; font-size: 16px; }

/* ============ 详情页 ============ */
.au-detail-hero { position: relative; min-height: 400px; display: flex; align-items: flex-end; overflow: hidden; border-bottom: 1px solid var(--au-line-2); }
.au-detail-hero-veil {
    position: absolute; inset: 0;
    background:
        linear-gradient(0deg, rgba(7,11,20,1) 0%, rgba(7,11,20,.86) 42%, rgba(7,11,20,.48) 76%, rgba(7,11,20,.1) 100%),
        linear-gradient(90deg, rgba(7,11,20,.78) 0%, rgba(7,11,20,0) 62%);
}
.au-detail-hero-inner { position: relative; z-index: 2; max-width: var(--au-contain); margin: 0 auto; width: 100%; padding: 64px 20px 38px; }
.au-detail-title { font-weight: 800; font-size: clamp(26px, 4.5vw, 44px); color: var(--au-text); }
.au-detail-sub { margin: 6px 0 14px; color: var(--au-cyan-l); font-size: 16px; }
.au-detail-hook { max-width: 720px; color: var(--au-text-2); margin: 14px 0 20px; }

.au-detail-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 30px; max-width: var(--au-contain); margin: 0 auto; padding: 28px 20px 24px; }
.au-detail-main { min-width: 0; }
.au-detail-aside { display: flex; flex-direction: column; gap: 18px; }

.au-block { margin-bottom: 30px; }
.au-panel { border: 1px solid var(--au-line); border-radius: var(--au-radius); background: var(--au-bg-2); padding: 0 22px 22px; }
.au-block-title {
    display: inline-block; position: relative;
    font-size: 18px; margin-bottom: 16px; color: var(--au-text); font-weight: 800;
    padding-bottom: 4px;
}
.au-block-title::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--au-cyan); border-radius: 3px; box-shadow: var(--au-glow-cyan); }
.au-synopsis { color: var(--au-text-2); line-height: 1.9; font-size: 15px; }
.au-synopsis--short { color: var(--au-text-2); }
.au-more-link { color: var(--au-cyan-l); font-weight: 700; }

/* 侧栏 */
.au-aside-poster { border-radius: var(--au-radius); overflow: hidden; box-shadow: var(--au-shadow), var(--au-glow-cyan); background: var(--au-bg-3); border: 1px solid var(--au-cyan-t2); }
.au-aside-poster img { width: 100%; aspect-ratio: 2/3; object-fit: cover; }
.au-aside-play { width: 100%; }
.au-info-card { border: 1px solid var(--au-line); border-radius: var(--au-radius); background: var(--au-bg-2); padding: 18px 20px; }
.au-info-dl { margin: 0; display: grid; gap: 10px; }
.au-info-dl > div { display: grid; grid-template-columns: 52px 1fr; gap: 10px; font-size: 14px; }
.au-info-dl dt { color: var(--au-text-3); font-weight: 600; }
.au-info-dl dd { margin: 0; color: var(--au-text); }
.au-info-dl dd a { color: var(--au-blue-l); }
.au-info-tags { display: flex !important; flex-wrap: wrap; gap: 6px; grid-template-columns: none !important; }
.au-info-tags a { display: inline-block; padding: 3px 10px; font-size: 12.5px; color: var(--au-text-2); background: var(--au-bg-3); border: 1px solid var(--au-line); border-radius: var(--au-radius-sm); }
.au-info-tags a:hover { background: var(--au-cyan); color: var(--au-bg); border-color: transparent; }

/* ============ 播放器 / 选集 ============ */
.au-play-container { padding-top: 26px; }
.au-play-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 28px; align-items: start; }
.au-play-main { min-width: 0; }
.au-play-aside { display: flex; flex-direction: column; gap: 18px; position: sticky; top: calc(var(--au-header-h, 64px) + 16px); }
.au-side-rank {
    padding: 16px;
    border: 1px solid var(--au-line-2);
    border-radius: var(--au-radius);
    background: var(--au-bg-2);
    box-shadow: var(--au-shadow-sm);
}
.au-side-rank .xc-rank-side-title { color: var(--au-text); font-size: 15px; }
.au-side-rank .xc-rank-side-more { color: var(--au-cyan-l); opacity: 1; }
.au-side-rank .xc-rank-side-more:hover { color: var(--au-cyan); }
.au-side-rank .xc-rank-side-item {
    border-color: var(--au-line);
    background: var(--au-bg-3);
}
.au-side-rank .xc-rank-side-item.is-top {
    border-color: var(--au-cyan-t2);
    background: linear-gradient(90deg, var(--au-cyan-t), var(--au-bg-3) 55%);
}
.au-side-rank .xc-rank-side-num {
    color: var(--au-text-2);
    background: var(--au-bg-4);
    border: 1px solid var(--au-line-2);
}
.au-side-rank .xc-rank-side-item.is-top .xc-rank-side-num {
    color: #fff;
    background: var(--au-cyan);
    border-color: transparent;
    box-shadow: var(--au-glow-cyan);
}
.au-side-rank .xc-rank-side-name { color: var(--au-text); }
.au-side-rank .xc-rank-side-name:hover { color: var(--au-cyan-l); }
.au-side-rank .xc-rank-side-meta { color: var(--au-text-3); opacity: 1; }
.au-play-back { display: inline-flex; align-items: center; gap: 6px; color: var(--au-text-2); font-weight: 600; margin-bottom: 12px; }
.au-play-back:hover { color: var(--au-cyan-l); }
.au-play-title { font-weight: 800; font-size: clamp(22px, 4vw, 32px); }
.au-play-sub { margin: 6px 0 18px; color: var(--au-text-2); font-size: 14px; }
.au-player-wrap { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; border: 1px solid var(--au-cyan-t2); border-radius: var(--au-radius); overflow: hidden; box-shadow: var(--au-shadow); }
.au-player-wrap--page { margin-bottom: 18px; }
.au-play-empty { padding: 50px 20px; text-align: center; color: var(--au-text-2); border: 1px dashed var(--au-line-2); border-radius: var(--au-radius); }
.au-play-empty a { color: var(--au-cyan-l); font-weight: 700; }

.au-nextbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 14px 0 24px; padding: 14px 18px; background: var(--au-bg-2); border: 1px solid var(--au-cyan-t2); border-radius: var(--au-radius); }
.au-nextbar-info { font-size: 14px; color: var(--au-text-2); }
.au-nextbar-info strong { color: var(--au-cyan-l); }

.au-ep-groups { margin-top: 20px; display: grid; gap: 16px; }
.au-ep-group-title { font-size: 15px; font-weight: 700; color: var(--au-text); margin-bottom: 10px; padding-left: 11px; border-left: 3px solid var(--au-cyan); }
.au-ep-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; }
.au-ep {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 42px; padding: 6px 8px; font-size: 13.5px; font-weight: 600;
    color: var(--au-text-2); background: var(--au-bg-3); border: 1px solid var(--au-line-2); border-radius: var(--au-radius-sm);
    transition: background .12s, color .12s, transform .1s, border-color .12s;
}
.au-ep:hover { background: var(--au-bg-4); color: var(--au-text); border-color: var(--au-cyan-t2); transform: translateY(-2px); }
.au-ep.is-active { background: var(--au-cyan); color: #fff; border-color: transparent; cursor: default; }

/* ============ 人物页 ============ */
.au-person-head { background: linear-gradient(180deg, var(--au-bg-4), var(--au-bg)); border-bottom: 1px solid var(--au-line-2); padding: 32px 0 28px; }
.au-person-head .au-container { display: flex; flex-direction: column; gap: 6px; }
.au-person-name { font-weight: 800; font-size: clamp(26px, 4vw, 38px); }
.au-person-sub { color: var(--au-text-2); font-size: 14px; }
.au-person-sub strong { color: var(--au-cyan-l); }
.au-person-body { padding: 28px 20px 24px; }
.au-media-list { display: grid; gap: 18px; }
.au-media { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 16px; border: 1px solid var(--au-line); border-radius: var(--au-radius); background: var(--au-bg-2); transition: border-color .15s, transform .12s; }
.au-media:hover { border-color: var(--au-cyan-t2); transform: translateY(-2px); }
.au-media-poster { position: relative; display: block; border-radius: var(--au-radius-sm); overflow: hidden; aspect-ratio: 2/3; }
.au-media-poster img { width: 100%; height: 100%; object-fit: cover; }
.au-media-badge { position: absolute; top: 0; left: 0; padding: 2px 8px; font-size: 11px; font-weight: 700; color: var(--au-bg); background: var(--au-cyan); border-radius: var(--au-radius-sm) 0 var(--au-radius-sm) 0; }
.au-media-body h3 { font-size: 17px; margin-bottom: 6px; }
.au-media-body h3 a { color: var(--au-text); }
.au-media-body h3 a:hover { color: var(--au-cyan-l); }
.au-media-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 13px; color: var(--au-text-3); margin-bottom: 8px; }
.au-media-score { color: var(--au-violet); font-weight: 800; }
.au-media-blurb { font-size: 13.5px; color: var(--au-text-2); line-height: 1.7; margin: 0 0 8px; }
.au-media-link { font-size: 13.5px; font-weight: 700; color: var(--au-cyan-l); }

/* ============ 排行榜 ============ */
.au-rank-list { display: grid; gap: 14px; }
.au-rank-item {
    display: grid; grid-template-columns: 62px 92px minmax(0, 1fr); gap: 16px; align-items: center;
    padding: 14px;
    border: 1px solid var(--au-line); border-radius: var(--au-radius);
    background: var(--au-bg-2);
    transition: border-color .15s, transform .12s;
}
.au-rank-item:hover { border-color: var(--au-cyan-t2); transform: translateY(-2px); }
.au-rank-item.is-top { background: linear-gradient(90deg, var(--au-cyan-t), var(--au-bg-2) 44%); border-color: var(--au-cyan-t2); }
.au-rank-num {
    display: inline-grid; place-items: center;
    width: 50px; height: 50px;
    color: var(--au-text-2); background: var(--au-bg-3);
    border: 1px solid var(--au-line-2); border-radius: var(--au-radius-sm);
    font-size: 24px; font-weight: 800; line-height: 1;
}
.au-rank-item.is-top .au-rank-num { background: var(--au-cyan); color: #fff; border-color: transparent; box-shadow: var(--au-glow-cyan); }
.au-rank-poster { display: block; width: 92px; aspect-ratio: 2 / 3; overflow: hidden; border-radius: var(--au-radius-sm); background: var(--au-bg-3); }
.au-rank-poster img { width: 100%; height: 100%; object-fit: cover; }
.au-rank-body { min-width: 0; }
.au-rank-body h2 { margin-bottom: 6px; font-size: 18px; }
.au-rank-body h2 a { color: var(--au-text); }
.au-rank-body h2 a:hover { color: var(--au-cyan-l); }

/* ============ 人物索引 ============ */
.au-person-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; }
.au-person-card {
    min-width: 0;
    border: 1px solid var(--au-line); border-radius: var(--au-radius);
    background: var(--au-bg-2);
    transition: transform .12s, border-color .12s, box-shadow .12s;
}
.au-person-card:hover { transform: translateY(-3px); border-color: var(--au-cyan-t2); box-shadow: var(--au-shadow-sm); }
.au-person-card-link { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 10px 12px; align-items: center; padding: 14px; color: var(--au-text); }
.au-person-card-link:hover { color: var(--au-text); }
.au-person-avatar {
    display: inline-grid; place-items: center; grid-row: span 2;
    width: 46px; height: 46px;
    color: #fff; background: linear-gradient(135deg, var(--au-cyan-l), var(--au-cyan));
    border-radius: var(--au-radius-sm);
    font-size: 22px; font-weight: 800;
}
.au-person-card-name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 700; font-size: 15px; }
.au-person-card-count { color: var(--au-text-3); font-size: 12.5px; font-weight: 600; }

/* ============ 页脚 ============ */
.au-footer { background: var(--au-bg-2); color: var(--au-text-2); border-top: 1px solid var(--au-line-2); margin-top: 48px; }
.au-footer-grid { max-width: var(--au-contain); margin: 0 auto; padding: 42px 20px 22px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.au-foot-col h3 { font-size: 14px; font-weight: 800; color: var(--au-cyan-l); margin-bottom: 12px; letter-spacing: .06em; text-transform: uppercase; }
.au-foot-links { display: grid; gap: 9px; }
.au-foot-links a { color: var(--au-text-2); font-size: 13.5px; }
.au-foot-links a:hover { color: var(--au-cyan-l); }
.au-foot-brand .au-logo { color: var(--au-text); }
.au-foot-brand .au-logo-mark { color: var(--au-cyan); border-color: var(--au-cyan-t2); }
.au-foot-brand .au-logo-text { color: var(--au-cyan-l); }
.au-foot-desc { margin-top: 14px; color: var(--au-text-3); font-size: 13px; line-height: 1.7; }
.au-foot-link-row { padding-top: 0; }
.au-friend { display: flex; flex-wrap: wrap; gap: 8px; }
.au-friend a { display: inline-block; padding: 4px 11px; font-size: 12.5px; color: var(--au-text-2); border: 1px solid var(--au-line-2); border-radius: var(--au-radius-sm); }
.au-friend a:hover { background: var(--au-cyan-t); color: var(--au-cyan-l); border-color: var(--au-cyan-t2); }
.au-foot-social-row { max-width: var(--au-contain); margin: 0 auto; padding: 8px 20px 26px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--au-line); }
.au-foot-social-label { color: var(--au-text-3); font-size: 13px; font-weight: 600; }
.au-foot-social { display: flex; gap: 10px; }
.au-soc-btn { display: inline-grid; place-items: center; width: 36px; height: 36px; background: var(--soc, var(--au-cyan)); color: #fff; font-weight: 800; font-size: 15px; border-radius: var(--au-radius-sm); border: 1px solid rgba(255,255,255,.12); }
.au-soc-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.4); }
.au-footer-bottom { max-width: var(--au-contain); margin: 0 auto; padding: 18px 20px 32px; border-top: 1px solid var(--au-line); }
.au-footer-bottom p { margin: 0 0 6px; font-size: 12.5px; color: var(--au-text-3); }
.au-footer-bottom a { color: var(--au-text-2); }
.au-footer-bottom a:hover { color: var(--au-cyan-l); }
.au-sep { margin: 0 6px; opacity: .5; }
.au-disclaim { line-height: 1.7 !important; }
.au-foot-custom { margin-top: 8px; }

/* ============ _shared 局部重染（赛博青蓝调，不碰核心） ============ */
body .xc-breadcrumb, body .xc-breadcrumb a { color: var(--au-text-2) !important; font-size: 13px; }
body .xc-breadcrumb a:hover { color: var(--au-cyan-l) !important; }
body .xc-breadcrumb-sep { color: var(--au-text-3) !important; }
body .xc-meta-bar { display: flex !important; flex-wrap: wrap !important; gap: 8px !important; margin: 4px 0 6px !important; }
body .xc-meta-badge,
body .xc-meta-tag {
    display: inline-flex !important; align-items: center !important; padding: 3px 10px !important;
    font-size: 12.5px !important; font-weight: 700 !important; color: var(--au-text-2) !important;
    background: var(--au-bg-3) !important; border: 1px solid var(--au-line-2) !important; border-radius: var(--au-radius-sm) !important;
}
body .xc-meta-badge--score { background: var(--au-cyan) !important; color: #fff !important; border-color: transparent !important; font-weight: 800 !important; }
body .xc-meta-badge--update { background: var(--au-violet) !important; color: #fff !important; border-color: transparent !important; }
body .xc-meta-badge--info { background: var(--au-bg-4) !important; color: var(--au-blue-l) !important; }
body .xc-meta-links { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--au-line); color: var(--au-text-2); }
body .xc-meta-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
body .xc-meta-label { color: var(--au-text-3); font-weight: 700; }
body .xc-meta-value a {
    display: inline-block; margin: 0 6px 6px 0; padding: 3px 10px; font-size: 13px;
    color: var(--au-blue-l); border: 1px solid var(--au-line-2); border-radius: var(--au-radius-sm); background: var(--au-bg-3);
}
body .xc-meta-value a:hover { background: var(--au-cyan); color: #fff; border-color: transparent; }
body .xc-related-strip-title, body .xc-detail-nav-actions a { color: var(--au-text); }

body .xc-fav-btn {
    border: 1px solid var(--au-line-2) !important; border-radius: var(--au-radius-sm) !important;
    background: var(--au-bg-3) !important; color: var(--au-text) !important;
    font-weight: 700 !important;
}
body .xc-fav-btn:hover,
body .xc-fav-btn.is-active { background: var(--au-cyan) !important; color: #fff !important; border-color: transparent !important; }
body .xc-fav-btn.is-active .xc-fav-icon { fill: #fff !important; stroke: #fff !important; }

body .xc-share-sidebar {
    left: 10px !important; padding: 8px !important; gap: 6px !important;
    background: var(--au-bg-2) !important; border: 1px solid var(--au-line-2) !important;
    border-radius: var(--au-radius) !important; box-shadow: var(--au-shadow-sm) !important;
}
body .xc-share-btn,
body .xc-share-mobile-icon {
    border: 1px solid var(--au-line-2) !important; border-radius: var(--au-radius-sm) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.4) !important;
}
body .xc-share-btn:hover { transform: translateY(-2px) !important; box-shadow: 0 6px 14px rgba(34,211,238,.28) !important; }
body .xc-share-mobile-bar { background: var(--au-bg-2) !important; border-top: 1px solid var(--au-line-2) !important; }
body .xc-share-mobile-title,
body .xc-share-mobile-label { color: var(--au-text) !important; font-weight: 700; }

.xc-up-fab { box-shadow: 0 4px 16px rgba(0,0,0,.5) !important; }

/* ============ 响应式 ============ */
@media (max-width: 1024px) {
    .au-detail-grid { grid-template-columns: minmax(0,1fr) 280px; gap: 22px; }
    .au-play-grid { grid-template-columns: minmax(0,1fr) 280px; gap: 22px; }
    .au-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .au-foot-col:nth-child(4) { display: none; }
}
@media (max-width: 860px) {
    .au-nav-link--app { margin: 8px 0 4px !important; justify-content: center; width: 100%; }
    .au-nav, .au-search--desktop { display: none; }
    .au-menu-toggle { display: flex; }
    .au-nav {
        position: fixed; top: 64px; left: 0; bottom: 0; width: 80%; max-width: 320px;
        flex-direction: column; align-items: stretch; gap: 0;
        background: var(--au-bg-2); border-right: 1px solid var(--au-line-2);
        padding: 12px; overflow-y: auto; z-index: 95;
        transform: translateX(-105%); transition: transform .22s;
    }
    .au-nav.is-open { display: flex; transform: translateX(0); }
    .au-nav-link { padding: 13px 8px; border-bottom: 1px solid var(--au-line); }
    .au-nav-link::after { display: none; }
    .au-nav-group { width: 100%; }
    .au-nav-submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 12px; background: transparent; }
    .au-nav .au-search--mobile { margin: 12px 0 4px; display: flex; width: 100%; }
    .au-search-input { flex: 1; width: auto; }
    .au-hero { min-height: 400px; }
    .au-detail-grid { grid-template-columns: 1fr; }
    .au-play-grid { grid-template-columns: 1fr; }
    .au-play-aside { position: static; }
    .au-detail-aside { display: grid; grid-template-columns: 160px 1fr; gap: 18px; align-items: start; }
    .au-aside-poster { max-width: 160px; }
    .au-footer-grid { grid-template-columns: 1fr 1fr; }
    .au-foot-col:nth-child(4) { display: block; }
    .au-rank-item { grid-template-columns: 44px 76px minmax(0, 1fr); gap: 12px; padding: 12px; }
    .au-rank-num { width: 38px; height: 38px; font-size: 18px; }
    .au-rank-poster { width: 76px; }
    .au-rank-body h2 { font-size: 15.5px; }
    .au-person-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
}
@media (max-width: 520px) {
    body { font-size: 14.5px; }
    .au-header-inner { height: 58px; gap: 10px; padding: 0 14px; }
    .au-logo-text { font-size: 18px; }
    .au-hero-inner { padding: 40px 16px 36px; }
    .au-hero-title { font-size: 27px; }
    .au-container { padding: 0 14px; }
    .au-row { margin: 0 -14px; padding: 0 14px; }
    .au-row-track { grid-auto-columns: 132px; gap: 12px; }
    .au-grid { grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)); gap: 16px 10px; }
    .au-card-title { font-size: 13px; }
    .au-detail-aside { grid-template-columns: 1fr; }
    .au-aside-poster { max-width: 180px; margin: 0 auto; }
    .au-footer-grid { grid-template-columns: 1fr; gap: 24px; padding: 30px 16px 16px; }
    .au-media { grid-template-columns: 96px 1fr; gap: 12px; padding: 12px; }
    .au-rank-list { gap: 10px; }
    .au-rank-item { grid-template-columns: 34px 64px minmax(0, 1fr); gap: 10px; padding: 10px; }
    .au-rank-num { width: 30px; height: 30px; font-size: 15px; }
    .au-rank-poster { width: 64px; }
    .au-rank-body .au-media-meta { gap: 6px; margin-bottom: 4px; font-size: 12px; }
    .au-rank-body .au-media-blurb { display: none; }
    .au-person-body { padding: 22px 14px 14px; }
    .au-person-grid { grid-template-columns: 1fr 1fr; }
    .au-person-card-link { grid-template-columns: 36px minmax(0, 1fr); padding: 10px; gap: 8px; }
    .au-person-avatar { width: 36px; height: 36px; font-size: 18px; }
    .au-person-card-name { font-size: 13.5px; }
}


@media (max-width: 520px) {
    .au-totop { bottom: 72px; right: 16px; width: 42px; height: 42px; }
    .xc-up { bottom: 16px; right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .au-card-link:hover .au-card-poster, .au-btn:hover, .au-ep:hover, .au-page-btn:hover, .au-page-num:hover { transform: none; }
}


/* ============ 首页页尾（APP + 友情链接，在 footer 之上） ============ */
.au-home-tail {
    margin-top: 8px;
    padding-bottom: 8px;
    border-top: 1px solid var(--au-line);
}
.au-home-app .xc-app-hero-home {
    margin: 0 !important;
}
body .au-home-app .xc-app-hero-home__banner {
    border-radius: var(--au-radius-lg) !important;
    margin: 28px 20px 0 !important;
    max-width: var(--au-contain);
    margin-left: auto !important;
    margin-right: auto !important;
}
body .au-home-app .xc-app-hero-home__feats {
    max-width: var(--au-contain) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 20px 8px !important;
}
.au-home-friends {
    padding: 28px 20px 36px;
}
.au-home-friends-inner {
    padding: 22px 24px;
    border-radius: var(--au-radius-lg);
    border: 1px solid var(--au-line-2);
    background: var(--au-bg-2);
    box-shadow: var(--au-shadow-sm);
}
.au-home-friends-title {
    margin: 0 0 14px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--au-text);
}
.au-home-friends .au-friend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}
.au-home-friends .au-friend a {
    color: var(--au-text-2);
    font-size: 14px;
    font-weight: 600;
}
.au-home-friends .au-friend a:hover {
    color: var(--au-cyan-l);
}

/* 返回顶部（在收藏 FAB 上方，见 §10.1） */
.au-totop {
    position: fixed; right: 22px; bottom: 84px; z-index: 99990;
    display: grid; place-items: center; width: 46px; height: 46px;
    background: var(--au-cyan); color: #fff; border: none; border-radius: 50%;
    cursor: pointer; box-shadow: 0 4px 14px rgba(0,0,0,.3);
    transition: transform .15s, opacity .2s;
}
.au-totop:hover { transform: translateY(-3px); }
.au-totop[hidden] { display: none; }

/* ============ 顶栏 APP 入口 ============ */
.au-nav-link--app {
    color: var(--au-cyan-d) !important;
    background: var(--au-cyan-t);
    border: 1px solid var(--au-cyan-t2);
    border-radius: var(--au-radius-sm);
    padding: 7px 14px !important;
}
.au-nav-link--app::after { display: none !important; }
.au-nav-link--app:hover,
.au-nav-link--app.is-active { color: #fff !important; background: var(--au-cyan); border-color: transparent; }

/* ============ 自动注入：首页 APP Hero（覆盖 _shared 内联紫红渐变） ============ */
body .xc-app-hero-home { margin: 0 0 32px !important; }
body .xc-app-hero-home__banner {
    background: linear-gradient(135deg, #0c4a6e 0%, #5b21b6 48%, #86198f 100%) !important;
    color: #fff !important;
    border-radius: 0 0 var(--au-radius-lg) var(--au-radius-lg) !important;
    box-shadow: var(--au-shadow) !important;
}
body .xc-app-hero-home__banner::after {
    background: radial-gradient(ellipse 75% 55% at 78% 18%, rgba(255,255,255,.16), transparent 58%) !important;
}
body .xc-app-hero-home__icon {
    background: rgba(255,255,255,.18) !important;
    border: 1px solid rgba(255,255,255,.28) !important;
}
body .xc-app-hero-home__title { color: #fff !important; }
body .xc-app-hero-home__slogans li { color: rgba(255,255,255,.92) !important; }
body .xc-app-hero-home__slogans li::before { color: #67e8f9 !important; }
body .xc-app-hero-home__stats .xc-app-mstats {
    display: flex !important;
    flex-wrap: wrap;
    gap: 28px 48px;
    align-items: flex-start;
}
body .xc-app-hero-home__stats .xc-app-mstats__num { color: #fff !important; font-weight: 800 !important; }
body .xc-app-hero-home__stats .xc-app-mstats__label { color: rgba(255,255,255,.82) !important; }
body .xc-app-hero-home__btn {
    color: #fff !important;
    background: rgba(255,255,255,.14) !important;
    border-color: rgba(255,255,255,.35) !important;
}
body .xc-app-hero-home__btn:hover { background: rgba(255,255,255,.24) !important; color: #fff !important; }
body .xc-app-hero-home__btn--primary {
    background: #fff !important;
    color: #0e7490 !important;
    border-color: #fff !important;
}
body .xc-app-hero-home__btn--primary:hover { color: #0e7490 !important; background: #ecfeff !important; }
body .xc-app-hero-home__phone img { border-color: rgba(255,255,255,.28) !important; }
body .xc-app-hero-home__phone-fallback {
    background: rgba(0,0,0,.18) !important;
    border-color: rgba(255,255,255,.32) !important;
    color: rgba(255,255,255,.85) !important;
}
body .xc-app-hero-home__feats { margin-top: 20px !important; }
body .xc-app-hero-home__feat {
    border-color: var(--au-line-2) !important;
    background: var(--au-bg-2) !important;
    box-shadow: var(--au-shadow-sm) !important;
}
body .xc-app-hero-home__feat h3 { color: var(--au-text) !important; }
body .xc-app-hero-home__feat p { color: var(--au-text-3) !important; opacity: 1 !important; }

/* ============ /app.html 下载页（套 aurora header/footer） ============ */
body .xc-app { max-width: var(--au-contain) !important; padding: 28px 20px 48px !important; }
body .xc-app-hero {
    background: linear-gradient(135deg, var(--au-bg-3), var(--au-bg-2)) !important;
    border: 1px solid var(--au-line-2) !important;
    border-radius: var(--au-radius-lg) !important;
    box-shadow: var(--au-shadow-sm) !important;
}
body .xc-app-hero-text h1 { color: var(--au-text) !important; }
body .xc-app-hero-text p { color: var(--au-text-2) !important; opacity: 1 !important; }
body .xc-app-meta { color: var(--au-text-3) !important; opacity: 1 !important; }
body .xc-app-badge--android { background: linear-gradient(135deg, #22d3ee, #0891b2) !important; }
body .xc-app-badge--ios { background: linear-gradient(135deg, #a78bfa, #7c3aed) !important; }
body .xc-app-qr,
body .xc-app-shot { border-color: var(--au-line-2) !important; background: var(--au-bg-2) !important; }
body .xc-app-shot { box-shadow: var(--au-shadow) !important; }
body .xc-app-mstats--bar {
    background: linear-gradient(135deg, var(--au-cyan-t), rgba(167,243,208,.35)) !important;
    border: 1px solid var(--au-line-2) !important;
}
body .xc-app-mstats__num { color: var(--au-cyan-d) !important; }
body .xc-app-mstats__label { color: var(--au-text-3) !important; opacity: 1 !important; }
body .xc-app-feat-title,
body .xc-app-strip-title { color: var(--au-text) !important; }
body .xc-app-feat {
    border-color: var(--au-line-2) !important;
    background: var(--au-bg-2) !important;
    box-shadow: var(--au-shadow-sm) !important;
}
body .xc-app-feat h3 { color: var(--au-text) !important; }
body .xc-app-feat p { color: var(--au-text-3) !important; opacity: 1 !important; }
body .xc-app-feat-ico {
    background: linear-gradient(135deg, var(--au-cyan-t), rgba(167,243,208,.5)) !important;
    color: var(--au-cyan-d) !important;
}
body .xc-app-card { color: var(--au-text) !important; }
body .xc-app-card:hover .xc-app-card-name { color: var(--au-cyan-d) !important; }
body .xc-app-card-thumb { background: var(--au-bg-3) !important; border: 1px solid var(--au-line) !important; border-radius: var(--au-radius-sm) !important; }
body .xc-app-card-name { color: var(--au-text) !important; }
body .xc-app-region {
    border-color: var(--au-line-2) !important;
    background: var(--au-bg-2) !important;
}
body .xc-app-region h3 { color: var(--au-cyan-d) !important; }
body .xc-app-note {
    background: var(--au-bg-3) !important;
    border: 1px solid var(--au-line) !important;
    color: var(--au-text-3) !important;
    opacity: 1 !important;
}

/* ============ 自动注入：FAQ ============ */
body .xc-faq-title { color: var(--au-text) !important; border-bottom-color: var(--au-line-2) !important; }
body .xc-faq-item { border-color: var(--au-line-2) !important; background: var(--au-bg-2) !important; }
body .xc-faq-item summary { color: var(--au-text) !important; }
body .xc-faq-item summary::before { background: var(--au-cyan-t) !important; color: var(--au-cyan-d) !important; }
body .xc-faq-item[open] summary::before { background: var(--au-cyan) !important; color: #fff !important; }
body .xc-faq-answer { color: var(--au-text-2) !important; opacity: 1 !important; }
body .xc-faq {
    max-width: var(--au-contain) !important;
    margin: 28px auto 36px !important;
    padding: 0 20px !important;
}

/* ============ 自动注入：XCUser 收藏/历史面板（绿色主题） ============ */
body .xc-up-fab {
    background: linear-gradient(135deg, var(--au-cyan-l), var(--au-blue)) !important;
    box-shadow: 0 4px 16px rgba(34,211,238,.32) !important;
}
body .xc-up-fab:hover { box-shadow: 0 6px 22px rgba(34,211,238,.42) !important; }
body .xc-up-fab-badge { background: var(--au-violet) !important; }
body .xc-up-panel {
    border: 1px solid var(--au-line-2) !important;
    box-shadow: var(--au-shadow) !important;
}
body .xc-up-tab.is-active { color: var(--au-cyan-d) !important; border-bottom-color: var(--au-cyan) !important; }
body .xc-up-tab.is-active .xc-up-tab-count { color: var(--au-cyan-d) !important; }
body .xc-up-item-name:hover { color: var(--au-cyan-d) !important; }
body .xc-up-item-del:hover { color: var(--au-cyan-d) !important; background: var(--au-cyan-t) !important; }
body .xc-up-clear:hover { border-color: var(--au-cyan) !important; color: var(--au-cyan-d) !important; }

/* 页脚版本号 */
.au-foot-meta { display: block; margin-top: 6px; font-size: 12px; color: var(--au-text-3); }
