    /* 核心 UI 样式 */
    .cs-section-head {
        font-family: 'Playfair Display', serif;
        font-size: 18px;
        font-weight: 900;
        color: #1C1C1E;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
        border-left: 3px solid #C3A772;
        padding-left: 12px;
    }
    .cs-row-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
        border-bottom: 0.5px solid rgba(0,0,0,0.05);
    }
    .cs-row-item label {
        font-size: 13px;
        font-weight: 800;
        color: #1C1C1E;
    }
    .cs-input-minimal, .cs-select-minimal {
        border: none;
        background: transparent;
        text-align: right;
        font-weight: 700;
        font-size: 13px;
        outline: none;
        color: #C3A772;
    }
    .cs-num-input {
        width: 60px;
        border: none;
        background: #F4F3F0;
        padding: 8px;
        border-radius: 10px;
        text-align: center;
        font-weight: 800;
        font-family: monospace;
    }
    /* 极简拨杆开关 */
    .cs-toggle { position: relative; width: 40px; height: 20px; }
    .cs-toggle-input { display: none; }
    .cs-toggle label {
        display: block; width: 100%; height: 100%; background: #E5E5EA;
        border-radius: 20px; cursor: pointer; transition: 0.3s; position: relative;
    }
    .cs-toggle label::after {
        content: ''; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px;
        background: #FFF; border-radius: 50%; transition: 0.3s; box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .cs-toggle-input:checked + label { background: #1C1C1E; }
    .cs-toggle-input:checked + label::after { left: 22px; }

    /* 胶囊选块 */
    .cs-chip {
        padding: 8px 16px; background: #FFF; border: 0.5px solid rgba(0,0,0,0.1);
        border-radius: 100px; font-size: 10px; font-weight: 800; cursor: pointer; transition: 0.2s;
    }
    .cs-chip.active { background: #1C1C1E; color: #FFF; border-color: #1C1C1E; }

    /* 颜色点 */
    .cs-color-dot {
        -webkit-appearance: none; border: none; width: 24px; height: 24px;
        border-radius: 50%; cursor: pointer; background: none; padding: 0;
    }
    .cs-color-dot::-webkit-color-swatch-wrapper { padding: 0; }
    .cs-color-dot::-webkit-color-swatch { border: 2px solid #FFF; border-radius: 50%; box-shadow: 0 0 10px rgba(0,0,0,0.1); }

    /* 文本域 */
    .cs-textarea-minimal {
        width: 100%; border: none; background: #F9F9F7; border-radius: 16px;
        padding: 15px; font-size: 12px; line-height: 1.6; outline: none; resize: none;
    }
    .cs-textarea-dark {
        width: 100%; border: none; background: #1C1C1E; color: #FFF; border-radius: 16px;
        padding: 15px; font-size: 12px; line-height: 1.6; outline: none; resize: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    /* 保存按钮 */
    .cs-save-btn {
        width: 100%; padding: 18px; border-radius: 100px; background: #1C1C1E;
        color: #FFFFFF; border: none; font-size: 13px; font-weight: 800;
        letter-spacing: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); cursor: pointer;
    }
    .cs-text-btn { font-size: 10px; font-weight: 800; color: #C3A772; cursor: pointer; }
    
    /* 滑块 */
    .cs-range { -webkit-appearance: none; width: 100%; height: 4px; background: #E5E5EA; border-radius: 2px; outline: none; }
    .cs-range::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; background: #1C1C1E; border-radius: 50%; cursor: pointer; border: 3px solid #FFF; box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
    /* 修复：聊天室设置页底部保存按钮在不同机型上飘移 */
#chat-settings-modal footer,
#wb-modal footer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px)) !important;
}

/* 修复：心事小票撰写页的按钮区域 */
.rc-compose-view .rc-cv-hd {
    position: sticky !important;
    top: 0 !important;
    z-index: 10 !important;
}

/* 修复：线下剧场输入框在小屏幕上被挤出视口 */
#theater-modal .input-wrapper {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
    z-index: 100 !important;
}

/* 修复：底栏 Dock 在安卓/小屏上偏移 */
.bottom-tabs-dark {
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
}

/* 修复：聊天输入栏在不同机型上的底部安全距离 */
#chat-input-wrap {
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
}

/* ========================================================================
   Play Style 抽屉 + 按钮专有样式 (V26.07.28)
   不用 cs-text-btn，那玩意有黑色外圈
   ======================================================================== */

.ps-section {
    margin-bottom: 40px;
}

.ps-section-head {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #1C1C1E;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 0.5px solid rgba(0,0,0,0.05);
}

.ps-section-head .ps-sub {
    font-size: 9px;
    color: #A8A196;
    font-weight: 800;
    letter-spacing: 1px;
    margin-left: 8px;
}

.ps-drawer {
    background: #F9F9F7;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ps-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
}

.ps-drawer-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ps-drawer-toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #1C1C1E;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.ps-drawer-header.ps-open .ps-drawer-toggle-icon {
    transform: rotate(45deg);
}

.ps-drawer-label {
    font-size: 13px;
    font-weight: 800;
    color: #1C1C1E;
}

.ps-drawer-count {
    font-family: 'Courier New', monospace;
    font-size: 9px;
    color: #A8A196;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 10px;
    background: rgba(0,0,0,0.05);
    border-radius: 100px;
}

.ps-drawer-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ps-drawer.ps-open .ps-drawer-body {
    max-height: 5000px;
}

.ps-drawer-inner {
    padding: 0 20px 20px;
}

.ps-tip {
    font-size: 10px;
    color: #A8A196;
    font-weight: 600;
    line-height: 1.6;
    margin: 14px 0;
    padding: 10px 14px;
    background: rgba(0,0,0,0.03);
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.ps-tip .ps-tip-high {
    color: #C3A772;
    font-weight: 900;
}

.ps-field {
    margin-top: 18px;
}

.ps-field-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 8px;
    gap: 10px;
}

.ps-field-label {
    font-size: 13px;
    font-weight: 800;
    color: #1C1C1E;
}

.ps-field-label small {
    display: block;
    font-size: 9px;
    color: #A8A196;
    font-weight: 500;
    margin-top: 2px;
}

.ps-field-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.ps-btn-mini {
    background: #FFF;
    color: #1C1C1E;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.ps-btn-mini:hover {
    background: #1C1C1E;
    color: #FFF;
    border-color: #1C1C1E;
}

.ps-btn-mini:active {
    transform: scale(0.96);
}

.ps-btn-mini.ps-btn-ai {
    background: linear-gradient(135deg, #1C1C1E, #2C2C2E);
    color: #FFF;
    border-color: transparent;
}

.ps-btn-mini.ps-btn-ai:hover {
    background: linear-gradient(135deg, #C3A772, #8B7355);
    color: #FFF;
}

.ps-textarea {
    width: 100%;
    height: 70px;
    background: #FFF;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 12px;
    color: #1C1C1E;
    line-height: 1.6;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.ps-textarea:focus {
    border-color: #C3A772;
}

.ps-textarea::placeholder {
    color: #A8A196;
    font-weight: 500;
}

.ps-textarea:disabled {
    background: rgba(0,0,0,0.04);
    cursor: not-allowed;
}

.ps-coverage {
    margin-top: 22px;
    padding: 12px 14px;
    background: rgba(195,167,114,0.08);
    border-left: 3px solid #C3A772;
    border-radius: 8px;
}

.ps-coverage-head {
    font-size: 9px;
    color: #C3A772;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.ps-coverage-text {
    font-size: 11px;
    color: #4A4642;
    line-height: 1.5;
    font-weight: 500;
}