.npc-chat-dialog {
    width: min(560px, calc(100vw - 24px)) !important;
    max-width: 100% !important;
    margin: 8vh auto 0 !important;
    top: 0 !important;
    bottom: auto !important;
    height: min(78vh, 680px) !important;
    display: flex !important;
    flex-direction: column !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.npc-chat-dialog .el-dialog__body {
    padding: 0 !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

/* === 核心变量与主题 === */
:root {
    /* 基础配色 - 黑白灰主题 */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #000000;
    
    /* 语义化颜色 */
    --color-primary: var(--color-gray-800);
    --color-secondary: var(--color-gray-600);
    --color-muted: var(--color-gray-400);
    --color-danger: #ef4444; /* 修复为真实红色，原来是灰色 */
    --color-success: var(--color-gray-600);
    --color-warning: #f59e0b;
    --color-warning-dark: #b45309;
    --color-warning-light: #fef3c7;
    --color-warning-lighter: #fffbeb;
    
    /* 背景色 */
    --bg0: var(--color-gray-50);
    --bg1: var(--color-gray-100);
    --bg2: var(--color-white);
    
    /* 文本色 */
    --text: var(--color-gray-900);
    --text-secondary: var(--color-gray-600);
    --text-muted: var(--color-gray-500);
    
    /* 边框色 */
    --border: var(--color-gray-200);
    --border-dark: var(--color-gray-300);
    
    /* 阴影 */
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    
    /* 圆角 */
    --radius: 18px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    
    /* 按钮样式 */
    --btn-primary: var(--color-gray-800);
    --btn-primary-hover: var(--color-gray-700);
    --btn-primary-disabled: var(--color-gray-300);
    --btn-text: var(--color-white);
    --btn-text-disabled: var(--color-gray-500);
    
    /* Element Plus 变量覆盖 */
    --el-color-primary: var(--btn-primary);
    --el-bg-color: var(--bg0);
    --el-text-color-primary: var(--text);
    --el-border-radius-base: var(--radius-md);
}

:root[data-theme='ocean'] {
    --color-black: #0f172a;
    --color-white: #f8fbff;
    --color-gray-50: #f2f7ff;
    --color-gray-100: #e0ecff;
    --color-gray-200: #c7dcff;
    --color-gray-300: #a5c3f7;
    --color-gray-400: #7ea3e7;
    --color-gray-500: #5a81c9;
    --color-gray-600: #4b6ea7;
    --color-gray-700: #3b5f97;
    --color-gray-800: #2e4f82;
    --color-gray-900: #22446f;
    --color-warning: #3b82f6;
    --color-warning-dark: #1d4ed8;
    --color-warning-light: #dbeafe;
    --color-warning-lighter: #eff6ff;
    --shadow: 0 8px 24px rgba(31, 54, 95, 0.12);
    --shadow-lg: 0 12px 36px rgba(31, 54, 95, 0.18);
}

:root[data-theme='sakura'] {
    --color-black: #4e2d3a;
    --color-white: #fffafc;
    --color-gray-50: #fff4f8;
    --color-gray-100: #ffe7ef;
    --color-gray-200: #ffd4e2;
    --color-gray-300: #ffbdd2;
    --color-gray-400: #ee97b6;
    --color-gray-500: #d8769c;
    --color-gray-600: #bc5d82;
    --color-gray-700: #9f496c;
    --color-gray-800: #823b58;
    --color-gray-900: #6b3048;
    --color-warning: #f472b6;
    --color-warning-dark: #be185d;
    --color-warning-light: #fce7f3;
    --color-warning-lighter: #fff1f7;
    --shadow: 0 8px 24px rgba(159, 73, 108, 0.14);
    --shadow-lg: 0 12px 36px rgba(159, 73, 108, 0.2);
}

:root[data-theme='lavender'] {
    --color-black: #3f3355;
    --color-white: #fcfaff;
    --color-gray-50: #f7f2ff;
    --color-gray-100: #eee5ff;
    --color-gray-200: #dfd0ff;
    --color-gray-300: #ccb6f7;
    --color-gray-400: #ad93e5;
    --color-gray-500: #9174cf;
    --color-gray-600: #785db3;
    --color-gray-700: #614894;
    --color-gray-800: #503a79;
    --color-gray-900: #433161;
    --color-warning: #a855f7;
    --color-warning-dark: #7e22ce;
    --color-warning-light: #f3e8ff;
    --color-warning-lighter: #faf5ff;
    --shadow: 0 8px 24px rgba(97, 72, 148, 0.14);
    --shadow-lg: 0 12px 36px rgba(97, 72, 148, 0.2);
}

:root[data-theme='peach'] {
    --color-black: #5a3c33;
    --color-white: #fffaf7;
    --color-gray-50: #fff5ef;
    --color-gray-100: #ffe8dc;
    --color-gray-200: #ffd6c2;
    --color-gray-300: #ffbea0;
    --color-gray-400: #f6a27f;
    --color-gray-500: #e28462;
    --color-gray-600: #c96b4b;
    --color-gray-700: #a8573e;
    --color-gray-800: #894736;
    --color-gray-900: #6f3a2e;
    --color-warning: #fb7185;
    --color-warning-dark: #e11d48;
    --color-warning-light: #ffe4e6;
    --color-warning-lighter: #fff1f2;
    --shadow: 0 8px 24px rgba(169, 87, 62, 0.14);
    --shadow-lg: 0 12px 36px rgba(169, 87, 62, 0.2);
}

:root[data-theme='mint'] {
    --color-black: #2f4b47;
    --color-white: #f8fffd;
    --color-gray-50: #effcf7;
    --color-gray-100: #dcf7ed;
    --color-gray-200: #bfeeda;
    --color-gray-300: #99e0c2;
    --color-gray-400: #6fcaa4;
    --color-gray-500: #4eae87;
    --color-gray-600: #3b9270;
    --color-gray-700: #2f775c;
    --color-gray-800: #265f4b;
    --color-gray-900: #214f3e;
    --color-warning: #2dd4bf;
    --color-warning-dark: #0f766e;
    --color-warning-light: #ccfbf1;
    --color-warning-lighter: #f0fdfa;
    --shadow: 0 8px 24px rgba(47, 119, 92, 0.14);
    --shadow-lg: 0 12px 36px rgba(47, 119, 92, 0.2);
}

/* 统一黑白灰主题 */
/* 移除其他彩色主题，只保留黑白灰基础配色 */
*, *::before, *::after {
    box-sizing: border-box;
}

/* 隐藏所有元素的滚动条，但保留滚动功能 */
::-webkit-scrollbar {
    display: none;
}
* {
    scrollbar-width: none; /* Firefox */
}

html {
    overflow-x: hidden;
    max-width: 100%;
}
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, var(--bg0), var(--bg1));
    color: var(--text);
    height: 100vh;
    height: 100dvh;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    touch-action: pan-y;
}
#app {
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    overflow: hidden;
}

/* 布局 */
.top-shell {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255,255,255,0.9);
}
.main-container {
    flex: 1;
    padding: 5px;
    gap: 12px;
    max-width: 100%;
    overflow: hidden;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
.col-left { display: none; }
.col-center { width: 100%; display: flex; flex-direction: column; min-width: 0; overflow: hidden; height: 100%; }
.col-right { width: 100%; display: flex; flex-direction: column; gap: 12px; }

/* 卡片通用样式 */
.custom-card {
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex; flex-direction: column;
    overflow: hidden;
    position: relative;
}
.card-header {
    padding: 10px 14px; border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex; justify-content: space-between; align-items: center;
    font-weight: bold; 
    background: rgba(255,255,255,0.9);
    position: sticky; top: 0; z-index: 10;
}
.card-body { padding: 10px 14px; flex: 1; overflow-y: auto; }

/* 剧情区域 */
.story-container {
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
.story-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.story-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 12px;
    margin-bottom: 24px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    color: var(--story-text-color, var(--text));
    box-shadow: var(--shadow);
}
.story-card-choice {
    background: var(--color-white);
    color: var(--color-gray-700);
    font-weight: 600;
    box-shadow: var(--shadow);
}
.story-card-choice blockquote { margin: 0; padding: 0; }
.story-card-choice blockquote p { margin: 0; }
.story-card-choice p { margin: 0; }
.story-card .highlight-quote {
    background: var(--color-gray-200);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
    color: var(--color-gray-800);
}
.story-card .npc-card .highlight-quote {
    color: #F37021;
}
.story-card:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }

html.mobile-browser .story-card {
    transition: none;
}
html.mobile-browser .story-card:hover {
    transform: none;
}

html.edge-mobile body {
    background: var(--bg0);
}
html.edge-mobile .custom-card {
    box-shadow: none;
    border-width: 1px;
}
html.edge-mobile .story-card {
    box-shadow: none !important;
    transition: none;
}
html.edge-mobile .story-card:hover {
    transform: none;
}

html.quark-mobile .custom-card {
    box-shadow: none;
    border-width: 1px;
}
html.quark-mobile .story-card {
    box-shadow: none !important;
    transition: none;
}
html.quark-mobile .story-card:hover {
    transform: none;
}
.el-button--primary,
.el-button--danger {
    background: linear-gradient(90deg, var(--color-gray-800), var(--color-gray-600));
    border-color: var(--color-gray-800);
    color: var(--color-white);
}
.el-button--primary:not(.is-disabled):hover,
.el-button--danger:not(.is-disabled):hover {
    filter: brightness(1.05);
}
.el-button.is-disabled,
.el-button.is-disabled:focus,
.el-button.is-disabled:hover {
    background: var(--color-gray-300) !important;
    border-color: var(--color-gray-300) !important;
    color: var(--color-gray-500) !important;
    cursor: not-allowed;
    box-shadow: none;
}

/* 选项按钮与底部浮动输入 */
.choice-panel { padding-top: 4px; margin-bottom: 6px; }
.choice-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--color-gray-600);
    font-weight: 600;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    transition: all 0.15s ease;
    user-select: none;
}
.choice-panel-header:hover {
    background: var(--color-gray-100);
    color: var(--color-gray-800);
}
.choice-panel-header:active {
    background: var(--color-gray-200);
}
.choice-panel-header.expanded {
    background: var(--color-gray-100);
    color: var(--color-gray-800);
}
.choice-list { display: flex; flex-direction: column; gap: 4px; overflow: hidden; }
.choice-list-enter-active {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top;
}
.choice-list-leave-active {
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top;
}
.choice-list-enter-from {
    opacity: 0;
    max-height: 0;
    transform: scaleY(0);
}
.choice-list-enter-to {
    opacity: 1;
    max-height: 500px;
    transform: scaleY(1);
}
.choice-list-leave-to {
    opacity: 0;
    max-height: 0;
    transform: scaleY(0);
}
.choice-list .el-button + .el-button { margin-left: 0 !important; }
.choice-btn {
    width: 100%;
    text-align: left;
    white-space: normal;
    height: auto;
    padding: 8px 10px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    justify-content: flex-start;
}
.choice-btn:hover { border-color: var(--color-gray-400); background: var(--color-gray-50); }
.choice-key {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid var(--color-gray-300);
    background: var(--color-gray-100);
    font-size: 11px;
    color: var(--color-gray-500);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 8px;
}
.choice-text {
    flex: 1;
    font-size: 12px;
    color: var(--color-gray-800);
}
.story-input-bar {
    position: sticky;
    bottom: 0;
    z-index: 5;
    padding: 8px 0 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.96));
}
.story-input-bar-mobile {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 65px; /* 与底部导航栏完全贴合 */
    z-index: 100;
    padding: 10px 12px 8px;
    background: rgba(255,255,255,0.97);
    border-radius: 0;
    border-top: 1px solid var(--color-gray-200);
    border-left: none;
    border-right: none;
    border-bottom: none;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.04);
    max-height: 50vh;
    overflow-y: auto;
}
.story-input-bar-mobile .choice-panel {
    max-height: 200px;
    overflow-y: auto;
}
.story-input-bar-mobile .choice-list {
    max-height: 160px;
    overflow-y: auto;
}

/* 响应式 - 强制手机视图 */
.mobile-tabs {
    display: block !important;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(221, 221, 221, 0.96);
    border-top: 1px solid rgba(0,0,0,0.05);
    z-index: 99;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.05);
}
.col-right .el-tabs__header { display: none; }
.col-right .el-tabs__content { border-top: none; }
.story-container { overflow-y: visible; }
.connect-scroll {
    padding-bottom: 24px;
}
.mobile-round-bar {
    display: flex;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    justify-content: center;
    font-size: 12px;
    color: var(--color-gray-500);
}
.mobile-round-bar-inner {
    width: 100%;
    max-width: 700px;
    padding: 0 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.connect-scroll {
    padding-bottom: calc(120px + env(safe-area-inset-bottom));
}
.mobile-tabs-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}
.mobile-tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--color-gray-500);
    padding: 4px 0;
    border-radius: 999px;
}
.mobile-tab-icon {
    font-size: 18px;
    margin-bottom: 2px;
}
.mobile-tab-item-active {
    color: var(--color-gray-800);
    background: none;
}



/* 动画与过渡 */
.fade-enter-active, .fade-leave-active { transition: opacity 0.3s; }
.fade-enter-from, .fade-leave-to { opacity: 0; }

/* 杂项 */
.stat-row { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 14px; }
.tag-group { display: flex; flex-wrap: wrap; gap: 4px; }
.scroll-fab {
    position: fixed;
    right: 100px;
    bottom: calc(28px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 120;
}
.scroll-fab-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--color-gray-400);
    background: linear-gradient(90deg, var(--color-gray-700), var(--color-gray-500));
    color: var(--color-white);
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
.scroll-fab-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}
.scroll-fab-btn:active {
    transform: translateY(0) scale(0.96);
    box-shadow: 0 3px 8px rgba(0,0,0,0.16);
}
.scroll-fab-btn:focus-visible {
    outline: 2px solid var(--color-gray-400);
    outline-offset: 2px;
}
@keyframes fab-ripple {
    0% { opacity: 0.35; transform: scale(0.2); }
    100% { opacity: 0; transform: scale(1.6); }
}
.scroll-fab-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255,255,255,0.55);
    opacity: 0;
    transform: scale(0.2);
    pointer-events: none;
}
.scroll-fab-btn:active::after {
    animation: fab-ripple 0.35s ease-out;
}
.scroll-fab {
    right: 30px;
    bottom: calc(56px + 170px + env(safe-area-inset-bottom));
}
.scroll-fab-btn {
    background: var(--color-gray-100);
    box-shadow: none;
    color: var(--color-gray-600);
}
/* 左侧面板特定样式还原 */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 4px;
}
.stat-box {
    background: rgba(255,255,255,0.5);
    border: 1px solid var(--color-gray-300);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-box .label { font-size: 12px; color: var(--color-gray-500); }
.stat-box .value { font-size: 16px; font-weight: bold; color: var(--text); }

@keyframes thought-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.thought-loading-icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--color-gray-300);
    border-top-color: var(--color-gray-700);
    animation: thought-spin 0.8s linear infinite;
}
.thought-line {
    margin: 8px 0 60px;
    text-align: center;
    font-size: 11px;
    color: var(--color-gray-500);
    position: relative;
}
.thought-line::before {
    display: none;
}
.thought-line-inner {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 6px;
    background: var(--color-gray-50);
}
.initial-loading-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    z-index: 20;
}
.initial-loading-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.95);
    border: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow);
}
.initial-loading-text {
    font-size: 13px;
    color: var(--color-gray-700);
}

/* 关键事件弹框整体居中 */
.el-overlay-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
}
.el-overlay-dialog .el-dialog {
    margin: 0;
}

.keyevent-dialog .el-dialog__header {
    margin: 0;
    padding: 12px 16px 8px;
    border-bottom: none;
}
.keyevent-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.keyevent-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.keyevent-header-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-gray-300), var(--color-gray-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.keyevent-header-title {
    font-size: 14px;
    font-weight: 600;
}
.keyevent-header-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    font-size: 11px;
    color: var(--color-gray-500);
}
.keyevent-tag {
    padding: 2px 6px;
    border-radius: 999px;
    background: var(--color-gray-200);
    color: var(--color-gray-700);
}
.keyevent-round {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.keyevent-round-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gray-400);
}
.keyevent-dialog .el-dialog__body {
    padding: 8px 16px 16px;
}
.keyevent-body {
    font-size: 14px;
    line-height: 1.6;
}
.keyevent-title-line {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}
.keyevent-title-icon {
    font-size: 16px;
}
.keyevent-title-text {
    font-size: 15px;
    font-weight: 600;
}
.keyevent-desc-box {
    margin-top: 4px;
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--color-gray-100);
    color: var(--color-gray-800);
    white-space: pre-wrap;
}
.keyevent-footer {
    margin-top: 16px;
    text-align: center;
}
.keyevent-close-btn {
    width: 100%;
    border-radius: 999px;
}
.settings-dialog {
    max-width: 520px;
}
.settings-section {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--color-gray-100);
    border: 1px solid var(--color-gray-200);
    color: var(--color-gray-800);
}
.settings-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
}
.settings-section-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}
.settings-chip {
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid var(--color-gray-300);
    font-size: 11px;
    color: var(--color-gray-600);
}
.settings-subtext {
    font-size: 11px;
    color: var(--color-gray-500);
    margin-top: 4px;
}
.settings-mode-group {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.settings-mode-item {
    flex: 1;
}
.settings-tip {
    margin-top: 10px;
    font-size: 11px;
    color: var(--color-gray-500);
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.settings-footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 8px;
}

.imm-alert {
    background: var(--bg0);
    border: 1px solid var(--neon);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.imm-alert-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gray-600);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.imm-purchase-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.imm-purchase-text {
    font-size: 13px;
    color: var(--muted);
}
.imm-purchase-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(90deg, var(--color-gray-700), var(--color-gray-500));
    color: var(--color-white);
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
}
.imm-price-card {
    margin-top: 8px;
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--color-gray-300);
}
.imm-price-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 8px;
}
.imm-price-details {
    font-size: 12px;
    color: var(--color-gray-600);
}
.imm-price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 6px;
}
.imm-price-grid > div {
    border-radius: 12px;
    padding: 10px 8px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.imm-price-grid > div:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--color-gray-500);
}
.imm-code-box {
    border: 1px dashed var(--neon);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 16px;
    background: var(--color-gray-100);
    position: relative;
}
.imm-code-label {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg0);
    padding: 0 8px;
    color: var(--color-gray-600);
    font-size: 12px;
    font-weight: bold;
}
.imm-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 14px;
    text-align: center;
    padding: 6px 4px;
}
.imm-input::placeholder {
    color: var(--color-gray-400);
}
.imm-error-msg {
    margin-bottom: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    background: var(--color-gray-100);
    color: var(--color-gray-800);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.imm-bottom-btns {
    max-width: 360px;
    margin: 0 auto;
}
.imm-btn-primary {
    background: linear-gradient(90deg, var(--color-gray-800), var(--color-gray-600));
    border: none;
    color: var(--color-white);
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    width: 100%;
    display: block;
}
.imm-btn-primary:hover {
    filter: brightness(1.05);
}
.imm-purchase-btn:disabled,
.imm-btn-primary:disabled {
    background: var(--color-gray-300);
    color: var(--color-gray-500);
    cursor: not-allowed;
    filter: none;
    transform: none;
}
.imm-btn-outline:disabled {
    border-color: var(--color-gray-300);
    color: var(--color-gray-500);
    cursor: not-allowed;
}

/* NPC Profile Card Styles */
.npc-profile-card {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: var(--color-gray-700);
    background: var(--color-gray-100); /* 浅灰色背景，突出白色卡片 */
    padding: 12px;
    border-radius: 8px;
    max-height: 60vh;
    overflow-y: auto;
}
.npc-profile-header-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.npc-profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
}
.npc-profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border: 3px solid var(--color-white);
    box-shadow: 0 4px 12px rgba(251, 113, 133, 0.15);
    overflow: hidden;
    flex-shrink: 0;
}
.npc-profile-info {
    flex: 1;
}
.npc-profile-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 4px;
    color: var(--color-gray-800);
}
.npc-profile-meta {
    font-size: 12px;
    color: var(--color-gray-500);
    margin-bottom: 6px;
    display: flex;
    gap: 10px;
}
.npc-profile-identity {
    font-size: 11px;
    color: var(--color-gray-700);
    background: var(--color-gray-200);
    padding: 2px 8px;
    border-radius: 999px;
    display: inline-block;
    font-weight: 500;
}
.npc-profile-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.npc-profile-group {
    background: var(--color-white);
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.npc-profile-section-title {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--color-gray-900);
    display: flex;
    align-items: center;
}
.npc-profile-section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 14px;
    background: var(--color-gray-500);
    margin-right: 8px;
    border-radius: 2px;
}
.npc-profile-row {
    font-size: 13px;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 6px;
    padding-left: 0; /* 移除左padding，因为在卡片里了 */
}
.npc-profile-label {
    color: var(--color-gray-400);
    margin-right: 4px;
}
        .story-input-bar,
        .story-input-bar-mobile {
            z-index: 1 !important;
            margin-top: auto !important;
        }
        
        .mobile-tab-item-active {
            color: var(--color-gray-800) !important;
            background: none !important;
        }
        .mobile-tab-item-active .mobile-tab-icon el-icon {
            color: var(--color-gray-800) !important;
        }
        .mobile-tab-item-active div:last-child {
            color: var(--color-gray-800) !important;
            font-weight: 600;
        }
        
        /* Gacha Styles */
        .gacha-flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            padding: 10px 0;
        }
        .gacha-card-wrapper {
            width: 30%;
            aspect-ratio: 1/1.4;
            perspective: 1000px;
            cursor: pointer;
        }
        .gacha-card-wrapper.char-card-wrapper {
            width: 55%;
            aspect-ratio: auto;
            height: 320px;
            min-height: unset;
        }
        .gacha-card-wrapper.item-card-wrapper {
            width: 55%;
            aspect-ratio: auto;
            height: 320px;
        }
        .gacha-card-only-dialog {
            background: transparent !important;
            box-shadow: none !important;
            border: none !important;
        }
        .gacha-card-only-dialog .el-dialog__header {
            padding: 0 !important;
            margin: 0 !important;
        }
        .gacha-card-only-dialog .el-dialog__title {
            display: none !important;
        }
        .gacha-card-only-dialog .el-dialog__body {
            padding: 0 !important;
            background: transparent !important;
        }
        .gacha-overlay {
            position: fixed;
            inset: 0;
            z-index: 3000;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.45);
        }
        .gacha-overlay-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }
        .gacha-overlay .gacha-flex {
            width: 100%;
        }
        .gacha-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.6s;
            transform-style: preserve-3d;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .gacha-card-wrapper.flipped .gacha-card-inner {
            transform: rotateY(180deg);
        }
        .gacha-face {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 4px;
            box-sizing: border-box;
        }
        .gacha-card-wrapper.char-card-wrapper .gacha-face {
            position: absolute;
            height: 100%;
            min-height: unset;
        }
        .gacha-front {
            background: linear-gradient(135deg, var(--color-gray-700), var(--color-gray-800));
            color: white;
            border: 2px solid var(--color-gray-600);
        }
        .gacha-back {
            background-color: var(--color-white);
            color: black;
            transform: rotateY(180deg);
            border: 2px solid var(--color-gray-300);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            padding: 0 !important;
        }
        .gacha-char-bg {
            background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-50) 100%);
            padding: 8px !important;
            justify-content: flex-start;
            gap: 6px;
            text-align: left;
            align-items: stretch;
            overflow-y: auto !important;
            scrollbar-width: none;
        }
        .gacha-char-bg::-webkit-scrollbar {
            display: none;
        }
        .gacha-char-header {
            display: flex;
            gap: 8px;
            align-items: center;
            padding-bottom: 4px;
            border-bottom: 1px dashed var(--color-gray-200);
            flex-shrink: 0;
        }
        .gacha-char-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--color-gray-100);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            border: 2px solid var(--color-gray-200);
            flex-shrink: 0;
        }
        .gacha-char-basic {
            flex: 1;
            min-width: 0;
        }
        .gacha-char-name-row {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 2px;
        }
        .gacha-char-name {
            font-size: 12px;
            font-weight: bold;
            color: var(--color-gray-700);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .gacha-char-sex, .gacha-char-age {
            font-size: 9px;
            color: var(--color-black);
            font-weight: bold;
            flex-shrink: 0;
        }
        .gacha-char-identity-tag {
            display: inline-block;
            background: var(--color-gray-200);
            color: var(--color-black);
            padding: 1px 5px;
            border-radius: 999px;
            font-size: 8px;
            font-weight: bold;
            white-space: nowrap;
        }
        .gacha-char-section {
            background: var(--color-white);
            border: 1px solid var(--color-gray-200);
            border-radius: 6px;
            padding: 6px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
            margin-bottom: 4px;
            flex-shrink: 0;
        }
        .gacha-char-section-title {
            font-size: 10px;
            font-weight: bold;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 3px;
            color: var(--color-gray-700);
        }
        .gacha-char-section-title::before {
            content: '';
            display: block;
            width: 3px;
            height: 10px;
            background: var(--color-black);
            border-radius: 2px;
        }
        .gacha-char-row {
            font-size: 9px;
            line-height: 1.3;
            margin-bottom: 2px;
            color: var(--color-black);
            display: flex;
        }
        .gacha-char-label {
            color: var(--color-gray-500);
            flex-shrink: 0;
            width: 28px;
        }
        .gacha-char-value {
            flex: 1;
        }
        .gacha-char-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 2px;
            margin-top: 2px;
        }
        .gacha-char-tag {
            background: var(--color-gray-200);
            color: var(--color-black);
            font-size: 8px;
            padding: 0 4px;
            border-radius: 4px;
        }
        .gacha-char-favor {
            font-weight: bold;
            font-size: 11px;
            margin-right: 6px;
            color: var(--color-black) !important;
        }
        .gacha-char-impression {
            background: var(--color-gray-50);
            padding: 4px;
            border-radius: 4px;
            font-style: italic;
            color: var(--color-gray-500);
            margin-top: 2px;
            font-size: 9px;
        }
        .gacha-char-info {
            font-size: 9px;
            line-height: 1.4;
            color: var(--color-black);
            white-space: pre-wrap;
        }
        
        .gacha-header {
            width: 100%;
            padding: 4px 6px;
            color: white;
            font-size: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--color-black) !important;
        }
        .gacha-icon-area {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 4px 0;
        }
        .gacha-avatar-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            background: var(--color-white);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .gacha-item-icon {
            font-size: 32px;
            filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
        }
        .gacha-info-area {
            width: 100%;
            padding: 6px;
            background: rgba(255,255,255,0.9);
            border-top: 1px solid var(--color-gray-200);
        }
        .gacha-name {
            font-size: 12px;
            font-weight: bold;
            margin-bottom: 2px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .gacha-level-badge {
            display: inline-block;
            background: var(--color-gray-100);
            color: var(--color-gray-500);
            font-size: 9px;
            padding: 1px 4px;
            border-radius: 4px;
            margin-bottom: 4px;
        }
        .gacha-desc {
            font-size: 9px;
            color: var(--color-gray-400);
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-align: left;
        }

        /* Zoomed Styles */
        .gacha-zoom-container {
            width: 100%;
        }
        .zoomed-char-bg {
            border: 2px solid;
            border-radius: 12px;
            padding: 16px !important;
            gap: 12px;
            max-height: 70vh;
        }
        .zoomed-avatar {
            width: 60px;
            height: 60px;
            font-size: 32px;
        }
        .zoomed-name {
            font-size: 20px;
        }
        .zoomed-sex, .zoomed-age {
            font-size: 12px;
        }
        .zoomed-tag {
            font-size: 11px;
            padding: 2px 8px;
        }
        .zoomed-section {
            padding: 10px;
            border-radius: 8px;
            margin-bottom: 8px;
        }
        .zoomed-section-title {
            font-size: 14px;
        }
        .zoomed-section-title::before {
            width: 4px;
            height: 14px;
        }
        .zoomed-row {
            font-size: 13px;
            margin-bottom: 6px;
        }
        .zoomed-label {
            width: 45px;
        }
        .zoomed-tags {
            gap: 6px;
        }
        .zoomed-tag-item {
            font-size: 11px;
            padding: 2px 6px;
        }
        .zoomed-favor {
            font-size: 14px;
        }
        .zoomed-impression {
            font-size: 12px;
            padding: 6px;
        }
        .zoomed-info {
            font-size: 13px;
            line-height: 1.6;
        }
        .zoomed-item-bg {
            position: relative;
            transform: none;
            background-color: var(--color-white);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            
            border: 2px solid;
            border-radius: 12px;
            padding: 0 !important;
            min-height: 400px;
            box-sizing: border-box;
        }

        /* Black/White/Gray Theme Override */
        :root {
            --bg0: var(--color-gray-50) !important;
            --bg1: var(--color-gray-100) !important;
            --text: var(--color-gray-900) !important;
            --muted: var(--color-gray-500) !important;
            --neon: var(--color-gray-400) !important;
            --neon2: var(--color-gray-300) !important;
            --danger: var(--color-gray-800) !important;
            --ok: var(--color-gray-600) !important;
            --shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
            --btn-pink: var(--color-gray-800) !important;
            --btn-pink-light: var(--color-gray-600) !important;
            --btn-pink-disabled: var(--color-gray-200) !important;
            --btn-text: var(--color-white) !important;
            --btn-text-disabled: var(--color-gray-400) !important;
            --el-color-primary: var(--btn-pink) !important;
            --el-color-success: var(--color-gray-600) !important;
            --el-color-warning: var(--color-gray-500) !important;
            --el-color-danger: var(--color-gray-800) !important;
            --el-color-info: var(--color-gray-400) !important;
            --el-color-error: var(--color-gray-800) !important;
            --el-bg-color: var(--bg0) !important;
            --el-text-color-primary: var(--text) !important;
            --story-text-color: var(--color-gray-900) !important;
        }

        :root[data-theme='ocean'] {
            --bg0: #f2f7ff !important;
            --bg1: #e0ecff !important;
            --bg2: #f8fbff !important;
            --text: #22446f !important;
            --text-secondary: #3b5f97 !important;
            --text-muted: #5a81c9 !important;
            --muted: #5a81c9 !important;
            --neon: #7ea3e7 !important;
            --neon2: #c7dcff !important;
            --danger: #2e4f82 !important;
            --ok: #4b6ea7 !important;
            --btn-pink: #2e4f82 !important;
            --btn-pink-light: #4b6ea7 !important;
            --btn-pink-disabled: #c7dcff !important;
            --btn-text: #f8fbff !important;
            --btn-text-disabled: #5a81c9 !important;
            --el-color-primary: #2e4f82 !important;
            --el-color-success: #4b6ea7 !important;
            --el-color-warning: #3b82f6 !important;
            --el-color-danger: #2e4f82 !important;
            --el-color-info: #7ea3e7 !important;
            --el-color-error: #2e4f82 !important;
            --el-bg-color: var(--bg0) !important;
            --el-text-color-primary: var(--text) !important;
            --story-text-color: #315987 !important;
        }

        :root[data-theme='sakura'] {
            --bg0: #fff4f8 !important;
            --bg1: #ffe7ef !important;
            --bg2: #fffafc !important;
            --text: #6b3048 !important;
            --text-secondary: #9f496c !important;
            --text-muted: #d8769c !important;
            --muted: #d8769c !important;
            --neon: #ee97b6 !important;
            --neon2: #ffd4e2 !important;
            --danger: #823b58 !important;
            --ok: #bc5d82 !important;
            --btn-pink: #9f496c !important;
            --btn-pink-light: #bc5d82 !important;
            --btn-pink-disabled: #ffd4e2 !important;
            --btn-text: #fffafc !important;
            --btn-text-disabled: #d8769c !important;
            --el-color-primary: #9f496c !important;
            --el-color-success: #bc5d82 !important;
            --el-color-warning: #f472b6 !important;
            --el-color-danger: #823b58 !important;
            --el-color-info: #ee97b6 !important;
            --el-color-error: #823b58 !important;
            --el-bg-color: var(--bg0) !important;
            --el-text-color-primary: var(--text) !important;
            --story-text-color: #8d4561 !important;
        }

        :root[data-theme='lavender'] {
            --bg0: #f7f2ff !important;
            --bg1: #eee5ff !important;
            --bg2: #fcfaff !important;
            --text: #433161 !important;
            --text-secondary: #614894 !important;
            --text-muted: #9174cf !important;
            --muted: #9174cf !important;
            --neon: #ad93e5 !important;
            --neon2: #dfd0ff !important;
            --danger: #503a79 !important;
            --ok: #785db3 !important;
            --btn-pink: #614894 !important;
            --btn-pink-light: #785db3 !important;
            --btn-pink-disabled: #dfd0ff !important;
            --btn-text: #fcfaff !important;
            --btn-text-disabled: #9174cf !important;
            --el-color-primary: #614894 !important;
            --el-color-success: #785db3 !important;
            --el-color-warning: #a855f7 !important;
            --el-color-danger: #503a79 !important;
            --el-color-info: #ad93e5 !important;
            --el-color-error: #503a79 !important;
            --el-bg-color: var(--bg0) !important;
            --el-text-color-primary: var(--text) !important;
            --story-text-color: #59427f !important;
        }

        :root[data-theme='peach'] {
            --bg0: #fff5ef !important;
            --bg1: #ffe8dc !important;
            --bg2: #fffaf7 !important;
            --text: #6f3a2e !important;
            --text-secondary: #a8573e !important;
            --text-muted: #e28462 !important;
            --muted: #e28462 !important;
            --neon: #f6a27f !important;
            --neon2: #ffd6c2 !important;
            --danger: #894736 !important;
            --ok: #c96b4b !important;
            --btn-pink: #a8573e !important;
            --btn-pink-light: #c96b4b !important;
            --btn-pink-disabled: #ffd6c2 !important;
            --btn-text: #fffaf7 !important;
            --btn-text-disabled: #e28462 !important;
            --el-color-primary: #a8573e !important;
            --el-color-success: #c96b4b !important;
            --el-color-warning: #fb7185 !important;
            --el-color-danger: #894736 !important;
            --el-color-info: #f6a27f !important;
            --el-color-error: #894736 !important;
            --el-bg-color: var(--bg0) !important;
            --el-text-color-primary: var(--text) !important;
            --story-text-color: #985543 !important;
        }

        :root[data-theme='mint'] {
            --bg0: #effcf7 !important;
            --bg1: #dcf7ed !important;
            --bg2: #f8fffd !important;
            --text: #214f3e !important;
            --text-secondary: #2f775c !important;
            --text-muted: #4eae87 !important;
            --muted: #4eae87 !important;
            --neon: #6fcaa4 !important;
            --neon2: #bfeeda !important;
            --danger: #265f4b !important;
            --ok: #3b9270 !important;
            --btn-pink: #2f775c !important;
            --btn-pink-light: #3b9270 !important;
            --btn-pink-disabled: #bfeeda !important;
            --btn-text: #f8fffd !important;
            --btn-text-disabled: #4eae87 !important;
            --el-color-primary: #2f775c !important;
            --el-color-success: #3b9270 !important;
            --el-color-warning: #2dd4bf !important;
            --el-color-danger: #265f4b !important;
            --el-color-info: #6fcaa4 !important;
            --el-color-error: #265f4b !important;
            --el-bg-color: var(--bg0) !important;
            --el-text-color-primary: var(--text) !important;
            --story-text-color: #2a6a53 !important;
        }

        body {
            background: linear-gradient(180deg, var(--bg0), var(--bg1)) !important;
            color: var(--text) !important;
        }
        
        .custom-card {
             background: rgba(255, 255, 255, 0.95) !important;
             border: 2px solid var(--color-gray-300) !important;
             box-shadow: var(--shadow) !important;
        }
        .tab-card-borderless {
             border: none !important;
             box-shadow: none !important;
        }
        
        .story-card-choice {
            border: none !important;
            background: transparent !important;
            padding: 0 !important;
            box-shadow: none !important;
        }
        .story-card-choice .user-action-row {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 8px;
        }
        .story-card-choice .user-action-bubble {
            max-width: min(70%, 420px);
            background: linear-gradient(135deg, var(--color-gray-200) 0%, var(--color-gray-300) 100%);
            color: var(--color-gray-800);
            border-radius: 12px;
            padding: 8px 12px;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.45;
            word-break: break-word;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            text-align: left;
            position: relative;
        }
        .story-card-choice .user-action-bubble::after {
            content: '';
            position: absolute;
            right: -7px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            border-left: 8px solid var(--color-gray-300);
        }
        .story-card-choice .user-action-avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            overflow: hidden;
            border: 1px solid var(--color-gray-300);
            background: var(--color-white);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .choice-key {
             border: 1px solid var(--color-gray-400) !important;
             background: var(--color-gray-100) !important;
             color: var(--color-gray-800) !important;
        }
        
        .choice-panel-header {
            color: var(--color-gray-800) !important;
        }
        
        .choice-panel-header:hover {
            background: rgba(0, 0, 0, 0.05) !important;
            color: var(--color-black)000 !important;
        }

        .choice-panel-header.expanded {
            background: rgba(0, 0, 0, 0.1) !important;
            color: var(--color-black)000 !important;
        }

        .thought-loading-icon {
            border-top-color: var(--color-gray-800) !important;
        }

        .thought-finished {
            animation: fadeIn 0.5s ease-in-out;
        }

        .thought-text-finished {
            animation: slideIn 0.5s ease-in-out;
            color: var(--color-gray-600);
            font-weight: 500;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .initial-loading-text {
            color: var(--color-gray-800) !important;
        }
        
        .mobile-tab-item-active {
            color: var(--color-gray-800) !important;
            background: none !important;
        }
        
        .keyevent-tag {
            background: var(--color-gray-100) !important;
            color: var(--color-gray-800) !important;
        }
        
        .keyevent-round-dot {
            background: var(--color-gray-400) !important;
        }
        
        .keyevent-desc-box {
            background: var(--color-gray-50) !important;
            color: var(--color-black)000 !important;
        }

        .npc-profile-identity {
             color: var(--color-gray-800) !important;
             background: var(--color-gray-100) !important;
        }

        .scroll-fab-btn {
            border: 1px solid var(--color-gray-400) !important;
            background: linear-gradient(90deg, var(--color-gray-800), var(--color-gray-600)) !important;
            color: var(--color-white)fff !important;
            width: 40px !important;
            height: 40px !important;
            padding: 0 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            line-height: 1 !important;
        }
        .draw-fab-btn {
            border: 1px solid var(--color-gray-400) !important;
            background: linear-gradient(90deg, var(--color-gray-700), var(--color-gray-500)) !important;
            color: var(--color-white) !important;
            width: 40px !important;
            height: 40px !important;
            padding: 0 !important;
            border-radius: 50%;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            font-size: 12px !important;
            font-weight: 700 !important;
            line-height: 1 !important;
        }

        .scroll-fab-btn:hover {
            transform: scale(1.1);
        }
        
        /* 浮动选项按钮样式 */
        .floating-choice-container {
            position: fixed;
            bottom: 130px;
            right: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 8px;
        }

        .npc-item-click:hover {
            transform: translateY(-2px);
        }
        .npc-item-click:active {
            transform: scale(0.95);
        }

        /* 微信通讯录模式样式 */
        .wechat-contact-item {
            display: flex;
            align-items: center;
            padding: 8px 16px;
            cursor: pointer;
            transition: background 0.2s;
            background: var(--color-white);
        }
        .wechat-contact-item:hover {
            background-color: var(--color-gray-100);
        }
        .wechat-contact-item:active {
            background-color: var(--color-gray-200);
        }
        .wechat-contact-inner {
            flex: 1;
            margin-left: 12px;
            border-bottom: 1px solid var(--color-gray-100);
            padding: 10px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .wechat-contact-item:last-child .wechat-contact-inner {
            border-bottom: none;
        }
        .wechat-contact-avatar {
            width: 40px;
            height: 40px;
            border-radius: 4px;
            overflow: hidden;
            background: var(--color-gray-200);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--color-gray-100);
        }
        .wechat-contact-name {
            font-size: 16px;
            color: var(--color-black);
            font-weight: 500;
        }
        .wechat-contact-favor {
            font-size: 12px;
            color: var(--color-gray-400);
        }
        .wechat-group-header {
            padding: 4px 16px;
            background: var(--color-gray-100);
            color: var(--color-gray-400);
            font-size: 12px;
            font-weight: bold;
        }

        /* 道具卡扁平化样式 */
        .item-card-flat {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 12px;
            position: relative;
            transition: all 0.2s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            box-sizing: border-box;
            box-shadow: var(--shadow);
        }
        .item-card-flat:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        .floating-header-actions-panel .el-button {
            --el-component-size-small: 26px;
            font-size: 11px;
            padding: 5px 8px;
            width: 108px !important;
            min-width: 108px !important;
            max-width: 108px !important;
            display: flex !important;
            justify-content: center !important;
            box-sizing: border-box !important;
            margin: 0 !important;
        }

        .map-icon-hover:hover {
            transform: scale(1.2) rotate(10deg);
            border-color: var(--color-gray-600) !important;
        }
        .map-location-point {
            transition: all 0.5s ease-out;
        }

        /* 设置页面扁平化重构样式 */
        .flat-settings-group {
            background: var(--color-white);
            border-radius: 16px;
            padding: 16px;
            margin-bottom: 16px;
            border: 1px solid var(--color-gray-100);
        }
        .flat-settings-title {
            font-size: 14px;
            font-weight: bold;
            color: var(--color-gray-700);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .flat-settings-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--color-gray-50);
        }
        .flat-settings-row:last-child {
            border-bottom: none;
        }
        .flat-settings-label {
            font-size: 13px;
            color: var(--color-gray-500);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .flat-settings-value {
            font-size: 13px;
            color: var(--color-gray-700);
            font-family: SFMono-Regular, Menlo, monospace;
        }
        .flat-mode-selector {
            background: var(--color-gray-100);
            padding: 4px;
            border-radius: 10px;
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
        }
        .flat-mode-item {
            flex: 1;
            text-align: center;
            padding: 8px 0;
            font-size: 13px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            color: var(--color-gray-400);
        }
        .flat-mode-item-active {
            background: var(--color-white);
            color: var(--color-black);
            font-weight: bold;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }

        .phone-fab-btn {
            position: fixed;
            right: 20px;
            bottom: calc(100px + env(safe-area-inset-bottom));
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: var(--color-gray-700);
            border: 2px solid var(--color-white);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            color: var(--color-white);
            padding: 0;
            line-height: 1;
        }
        .phone-fab-btn:hover {
            transform: scale(1.1) rotate(5deg);
            background: var(--color-gray-600);
        }
        .phone-fab-btn:active {
            transform: scale(0.9);
        }

        .phone-badge :deep(.el-badge__content) {
            background-color: var(--color-gray-700);
            border: 1px solid var(--color-white);
            top: 2px;
            right: 2px;
        }

        .floating-choice-toggle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--color-gray-700);
            color: white;
            border: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s, background-color 0.2s;
            padding: 0;
            line-height: 1;
        }

        .floating-choice-toggle .el-icon,
        .scroll-fab-btn .el-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .floating-choice-toggle:hover {
            transform: scale(1.1);
            background-color: var(--color-black);
        }
        .floating-header-actions-panel {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 10px;
            border-radius: 12px;
            background: rgba(255,255,255,0.98);
            border: 1px solid var(--color-gray-200);
            box-shadow: 0 6px 18px rgba(0,0,0,0.14);
            width: 128px;
            box-sizing: border-box;
        }
        
        .init-slider-item {
            margin-bottom: 12px;
        }
        
        .init-slider-item .el-form-item__label {
            line-height: 24px;
            padding-bottom: 2px;
            display: none;
        }
        
        .init-slider-item .el-slider__runway {
            margin: 8px 0;
            height: 8px;
            background-color: var(--color-gray-100);
        }

        .init-slider-item .el-slider__bar {
            background-color: var(--color-gray-700);
            height: 8px;
        }

        .init-slider-item .el-slider__button {
            border-color: var(--color-gray-700);
            width: 14px;
            height: 14px;
        }

        .init-slider-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            margin-bottom: 2px;
        }
        
        .init-slider-val {
            font-size: 13px;
            font-weight: bold;
            color: var(--color-black);
        }
        
        .init-slider-tag {
            background: var(--color-gray-100);
            color: var(--color-gray-500);
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 11px;
            margin-right: 8px;
        }

        .floating-choice-panel {
            position: absolute;
            right: 58px;
            bottom: 0;
            background: white;
            border-radius: 12px;
            padding: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            margin-bottom: 0;
            max-width: calc(100vw - 90px);
            width: max-content;
            max-height: 40vh;
            overflow-y: auto;
            overflow-x: hidden; /* 禁止左右滑动 */
            border: 1px solid var(--color-gray-200);
        }

        /* 手机端选项面板优化 */
        @media (max-width: 768px) {
            .floating-choice-panel {
                right: 48px;
                padding: 8px 10px;
                border-radius: 10px;
                max-height: 35vh;
                max-width: calc(100vw - 70px);
            }

            .floating-choice-panel .route-tag {
                padding: 1px 5px !important;
                font-size: 9px !important;
                border-radius: 3px !important;
            }

            .floating-choice-panel .choice-line-item {
                padding: 6px 8px !important;
                gap: 6px !important;
                border-radius: 6px !important;
            }

            .floating-choice-panel .choice-line-item > div:nth-child(2) {
                font-size: 12px !important;
                line-height: 1.3 !important;
            }
        }
        
        /* Overriding gradients and specific colors */
        .header-id-edit {
             background-color: var(--color-gray-100) !important;
             color: var(--color-gray-600) !important;
        }

        /* Settings Page Styles from shezhi-connect.html */
        .settings-card {
            background: rgba(255,255,255,0.95);
            padding: 16px;
            border-radius: 16px;
            width: 100%;
            max-width: 100%; /* Adapted for embedded view */
            margin: 0 auto;
            height: auto;
            color: var(--text);
            border: none;
            box-sizing: border-box;
        }
        .imm-alert {
            background: var(--bg0);
            border: 1px solid var(--color-gray-300); /* Changed from var(--neon) */
            border-radius: 8px;
            padding: 8px 12px;
            font-size: 12px;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
        }
        .imm-alert-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--color-gray-600); /* Changed from green */
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
        }
        .imm-purchase-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
        }
        .imm-purchase-text {
            font-size: 13px;
            color: var(--muted);
        }
        .imm-purchase-btn {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 6px 10px;
            border-radius: 999px;
            border: none;
            background: linear-gradient(90deg, var(--color-gray-800), var(--color-gray-600)); /* Changed to gray */
            color: var(--color-white);
            font-size: 12px;
            cursor: pointer;
            text-decoration: none;
        }
        .imm-price-card {
            margin-top: 8px;
            margin-bottom: 12px;
            padding: 10px 12px;
            border-radius: 12px;
            background: rgba(255,255,255,0.9);
            border: 1px solid var(--color-gray-300);
        }
        .imm-price-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            margin-bottom: 8px;
        }
        .imm-price-details {
            font-size: 12px;
            color: var(--color-gray-600);
        }
        .imm-price-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px;
            margin-top: 6px;
        }
        .imm-price-grid > div {
            border-radius: 12px;
            padding: 10px 8px;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .imm-price-grid > div:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-color: var(--color-gray-600);
        }
        .imm-code-box {
            border: 1px dashed var(--color-gray-300);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 16px;
            background: rgba(245, 245, 245, 0.6); /* Changed bg */
            position: relative;
        }
        .imm-code-box--flat {
            border: 1.5px solid var(--color-gray-300);
            border-radius: 10px;
            padding: 12px;
            background: var(--color-white)fff;
        }
        .imm-code-label {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--bg0);
            padding: 0 8px;
            color: var(--color-gray-600);
            font-size: 12px;
            font-weight: bold;
        }
        .setting-profile-panel {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .setting-profile-top {
            display: grid;
            grid-template-columns: 72px minmax(0, 1fr);
            gap: 12px;
            padding: 12px;
            border-radius: var(--radius-md);
            background: var(--color-white);
            box-shadow: var(--shadow);
        }
        .setting-avatar-box {
            border: 1px solid var(--color-gray-200);
            cursor: pointer;
            overflow: hidden;
            position: relative;
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--color-white);
        }
        .setting-profile-fields {
            display: flex;
            flex-direction: column;
            gap: 8px;
            min-width: 0;
        }
        .setting-profile-field {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            font-size: 12px;
        }
        .setting-profile-label {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: var(--color-gray-500);
            flex-shrink: 0;
        }
        .setting-profile-value {
            font-weight: 700;
            color: var(--color-black);
            text-align: right;
            word-break: break-word;
        }
        .setting-progress-block {
            border-radius: var(--radius-md);
            padding: 10px;
            background: var(--color-white);
            box-shadow: var(--shadow);
        }
        .setting-progress-title {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            font-weight: 700;
            color: var(--color-black);
            margin-bottom: 10px;
        }
        .setting-progress-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .setting-progress-item {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .setting-progress-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            font-size: 12px;
        }
        .setting-progress-name {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: var(--color-gray-700);
        }
        .setting-progress-meta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .setting-progress-value {
            min-width: 42px;
            text-align: right;
            font-weight: 700;
            color: var(--color-black);
        }
        .imm-input {
            width: 100%;
            background: transparent;
            border: none;
            outline: none;
            font-size: 14px;
            text-align: center;
            padding: 6px 4px;
        }
        .imm-input::placeholder {
            color: var(--color-gray-400);
        }
        .imm-error-msg {
            margin-bottom: 12px;
            padding: 8px 10px;
            border-radius: 8px;
            background: var(--color-gray-100);
            color: var(--color-gray-800);
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .imm-bottom-btns {
            max-width: 360px;
            margin: 0 auto;
        }
        .imm-btn-primary {
            background: linear-gradient(90deg, var(--color-gray-800), var(--color-gray-600));
            border: none;
            color: var(--color-white)fff;
            padding: 10px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.2s;
            width: 100%;
            display: block;
        }
        .imm-btn-primary:hover {
            filter: brightness(1.05);
        }
        .imm-purchase-btn:disabled,
        .imm-btn-primary:disabled {
            background: var(--color-gray-200);
            color: var(--color-gray-400);
            cursor: not-allowed;
            filter: none;
            transform: none;
        }
        .imm-btn-outline:disabled {
            border-color: var(--color-gray-200);
            color: var(--color-gray-400);
            cursor: not-allowed;
        }

        
        .custom-pink-input .el-input__inner {
            color: var(--color-gray-800) !important;
            font-weight: bold !important;
        }
        .col-right > .custom-card {
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
            padding: 0 !important;
        }
        .col-right .el-tabs--border-card {
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
        }
        .col-right .el-tabs--border-card > .el-tabs__content {
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
            padding: 0 !important;
        }
        .col-right .el-tab-pane {
            background: transparent !important;
        }
        .mobile-tab-surface {
            background: var(--color-gray-100);
            min-height: calc(100vh - 120px);
            min-height: calc(100dvh - 120px);
            padding: 12px;
            padding-bottom: calc(60px + env(safe-area-inset-bottom));
            overflow-y: auto;
            overflow-x: hidden;
            box-sizing: border-box;
        }
        .mobile-tab-card {
            width: 100%;
            min-height: calc(100vh - 144px);
            min-height: calc(100dvh - 144px);
            margin: 0 auto;
            background: var(--color-white);
            border-radius: 8px;
            padding: 16px;
            box-sizing: border-box;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            overflow-x: hidden;
        }
        .mobile-tab-card--two-layer .gacha-char-bg.zoomed-char-bg,
        .mobile-tab-card--two-layer .gacha-char-section.zoomed-section,
        .mobile-tab-card--two-layer .setting-avatar-box,
        .mobile-tab-card--two-layer .imm-alert,
        .mobile-tab-card--two-layer .imm-price-card {
            border: none !important;
            box-shadow: none !important;
            background: transparent !important;
        }
        .mobile-tab-card .settings-card {
            background: transparent;
            border-radius: 0;
            padding: 0;
            box-shadow: none;
        }

/* === 气泡点击交互动画 === */
.bubble-chip {
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 4px;
    padding: 6px 12px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(243,244,246,0.85));
    color: var(--color-gray-800);
    font-size: 12px;
    font-weight: 500;
    box-shadow:
        3px 3px 6px rgba(0,0,0,0.1),
        -2px -2px 4px rgba(255,255,255,0.8),
        inset 0 1px 0 rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.5);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    user-select: none;
    backdrop-filter: blur(4px);
    animation: bubbleGlow 2s ease-in-out infinite;
}

/* 气泡闪烁提示动画 */
@keyframes bubbleGlow {
    0%, 100% {
        box-shadow:
            3px 3px 6px rgba(0,0,0,0.1),
            -2px -2px 4px rgba(255,255,255,0.8),
            inset 0 1px 0 rgba(255,255,255,0.6),
            0 0 0 0 rgba(255,255,255,0);
    }
    50% {
        box-shadow:
            3px 3px 6px rgba(0,0,0,0.1),
            -2px -2px 4px rgba(255,255,255,0.8),
            inset 0 1px 0 rgba(255,255,255,0.6),
            0 0 8px 2px rgba(255,255,255,0.6);
    }
}

.bubble-chip:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        4px 4px 8px rgba(0,0,0,0.12),
        -2px -2px 4px rgba(255,255,255,0.9),
        inset 0 1px 0 rgba(255,255,255,0.6);
    animation: none;
}

.bubble-chip:active {
    transform: translateY(0) scale(0.98);
}

/* 气泡破裂动画 */
.bubble-chip.popping {
    animation: bubblePop 0.4s ease-out forwards;
    pointer-events: none;
}

@keyframes bubblePop {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    30% {
        transform: scale(1.15);
        opacity: 0.9;
    }
    60% {
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* +1 上升动画 */
.bubble-float-text {
    position: fixed;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-gray-800);
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
    pointer-events: none;
    z-index: 9999;
    animation: floatUp 1.2s ease-out forwards;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    20% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translateY(-80px) scale(0.8);
        opacity: 0;
    }
}

/* 气泡破裂粒子效果 */
.bubble-particle {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--color-gray-200), var(--color-gray-300));
    pointer-events: none;
    z-index: 9998;
}

.bubble-particle.particle-1 { animation: particleFly1 0.5s ease-out forwards; }
.bubble-particle.particle-2 { animation: particleFly2 0.5s ease-out forwards; }
.bubble-particle.particle-3 { animation: particleFly3 0.5s ease-out forwards; }
.bubble-particle.particle-4 { animation: particleFly4 0.5s ease-out forwards; }
.bubble-particle.particle-5 { animation: particleFly5 0.5s ease-out forwards; }

@keyframes particleFly1 {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(-20px, -30px) scale(0); opacity: 0; }
}

@keyframes particleFly2 {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(20px, -30px) scale(0); opacity: 0; }
}

@keyframes particleFly3 {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(-15px, -40px) scale(0); opacity: 0; }
}

@keyframes particleFly4 {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(15px, -40px) scale(0); opacity: 0; }
}

@keyframes particleFly5 {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(0, -50px) scale(0); opacity: 0; }
}
