:root {
    /* 电力工业配色 - 赛博朋克强化版 */
    --power-blue: #00c6ff;
    --power-yellow: #ffec00;
    --power-red: #ff0050;
    --power-green: #00ff8d;
    --power-purple: #b967ff;
    --power-cyan: #00fff0;
    --power-magenta: #f03cff;
    
    /* 背景颜色加深 */
    --bg-dark: #050a10;
    --bg-darker: #030708;
    
    /* 字体 */
    --font-cyber: 'Orbitron', sans-serif;
    --font-tech: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: var(--font-cyber);
    overflow: hidden;
    height: 100vh;
    position: relative;
    perspective: 1000px;
}

/* 扫描线效果增强 */
body:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        transparent 50%,
        rgba(0, 198, 255, 0.025) 50%
    );
    background-size: 100% 3px; /* 更细的扫描线 */
    z-index: 1000;
    pointer-events: none;
    animation: scanline 0.4s linear infinite; /* 更快的速度 */
}

/* 添加损坏显示器效果 */
body:after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0) 20%),
        radial-gradient(circle at 80% 20%, rgba(0,198,255,0.03) 0%, rgba(0,0,0,0) 20%);
    pointer-events: none;
    z-index: 1001;
}

/* 背景元素 */
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.8) 0%,
        rgba(7,16,24,0.7) 100%);
    transition: filter 1.5s ease;
    will-change: filter;
}

/* 电路背景元素 */
.circuit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image/circuit_bg.png');
    opacity: 0.05;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* 电网格 */
.power-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 网格线 */
.grid-line {
    position: absolute;
    background-color: rgba(0, 198, 255, 0.1);
    opacity: 0.15;
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 198, 255, 0.2) 20%,
        rgba(0, 198, 255, 0.2) 80%,
        transparent 100%
    );
    box-shadow: 0 0 8px rgba(0, 198, 255, 0.5);
}

.grid-line.vertical {
    width: 1px;
    height: 100%;
    background: linear-gradient(0deg, 
        transparent 0%, 
        rgba(0, 198, 255, 0.2) 20%,
        rgba(0, 198, 255, 0.2) 80%,
        transparent 100%
    );
    box-shadow: 0 0 8px rgba(0, 198, 255, 0.5);
}

/* 粒子系统 */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* 为背景数据粒子添加相同的效果 */
.data-particle {
    position: absolute;
    border-radius: 50%;
    z-index: 3;
    filter: blur(1px);
    mix-blend-mode: screen;
}

.data-particle.power-data {
    background: var(--power-blue);
    box-shadow: 0 0 5px var(--power-blue);
    border-radius: 0;
}

.data-particle.zooming {
    animation: particle-zoom 2s ease-in-out infinite;
}

/* 电力脉冲效果 */
.power-pulse {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(0, 198, 255, 0.8) 0%,
        rgba(0, 198, 255, 0.3) 50%,
        transparent 80%
    );
    filter: blur(8px);
    opacity: 0.5;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* 标题样式 */
.power-cyber-title {
    position: absolute;
    top: 40%; /* 从42%改为40%，整体上移 */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%; /* 从80%增大到85%，增加容器宽度 */
    max-width: 950px; /* 从800px增大到950px */
    height: 320px; /* 从300px增大到320px */
    z-index: 10;
}

.title-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.main-title {
    font-family: var(--font-cyber);
    font-size: 100px; /* 从80px增大到100px */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #ffffff;
    margin: 0;
    line-height: 0.9;
    text-shadow: 
        0 0 15px rgba(0, 198, 255, 0.7),
        0 0 25px rgba(0, 198, 255, 0.5),
        0 0 35px rgba(0, 198, 255, 0.3);
    position: relative;
    transform: skewX(-5deg);
    transition: text-shadow 0.2s ease;
    margin-bottom: 5px;
}

.main-title.highlight {
    color: var(--power-yellow);
    font-size: 120px; /* 从100px增大到120px */
    margin-top: 30px; /* 从40px减小到30px，整体上移 */
    transform: skewX(-10deg);
    filter: drop-shadow(0 0 12px var(--power-yellow));
}

.subtitle {
    font-family: var(--font-tech);
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px; /* 从20px增大到22px */
    letter-spacing: 5px; /* 从4px增大到5px */
    margin-top: 35px; /* 从30px增大到35px */
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

/* 电力工业元素 */
.industry-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

/* 闪电效果 */
.thunder-effect {
    transform-origin: center center;
    animation: thunder-pulse 2s infinite ease-in-out;
}

.left-thunder, .right-thunder {
    max-height: 240px;
    z-index: 25;
    filter: drop-shadow(0 0 15px var(--power-blue));
}

.tower-left-thunder {
    position: absolute;
    left: 3%;
    bottom: 58vh;
    transform: rotate(-15deg);
    max-height: 280px;
    filter: drop-shadow(0 0 15px var(--power-blue));
}

.tower-right-thunder {
    position: absolute;
    right: 3%;
    bottom: 58vh;
    transform: rotate(15deg);
    max-height: 280px;
    filter: drop-shadow(0 0 15px var(--power-blue));
}

@keyframes thunder-pulse {
    0%, 100% { transform: scale(1) rotate(var(--rotation, 0deg)); }
    50% { transform: scale(1.1) rotate(var(--rotation, 0deg)); }
}

/* HUD界面 */
.interface-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hud-container {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
}

.hud-item {
    border-left: 2px solid var(--power-blue);
    padding-left: 15px;
    position: relative;
}

.hud-label {
    font-size: 12px;
    opacity: 0.7;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-tech);
}

.hud-value {
    font-size: 18px;
    letter-spacing: 1px;
    text-shadow: 0 0 5px var(--power-blue);
    color: var(--power-blue);
    font-family: var(--font-cyber);
}

/* HUD消失动画 */
.hud-container.dissolving {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s ease-out, transform 1s ease-out;
}

/* 电力条 */
.power-bar {
    width: 150px;
    height: 6px;
    background-color: rgba(0, 198, 255, 0.2);
    margin-top: 5px;
    overflow: hidden;
}

.power-bar-fill {
    height: 100%;
    width: 10%;
    background-color: var(--power-blue);
    box-shadow: 0 0 10px var(--power-blue);
    transition: width 1.5s ease-out;
}

/* 故障遮罩 */
.glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: linear-gradient(180deg, 
        rgba(255, 0, 80, 0) 0%, 
        rgba(255, 0, 80, 0.2) 50%, 
        rgba(0, 198, 255, 0) 100%);
    mix-blend-mode: screen;
}

/* 圆形控制面板 */
.circular-control {
    position: fixed;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    width: 100px; /* 从120px减小到100px */
    height: 100px; /* 从120px减小到100px */
    z-index: 30;
    pointer-events: auto;
}

.power-ring-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.power-ring-container.cyber-industrial {
    overflow: visible;
}

.power-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.power-ring.cyber-industrial {
    border: none;
    overflow: visible;
}

.ring-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid rgba(0, 198, 255, 0.2);
    background-color: rgba(0, 198, 255, 0.05);
    box-sizing: border-box;
    transition: all 0.5s ease;
}

.ring-track.cyber-industrial {
    background: linear-gradient(135deg, 
        rgba(0, 16, 36, 0.8) 0%,
        rgba(0, 32, 64, 0.6) 50%,
        rgba(0, 16, 36, 0.8) 100%
    );
    border: 2px solid rgba(0, 198, 255, 0.5);
    box-shadow: 
        inset 0 0 15px rgba(0, 198, 255, 0.3),
        0 0 15px rgba(0, 198, 255, 0.2);
}

.ring-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--power-blue);
    box-sizing: border-box;
    animation: rotate 4s linear infinite;
}

.ring-segments {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.segment {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 33%);
    box-sizing: border-box;
}

.segment-1 { transform: rotate(0deg); border-top-color: rgba(0,198,255,0.8); }
.segment-2 { transform: rotate(60deg); border-top-color: rgba(0,198,255,0.6); }
.segment-3 { transform: rotate(120deg); border-top-color: rgba(0,198,255,0.8); }
.segment-4 { transform: rotate(180deg); border-top-color: rgba(0,198,255,0.6); }
.segment-5 { transform: rotate(240deg); border-top-color: rgba(0,198,255,0.8); }
.segment-6 { transform: rotate(300deg); border-top-color: rgba(0,198,255,0.6); }

.power-ring.active .segment-1, 
.power-ring.active .segment-3, 
.power-ring.active .segment-5 {
    border-top-color: var(--power-green);
    animation: segment-pulse 2s infinite ease-in-out;
}

.power-ring.active .segment-2, 
.power-ring.active .segment-4, 
.power-ring.active .segment-6 {
    border-top-color: var(--power-green);
    animation: segment-pulse 2s infinite ease-in-out reverse;
}

@keyframes segment-pulse {
    0% { opacity: 0.8; }
    50% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

/* 外圆图标颜色随状态变化 */
.power-ring.active .power-icon {
    color: var(--power-green);
    filter: drop-shadow(0 0 2px var(--power-green));
    transition: color 0.5s ease;
}

/* 为默认状态添加过渡效果 */
.power-icon {
    width: 16px;
    height: 16px;
    color: var(--power-blue);
    position: absolute;
    top: 5px;
    transition: color 0.5s ease;
    filter: drop-shadow(0 0 1px var(--power-blue));
}

.enter-icon {
    width: 20px; /* 从22px减小到20px */
    height: 20px; /* 从22px减小到20px */
    color: var(--power-red);
}

.ring-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.enter-circle {
    position: relative;
    width: 42%; /* 从45%减小到42% */
    height: 42%; /* 从45%减小到42% */
    border-radius: 50%;
    background: rgba(0, 16, 32, 0.8);
    border: 1.5px solid var(--power-red);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 0, 80, 0.4);
    transition: all 0.3s ease;
    z-index: 3;
}

.enter-circle.cyber-industrial {
    background: linear-gradient(135deg, 
        rgba(50, 0, 20, 0.9) 0%,
        rgba(80, 0, 40, 0.8) 50%,
        rgba(50, 0, 20, 0.9) 100%
    );
    border: 2px solid var(--power-red);
    box-shadow: 
        inset 0 0 10px rgba(255, 0, 80, 0.5),
        0 0 15px rgba(255, 0, 80, 0.3);
    overflow: hidden;
}

.enter-circle.cyber-industrial:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at center, 
            rgba(255, 0, 80, 0.2) 0%, 
            transparent 70%),
        repeating-conic-gradient(
            rgba(255, 0, 80, 0) 0deg,
            rgba(255, 0, 80, 0.3) 5deg,
            rgba(255, 0, 80, 0) 10deg
        );
    animation: rotate 10s linear infinite;
}

.enter-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 0, 80, 0.6);
}

/* 脉冲环效果 */
.power-ring::before, .power-ring::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--power-blue);
    box-sizing: border-box;
    box-shadow: 0 0 8px var(--power-blue); /* 从10px减小到8px */
    opacity: 0;
    z-index: -1;
    animation: pulse-ring 3s ease-out infinite;
}

.power-ring::after {
    animation-delay: 1.5s;
}

@keyframes pulse-ring {
    0% { transform: scale(0.99); opacity: 0.3; } /* 从0.98改为0.99 */
    50% { transform: scale(1.04); opacity: 0.6; } /* 从1.08改为1.04 */
    100% { transform: scale(0.99); opacity: 0.3; } /* 从0.98改为0.99 */
}

/* 按钮状态样式 */
.power-ring.active .ring-track {
    border-color: rgba(0, 255, 141, 0.3);
    background-color: rgba(0, 255, 141, 0.1);
    box-shadow: inset 0 0 20px rgba(0, 255, 141, 0.4), 0 0 20px rgba(0, 255, 141, 0.3);
}

.power-ring:hover .ring-track {
    background-color: rgba(0, 198, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(0, 198, 255, 0.15);
}

.power-ring.active .ring-progress {
    border-top-color: var(--power-green);
    border-right-color: var(--power-green);
    animation: rotate 2s linear infinite;
}

.power-ring.active::before, .power-ring.active::after {
    border-color: var(--power-green);
    box-shadow: 0 0 15px var(--power-green);
}

.system-active .enter-circle {
    animation: energy-pulse 2s ease-in-out infinite;
}

@keyframes energy-pulse {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(255, 0, 80, 0.4); 
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 0, 80, 0.8), 0 0 50px rgba(255, 0, 80, 0.3);
        transform: scale(1.05);
    }
}

/* 旋转动画 */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 内部能量填充效果 */
.enter-circle::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, 
        rgba(255, 0, 80, 0.25) 0%,
        rgba(255, 0, 80, 0.1) 50%,
        rgba(255, 0, 80, 0.05) 100%
    );
    border-radius: 50%;
    transition: height 1.5s ease-out;
    pointer-events: none;
}

.system-active .enter-circle::before {
    height: 100%;
}

/* 圆环电流粒子 */
.ring-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--power-blue);
    border-radius: 50%;
    top: calc(50% - 4px);
    left: calc(50% - 4px);
    opacity: 0;
    filter: blur(1px);
    box-shadow: 0 0 8px var(--power-blue);
    transform-origin: center center;
    transform: rotate(var(--rotate-offset, 0deg)) translateX(80px) rotate(calc(-1 * var(--rotate-offset, 0deg)));
}

.power-ring.active .ring-particle {
    background: var(--power-green);
    box-shadow: 0 0 8px var(--power-green);
}

/* 按钮Canvas闪电效果 */
.button-lightning-canvas {
    position: absolute;
    pointer-events: none;
    z-index: 2;
}

/* 粒子背景 */
.particle-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* 工业数据标签和指示器 */
.industrial-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 15;
    opacity: 0.8;
}

.data-label {
    position: absolute;
    font-family: var(--font-tech);
    font-size: 12px;
    color: var(--power-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 5px var(--power-blue);
}

.label-top-left {
    top: 25px;
    left: 25px;
}

.label-top-right {
    top: 25px;
    right: 25px;
    text-align: right;
}

.label-bottom-left {
    bottom: 25px;
    left: 25px;
}

.label-bottom-right {
    bottom: 25px;
    right: 25px;
    text-align: right;
}

/* 工业框架和边框 */
.industrial-frame {
    position: fixed;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    top: 20px;
    left: 20px;
    border: 1px solid rgba(0, 198, 255, 0.3);
    pointer-events: none;
    z-index: 100;
}

.corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--power-blue);
    opacity: 0.8;
}

.corner-top-left {
    top: -1px;
    left: -1px;
    border-top: 2px solid;
    border-left: 2px solid;
}

.corner-top-right {
    top: -1px;
    right: -1px;
    border-top: 2px solid;
    border-right: 2px solid;
}

.corner-bottom-left {
    bottom: -1px;
    left: -1px;
    border-bottom: 2px solid;
    border-left: 2px solid;
}

.corner-bottom-right {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

/* 警示条纹和工业标记 */
.warning-stripes {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.2) 10px,
        rgba(255, 236, 0, 0.2) 10px,
        rgba(255, 236, 0, 0.2) 20px
    );
    z-index: 101;
}

/* 修改序列帧动画容器样式 */
#flashing-animation-container {
    width: 100%;
    position: relative;
    z-index: 10;
    transform: scale(1.15) translateX(-10%); /* 添加水平偏移 */
    filter: drop-shadow(0 0 20px rgba(0, 198, 255, 0.4));
    text-align: center;
    overflow: visible; /* 允许内容溢出 */
    transition: opacity 0.8s ease, transform 1s ease;
    will-change: opacity, transform;
}

.flashing-dissolve {
    opacity: 0 !important;
    transform: scale(1.15) translateX(-10%) translateY(20%) !important;
    filter: blur(20px) !important;
}

/* 全息效果 */
.hologram-effect {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(0, 240, 255, 0.1) 0%,
        rgba(0, 198, 255, 0.05) 50%,
        rgba(0, 240, 255, 0.1) 100%);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

/* 全息线条 */
.holo-line {
    position: absolute;
    background-color: var(--power-blue);
    opacity: 0.3;
    box-shadow: 0 0 3px var(--power-blue);
}

.horizontal-line {
    height: 1px;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.vertical-line {
    width: 1px; 
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* 全息扫描线 - 添加旋转效果 */
.holo-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        transparent 0%,
        rgba(0, 240, 255, 0.05) 45%,
        rgba(0, 240, 255, 0.1) 50%,
        rgba(0, 240, 255, 0.05) 55%,
        transparent 100%
    );
    animation: holo-scan-rotate 4s linear infinite;
    opacity: 0.4;
    pointer-events: none;
    transform-origin: center center;
}

/* 内圆扫描线使用红色 */
.enter-circle .holo-scanline {
    background: conic-gradient(
        transparent 0%,
        rgba(255, 0, 80, 0.05) 45%,
        rgba(255, 0, 80, 0.1) 50%,
        rgba(255, 0, 80, 0.05) 55%,
        transparent 100%
    );
}

/* 添加旋转动画 */
@keyframes holo-scan-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 消失粒子容器 */
.button-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 35;
}

/* 修改粒子样式，使其更好地融入背景 */
.disappear-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    transform-origin: center center;
    pointer-events: none;
    /* 添加模糊效果使粒子更柔和 */
    filter: blur(1px);
    /* 使用混合模式让粒子与背景融合 */
    mix-blend-mode: screen;
}

.disappear-particle.green-particle {
    background-color: var(--power-green);
    box-shadow: 0 0 5px var(--power-green);
}

.inner-particle {
    background-color: var(--power-red);
    box-shadow: 0 0 5px var(--power-red);
}

/* 按钮消失动画 */
.power-ring.dissolving, .enter-circle.dissolving {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

/* 全息扫描动画 */
@keyframes holo-scan {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

/* 调整粒子消失动画，使其更自然 */
@keyframes particle-rise {
    0% {
        opacity: 0.6;
        transform: translate(0, 0);
        filter: blur(1px);
    }
    20% {
        opacity: 0.7;
        filter: blur(1px);
    }
    100% {
        opacity: 0;
        transform: translate(var(--x-move, 0), var(--y-move, -120px));
        filter: blur(2px); /* 消失时增加模糊效果 */
    }
}

/* 粒子消失动画 - 修改为匀速上升并渐变消失 */
@keyframes particle-rise {
    0% {
        opacity: 0.8;
        transform: translate(0, 0);
    }
    20% { /* 添加中间帧保持可见度较高 */
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translate(var(--x-move, 0), var(--y-move, -120px));
    }
}

/* 摄像头拉近时的动态效果加强 */
@keyframes particle-zoom {
    0% { filter: blur(1px); }
    50% { filter: blur(2px); }
    100% { filter: blur(1px); }
}

