/* ============================================================
   游蜂写作 · 意见墙
   匹配官网设计令牌：深色背景 + 金色点缀 + Noto Serif SC
   状态色：待审核灰 / 处理中橙 / 已解决绿
   ============================================================ */
:root {
    --bg-deep: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a24;
    --gold: #e8b84b;
    --gold-light: #f5d780;
    --gold-dim: #b8860b;
    --accent: #ff6b35;
    --text-primary: #f0ece4;
    --text-secondary: #9a968e;
    --text-dim: #6a665e;
    --border: #2a2a35;
    --border-active: #4a4a55;
    --green: #10b981;
    --green-soft: rgba(16,185,129,0.12);
    --orange: #ff9d3c;
    --orange-soft: rgba(255,157,60,0.12);
    --gray-soft: rgba(154,150,142,0.12);
    --serif: 'Noto Serif SC', 'Songti SC', serif;
    --sans: 'Noto Sans SC', ui-sans-serif, system-ui, sans-serif;
}

.opinion-wall-page, .opinion-wall-page * { box-sizing: border-box; }
.opinion-wall-page {
    font-family: var(--sans);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
.opinion-wall-page a { color: inherit; text-decoration: none; }
.opinion-wall-page button { font-family: inherit; cursor: pointer; }
.opinion-wall-page ::selection { background: rgba(232,184,75,0.25); color: var(--gold-light); }

/* ============================================================
   顶部导航
   ============================================================ */
.site-header.opinion-wall-header {
    position: sticky; top: 0; z-index: 50; width: 100%;
    border-bottom: 1px solid var(--border);
    background: rgba(10,10,15,0.8); backdrop-filter: blur(12px);
}
.header-inner {
    max-width: 1200px; margin: 0 auto; height: 64px; padding: 0 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
}
.brand { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }
.brand-gold { color: var(--gold); }
.site-nav { display: flex; gap: 0.25rem; }
.site-nav a {
    padding: 0.5rem 0.9rem; border-radius: 8px; font-size: 0.9rem; font-weight: 500;
    color: var(--text-secondary); transition: all 0.2s;
}
.site-nav a:hover { color: var(--text-primary); background: var(--bg-card-hover); }
.site-nav a.active { color: var(--gold); background: rgba(232,184,75,0.1); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.btn-ghost {
    padding: 0.5rem 1.1rem; border-radius: 100px;
    border: 1px solid rgba(232,184,75,0.4); background: rgba(232,184,75,0.05);
    color: var(--gold); font-size: 0.85rem; font-weight: 700; transition: all 0.25s;
}
.btn-ghost:hover { background: var(--gold); color: var(--bg-deep); transform: translateY(-1px); }
.btn-admin {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.5rem 1rem; border-radius: 100px;
    border: 1px solid var(--border); background: var(--bg-card);
    color: var(--text-secondary); font-size: 0.82rem; font-weight: 600; transition: all 0.25s;
}
.btn-admin svg { width: 16px; height: 16px; }
.btn-admin:hover { border-color: var(--border-active); color: var(--text-primary); }
.btn-admin.on {
    border-color: var(--gold); color: var(--bg-deep);
    background: linear-gradient(135deg, var(--gold), var(--gold-dim)); font-weight: 700;
}
.nav-toggle { display: none; background: none; border: none; color: var(--text-secondary); width: 40px; height: 40px; padding: 8px; }
.nav-toggle svg { width: 24px; height: 24px; }

/* ============================================================
   Hero
   ============================================================ */
.ow-hero { position: relative; padding: 5rem 1.5rem 3rem; text-align: center; overflow: hidden; }
.ow-hero-glow {
    position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
    width: 900px; height: 700px;
    background: radial-gradient(ellipse, rgba(232,184,75,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.ow-badge {
    position: relative; display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1.2rem; border: 1px solid var(--border-active); border-radius: 100px;
    background: rgba(232,184,75,0.05); backdrop-filter: blur(10px);
    font-size: 0.78rem; letter-spacing: 0.1em; color: var(--gold);
    margin-bottom: 1.8rem; animation: fadeUp 0.7s ease both;
}
.ow-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.ow-hero h1 {
    position: relative; font-family: var(--serif); font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.15; letter-spacing: -0.02em;
    margin-bottom: 1.2rem; animation: fadeUp 0.7s 0.1s ease both;
}
.ow-hero h1 .hl {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.ow-hero-sub {
    position: relative; max-width: 660px; margin: 0 auto 2.5rem;
    font-size: clamp(0.98rem, 2vw, 1.2rem); font-weight: 300; color: var(--text-secondary);
    animation: fadeUp 0.7s 0.2s ease both;
}
.ow-hero-sub strong { color: var(--gold-light); font-weight: 500; }
.ow-hero-stats {
    position: relative; display: flex; flex-wrap: wrap; justify-content: center;
    gap: 2.5rem; margin-bottom: 2.5rem; animation: fadeUp 0.7s 0.3s ease both;
}
.ow-hero-stat { text-align: center; }
.ow-hero-stat .num { display: block; font-family: var(--serif); font-weight: 900; font-size: 2.4rem; color: var(--gold); line-height: 1; }
.ow-hero-stat .label { font-size: 0.82rem; color: var(--text-dim); margin-top: 0.35rem; }
.ow-post-cta {
    position: relative; display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1rem 2.4rem; border: none; border-radius: 100px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--bg-deep); font-size: 1.02rem; font-weight: 700;
    box-shadow: 0 4px 30px rgba(232,184,75,0.25); transition: all 0.3s;
    animation: fadeUp 0.7s 0.4s ease both;
}
.ow-post-cta svg { width: 20px; height: 20px; }
.ow-post-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(232,184,75,0.4); }

/* ============================================================
   工具条
   ============================================================ */
.ow-board { max-width: 1200px; margin: 0 auto; padding: 1rem 1.5rem 5rem; }
.board-toolbar {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
    gap: 1rem; padding-bottom: 1.5rem; margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.filter-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-tab {
    display: inline-flex; align-items: center; gap: 0.45rem;
    padding: 0.55rem 1rem; border-radius: 100px;
    border: 1px solid var(--border); background: var(--bg-card);
    color: var(--text-secondary); font-size: 0.86rem; font-weight: 500; transition: all 0.25s;
}
.filter-tab:hover { border-color: var(--border-active); color: var(--text-primary); transform: translateY(-2px); }
.filter-tab.active { border-color: var(--gold); color: var(--bg-deep); background: linear-gradient(135deg, var(--gold), var(--gold-dim)); font-weight: 700; }
.filter-tab .cnt { font-size: 0.72rem; padding: 0.05rem 0.45rem; border-radius: 100px; background: rgba(255,255,255,0.08); }
.filter-tab.active .cnt { background: rgba(10,10,15,0.2); }
.filter-tab .sdot { width: 8px; height: 8px; border-radius: 50%; }
.sdot.pending { background: var(--text-secondary); }
.sdot.progress { background: var(--orange); }
.sdot.resolved { background: var(--green); }

/* 分类筛选条 */
.cat-tabs,
.product-tabs {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: start;
    column-gap: 0.5rem;
    row-gap: 0.65rem;
    max-width: 860px;
    margin: 0 auto 1.6rem;
}
.cat-tab {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.45rem 0.95rem; border-radius: 100px;
    border: 1px solid var(--border); background: var(--bg-card);
    color: var(--text-secondary); font-size: 0.84rem; font-weight: 500; transition: all 0.2s;
}
.cat-tab:hover { border-color: var(--border-active); color: var(--text-primary); }
.cat-tab.active { border-color: var(--gold); color: var(--gold); background: rgba(232,184,75,0.1); font-weight: 600; }
.cat-tab.summary,
.product-tab.summary {
    cursor: default;
    pointer-events: none;
    color: var(--gold);
    border-color: rgba(232,184,75,0.5);
    background: rgba(232,184,75,0.05);
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(232,184,75,0.06);
}
.cat-tab.summary:hover,
.product-tab.summary:hover {
    border-color: rgba(232,184,75,0.5);
    color: var(--gold);
}
.cat-tab .cnt { font-size: 0.72rem; padding: 0.05rem 0.4rem; border-radius: 100px; background: rgba(255,255,255,0.06); }
.product-tabs { margin-bottom: 0.8rem; }
.tab-options { display: flex; flex-wrap: wrap; gap: 0.5rem; min-width: 0; }
.product-tab {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.5rem 0.95rem; border-radius: 100px;
    border: 1px solid var(--border); background: var(--bg-card);
    color: var(--text-secondary); font-size: 0.84rem; font-weight: 500; transition: all 0.2s;
}
.product-tab:hover { border-color: var(--border-active); color: var(--text-primary); }
.product-tab.active { border-color: var(--gold); color: var(--bg-deep); background: linear-gradient(135deg, var(--gold), var(--gold-dim)); font-weight: 700; }
.product-tab .cnt { font-size: 0.72rem; padding: 0.05rem 0.4rem; border-radius: 100px; background: rgba(255,255,255,0.06); }
.product-tab.active .cnt { background: rgba(10,10,15,0.2); }

/* ---------- 原创内联 SVG 图标统一样式 ---------- */
.ic-svg { width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em; flex-shrink: 0; }
.cat-tab .ic-svg, .cat-opt .ic-svg { color: var(--gold); vertical-align: -0.16em; }
.note-cat .ic-svg, .mi-cat .ic-svg { color: var(--gold); vertical-align: -0.16em; }
.status-opt .ic-svg { vertical-align: -0.16em; margin-right: 0.15rem; }
.mod-btn .ic-svg { vertical-align: -0.14em; margin-right: 0.1rem; }
.empty-icon svg { width: 1em; height: 1em; display: inline-block; color: var(--gold); }
.moderate-empty .me-ic .ic-svg { width: 1em; height: 1em; color: var(--green); }
.paste-safety svg, .form-hint svg { width: 1em; height: 1em; display: inline-block; vertical-align: -0.16em; }

.board-tools { display: flex; align-items: center; gap: 0.75rem; }
.ow-search {
    display: flex; align-items: center; gap: 0.5rem; height: 42px; padding: 0 1rem;
    border: 1px solid var(--border); border-radius: 100px; background: var(--bg-card); transition: all 0.25s;
}
.ow-search:focus-within { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(232,184,75,0.1); }
.ow-search svg { width: 18px; height: 18px; color: var(--text-dim); }
.ow-search input { background: none; border: none; outline: none; color: var(--text-primary); font-size: 0.9rem; width: 160px; }
.ow-search input::placeholder { color: var(--text-dim); }
.ow-sort {
    height: 42px; padding: 0 2.2rem 0 1rem; border-radius: 100px;
    border: 1px solid var(--border); background: var(--bg-card); color: var(--text-primary);
    font-size: 0.86rem; outline: none; cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%239a968e' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center;
}
.ow-sort:focus { border-color: var(--gold); }

/* 待审核横幅 */
.pending-banner {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.9rem 1.2rem; margin-bottom: 1.5rem; border-radius: 12px;
    border: 1px dashed var(--border-active); background: var(--gray-soft);
    color: var(--text-secondary); font-size: 0.88rem;
    animation: fadeUp 0.4s ease both;
}
.pending-banner svg { width: 18px; height: 18px; color: var(--text-secondary); flex-shrink: 0; }

/* ============================================================
   意见墙 — 论坛式帖子列表（单列）
   ============================================================ */
.wall { display: flex; flex-direction: column; gap: 1.1rem; max-width: 860px; margin: 0 auto; }

.note {
    display: flex; gap: 1.1rem;
    border-radius: 16px; border: 1px solid var(--border); background: var(--bg-card);
    padding: 1.4rem 1.5rem; position: relative; overflow: hidden;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    animation: cardIn 0.45s ease both;
}
.note:hover { border-color: var(--border-active); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.35); }
/* 左侧状态色条 */
.note::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; }
.note.s-pending::before { background: var(--text-secondary); }
.note.s-progress::before { background: var(--orange); }
.note.s-resolved::before { background: var(--green); }

/* 左列：点赞 + 头像 */
.note-aside { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; flex-shrink: 0; width: 56px; }
.note-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; font-weight: 700; color: var(--bg-deep); background: linear-gradient(135deg, var(--gold), var(--gold-dim)); }
.like-btn {
    display: flex; flex-direction: column; align-items: center; gap: 0.15rem;
    padding: 0.4rem 0.5rem; width: 100%; border-radius: 12px;
    border: 1px solid var(--border); background: transparent;
    color: var(--text-secondary); font-size: 0.82rem; font-weight: 700; transition: all 0.2s;
}
.like-btn svg { width: 17px; height: 17px; transition: transform 0.2s; }
.like-btn:hover { border-color: var(--gold); color: var(--gold); }
.like-btn.liked { border-color: var(--gold); background: rgba(232,184,75,0.1); color: var(--gold); }
.like-btn.liked svg { fill: var(--gold); transform: scale(1.12); }

/* 右列：正文 */
.note-main { flex: 1; min-width: 0; }
.note-top { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem; flex-wrap: wrap; }
.note-cat { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.76rem; padding: 0.2rem 0.7rem; border-radius: 100px; background: rgba(232,184,75,0.1); color: var(--gold); font-weight: 500; }
.software-badge { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.76rem; padding: 0.2rem 0.7rem; border-radius: 100px; background: rgba(240,236,228,0.08); color: var(--text-secondary); font-weight: 600; }
.status-badge { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.74rem; padding: 0.22rem 0.7rem; border-radius: 100px; font-weight: 600; white-space: nowrap; }
.status-badge .sdot { width: 7px; height: 7px; border-radius: 50%; }
.status-badge.pending { background: var(--gray-soft); color: var(--text-secondary); }
.status-badge.pending .sdot { background: var(--text-secondary); }
.status-badge.progress { background: var(--orange-soft); color: var(--orange); }
.status-badge.progress .sdot { background: var(--orange); animation: pulse 2s infinite; }
.status-badge.resolved { background: var(--green-soft); color: var(--green); }
.status-badge.resolved .sdot { background: var(--green); }
.note-meta-inline { font-size: 0.76rem; color: var(--text-dim); margin-left: auto; display: inline-flex; gap: 0.4rem; align-items: center; }

.note h3 { font-family: var(--serif); font-size: 1.18rem; font-weight: 700; line-height: 1.45; margin-bottom: 0.5rem; }
.note-text { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.75; white-space: pre-wrap; word-break: break-word; }

/* 帖子配图 */
.note-imgs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.9rem; }
.note-img { width: 120px; height: 120px; border-radius: 10px; object-fit: cover; border: 1px solid var(--border); cursor: zoom-in; transition: transform 0.2s, border-color 0.2s; background: var(--bg-deep); }
.note-img:hover { transform: scale(1.03); border-color: var(--gold); }

/* 官方回复区 */
.note-reply {
    margin-top: 1rem; padding: 1rem 1.1rem; border-radius: 12px;
    background: linear-gradient(160deg, rgba(232,184,75,0.07), rgba(232,184,75,0.02));
    border: 1px solid rgba(232,184,75,0.18);
}
.note-reply-head { display: flex; align-items: center; gap: 0.45rem; margin-bottom: 0.5rem; }
.note-reply-badge { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.74rem; font-weight: 700; color: var(--gold); }
.note-reply-badge svg { width: 14px; height: 14px; }
.note-reply-date { font-size: 0.72rem; color: var(--text-dim); margin-left: auto; }
.note-reply-text { font-size: 0.86rem; color: var(--text-primary); line-height: 1.7; white-space: pre-wrap; }
.note-reply .note-imgs { margin-top: 0.75rem; }
.note-reply .note-img { width: 96px; height: 96px; }

/* 帖子底部操作条（仅管理员模式显示） */
.note-foot { display: none; align-items: center; gap: 0.8rem; margin-top: 1rem; padding-top: 0.9rem; border-top: 1px solid var(--border); }
body.admin-mode .note-foot { display: flex; }
.admin-reply-btn { display: none; align-items: center; gap: 0.35rem; padding: 0.4rem 0.9rem; border-radius: 100px; border: 1px solid rgba(232,184,75,0.4); background: rgba(232,184,75,0.06); color: var(--gold); font-size: 0.8rem; font-weight: 600; transition: all 0.2s; }
.admin-reply-btn svg { width: 14px; height: 14px; }
.admin-reply-btn:hover { background: var(--gold); color: var(--bg-deep); }
body.admin-mode .admin-reply-btn { display: inline-flex; }

/* ============================================================
   滚动加载
   ============================================================ */
.scroll-loader { display: flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 2rem 1rem 0.5rem; color: var(--text-secondary); font-size: 0.88rem; }
.scroll-loader .spinner { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border-active); border-top-color: var(--gold); animation: spin 0.7s linear infinite; }
.scroll-end { text-align: center; padding: 2rem 1rem 0.5rem; color: var(--text-dim); font-size: 0.82rem; letter-spacing: 0.05em; }
.scroll-sentinel { height: 1px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   图片大图查看
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 2rem; background: rgba(5,5,8,0.9); backdrop-filter: blur(8px); animation: fadeIn 0.2s ease; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: 0 30px 90px rgba(0,0,0,0.7); animation: modalUp 0.3s cubic-bezier(0.2,0.9,0.3,1.1); }
.lightbox-close { position: absolute; top: 1.4rem; right: 1.4rem; width: 44px; height: 44px; padding: 10px; border-radius: 50%; border: 1px solid var(--border-active); background: var(--bg-card); color: var(--text-primary); transition: all 0.2s; }
.lightbox-close svg { width: 22px; height: 22px; }
.lightbox-close:hover { color: var(--accent); border-color: var(--accent); transform: rotate(90deg); }

/* 空状态 */
.empty-state { text-align: center; padding: 5rem 1rem; color: var(--text-dim); }
.empty-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.6; }
.empty-state h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--text-secondary); margin-bottom: 0.4rem; }

/* ============================================================
   弹窗
   ============================================================ */
.modal-overlay {
    position: fixed; inset: 0; z-index: 100;
    display: flex; align-items: center; justify-content: center; padding: 1.5rem;
    background: rgba(5,5,8,0.75); backdrop-filter: blur(6px);
    animation: fadeIn 0.25s ease;
}
.modal-overlay[hidden] { display: none; }
.modal {
    position: relative; width: 100%; max-width: 540px; max-height: 90vh; overflow-y: auto;
    padding: 2.2rem; border-radius: 20px;
    border: 1px solid var(--border-active); background: var(--bg-card);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    animation: modalUp 0.35s cubic-bezier(0.2,0.9,0.3,1.1);
}
.modal-close { position: absolute; top: 1.2rem; right: 1.2rem; width: 36px; height: 36px; padding: 8px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-deep); color: var(--text-secondary); transition: all 0.2s; }
.modal-close svg { width: 18px; height: 18px; }
.modal-close:hover { color: var(--accent); border-color: var(--accent); transform: rotate(90deg); }
.modal-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.4rem; }
.modal-sub { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 1.6rem; }

.field-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-primary); margin: 1.2rem 0 0.6rem; }
.field-label:first-of-type { margin-top: 0; }
.product-field { margin-bottom: 1.35rem; }
.product-field .field-label { margin-bottom: 0.55rem; }
.product-field + .field-label { margin-top: 0; }
.req { color: var(--accent); }
.composer input[type=text], .composer textarea, .composer-select, .reply-modal textarea {
    width: 100%; padding: 0.8rem 1rem; border-radius: 10px;
    border: 1px solid var(--border); background: var(--bg-deep); color: var(--text-primary);
    font-size: 0.92rem; outline: none; transition: all 0.2s; font-family: inherit;
}
.composer-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%239a968e' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center;
    padding-right: 2.4rem;
}
.composer input:focus, .composer textarea:focus, .composer-select:focus, .reply-modal textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,184,75,0.1); }
.composer textarea, .reply-modal textarea { resize: vertical; line-height: 1.6; }
.char-count { text-align: right; font-size: 0.74rem; color: var(--text-dim); margin-top: 0.3rem; }

/* 粘贴配图区 */
.paste-zone { position: relative; border: 1px dashed var(--border-active); border-radius: 12px; background: var(--bg-deep); padding: 0.9rem; transition: all 0.2s; }
.paste-zone:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,184,75,0.1); }
.paste-zone.flash { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }
.local-image-input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.paste-catcher { width: 100%; padding: 0.5rem 0.2rem; border: none; background: none; outline: none; color: var(--text-primary); font-size: 0.86rem; font-family: inherit; }
.paste-catcher::placeholder { color: var(--text-dim); }
.paste-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.6rem; }
.image-pick-btn { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.5rem 0.85rem; border-radius: 8px; border: 1px solid rgba(232,184,75,0.4); background: rgba(232,184,75,0.08); color: var(--gold); font-size: 0.82rem; font-weight: 700; transition: all 0.2s; }
.image-pick-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.image-pick-btn:hover { border-color: var(--gold); background: rgba(232,184,75,0.14); color: var(--gold-light); }
.paste-hint { display: flex; align-items: center; gap: 0.7rem; margin-top: 0.5rem; padding-top: 0.7rem; border-top: 1px solid var(--border); }
.paste-hint svg { width: 28px; height: 28px; color: var(--text-dim); flex-shrink: 0; }
.paste-hint-text { display: flex; flex-direction: column; gap: 0.15rem; }
.paste-hint-text strong { font-size: 0.84rem; color: var(--text-secondary); font-weight: 600; }
.paste-hint-text span { font-size: 0.76rem; color: var(--text-dim); }
.paste-hint kbd { display: inline-block; padding: 0.05rem 0.4rem; border-radius: 5px; border: 1px solid var(--border-active); background: var(--bg-card); font-family: var(--sans); font-size: 0.72rem; color: var(--text-secondary); }
.paste-thumbs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.8rem; }
.paste-thumbs:empty { display: none; }
.paste-thumb { position: relative; width: 84px; height: 84px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); animation: cardIn 0.3s ease both; }
.paste-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.paste-thumb .thumb-del { position: absolute; top: 3px; right: 3px; width: 22px; height: 22px; padding: 4px; border-radius: 50%; border: none; background: rgba(5,5,8,0.7); color: #fff; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.paste-thumb .thumb-del svg { width: 14px; height: 14px; }
.paste-thumb .thumb-del:hover { background: var(--accent); }
.paste-safety { font-size: 0.76rem; color: var(--text-dim); margin-top: 0.5rem; line-height: 1.6; }

.cat-picker { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cat-picker-empty {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px dashed var(--border-active);
    background: rgba(255,255,255,0.03);
    color: var(--text-dim);
    font-size: 0.84rem;
}
.cat-opt { padding: 0.5rem 0.9rem; border-radius: 100px; border: 1px solid var(--border); background: var(--bg-deep); color: var(--text-secondary); font-size: 0.82rem; transition: all 0.2s; }
.cat-opt:hover { border-color: var(--border-active); color: var(--text-primary); }
.cat-opt.active { border-color: var(--gold); background: rgba(232,184,75,0.1); color: var(--gold); font-weight: 600; }

.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.8rem; flex-wrap: wrap; }
.form-hint { font-size: 0.8rem; color: var(--text-dim); }
.submit-btn {
    padding: 0.8rem 2rem; border: none; border-radius: 100px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim)); color: var(--bg-deep);
    font-size: 0.95rem; font-weight: 700; box-shadow: 0 4px 24px rgba(232,184,75,0.25); transition: all 0.25s;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,184,75,0.4); }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* 回复弹窗 */
.reply-target { padding: 1rem; border-radius: 12px; background: var(--bg-deep); border: 1px solid var(--border); margin-bottom: 0.5rem; }
.reply-target .rt-title { font-family: var(--serif); font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; }
.reply-target .rt-body { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.6; }
.status-picker { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.status-opt { flex: 1; min-width: 140px; padding: 0.7rem; border-radius: 10px; border: 1px solid var(--border); background: var(--bg-deep); color: var(--text-secondary); font-size: 0.88rem; font-weight: 500; transition: all 0.2s; }
.status-opt:hover { border-color: var(--border-active); color: var(--text-primary); }
.status-opt.active[data-status=progress] { border-color: var(--orange); background: var(--orange-soft); color: var(--orange); font-weight: 700; }
.status-opt.active[data-status=resolved] { border-color: var(--green); background: var(--green-soft); color: var(--green); font-weight: 700; }

/* 审核台 */
.moderate-modal { max-width: 620px; }
.moderate-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.mod-item { padding: 1.2rem; border-radius: 12px; border: 1px solid var(--border); background: var(--bg-deep); }
.mod-item .mi-cat { display: inline-block; font-size: 0.74rem; padding: 0.15rem 0.6rem; border-radius: 100px; background: rgba(232,184,75,0.1); color: var(--gold); margin-bottom: 0.6rem; }
.mod-item h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.mod-item p { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1rem; }
.mod-actions { display: flex; gap: 0.6rem; }
.mod-btn { flex: 1; padding: 0.6rem; border-radius: 10px; font-size: 0.85rem; font-weight: 600; border: 1px solid var(--border); background: transparent; transition: all 0.2s; }
.mod-btn.approve { border-color: var(--green); color: var(--green); }
.mod-btn.approve:hover { background: var(--green); color: #fff; }
.mod-btn.reject { border-color: var(--accent); color: var(--accent); }
.mod-btn.reject:hover { background: var(--accent); color: #fff; }
.moderate-empty { text-align: center; padding: 2.5rem 1rem; color: var(--text-dim); }
.moderate-empty .me-ic { font-size: 2.2rem; margin-bottom: 0.6rem; }
.mod-badge { position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 100px; background: var(--accent); color: #fff; font-size: 0.68rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* ============================================================
   页脚
   ============================================================ */
.site-footer { border-top: 1px solid var(--border); padding: 3rem 1.5rem 2rem; background: var(--bg-deep); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.footer-brand .brand { font-size: 1.2rem; font-weight: 700; }
.footer-brand p { margin-top: 0.6rem; font-size: 0.85rem; color: var(--text-secondary); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.88rem; color: var(--text-secondary); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { max-width: 1200px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--border); text-align: center; font-size: 0.8rem; color: var(--text-dim); }

/* Toast */
.toast {
    position: fixed; bottom: 2rem; left: 50%; transform: translate(-50%, 160%);
    padding: 0.85rem 1.6rem; border-radius: 100px; z-index: 400;
    background: var(--green); color: #fff; font-size: 0.9rem; font-weight: 600;
    box-shadow: 0 8px 30px rgba(16,185,129,0.35);
    opacity: 0; visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.2,0.9,0.3,1.2), opacity 0.2s ease, visibility 0s linear 0.4s;
    pointer-events: none;
}
.toast.show { transform: translate(-50%, -0.75rem); opacity: 1; visibility: visible; transition-delay: 0s; }
.toast.warn { background: var(--orange); box-shadow: 0 8px 30px rgba(255,157,60,0.35); }

/* 动画 */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes cardIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes modalUp { from { opacity: 0; transform: translateY(30px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }

/* 响应式 */
@media (max-width: 768px) {
    .site-nav { position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; gap: 0; padding: 0.5rem; background: var(--bg-deep); border-bottom: 1px solid var(--border); display: none; }
    .site-nav.open { display: flex; }
    .site-nav a { padding: 0.8rem 1rem; }
    .nav-toggle { display: block; }
    .btn-ghost { display: none; }
    .board-toolbar { flex-direction: column; align-items: stretch; }
    .board-tools { justify-content: space-between; }
    .ow-search input { width: 100%; }
    .ow-search { flex: 1; }
    .ow-hero-stats { gap: 1.5rem; }
    .ow-hero-stat .num { font-size: 1.9rem; }
    .modal { padding: 1.6rem; }
    .footer-inner { flex-direction: column; gap: 1.2rem; }
    .note { padding: 1.1rem 1.2rem; gap: 0.8rem; }
    .note-aside { width: 46px; }
    .note-avatar { width: 38px; height: 38px; font-size: 0.95rem; }
    .note h3 { font-size: 1.08rem; }
    .note-img { width: 96px; height: 96px; }
}
