* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 方案 A：高级科技感配色 */
    --primary-color: #3b82f6;
    --secondary-color: #0ea5e9;
    --accent-color: #38bdf8;
    --neon-pink: #f472b6;
    --neon-blue: #60a5fa;
    --neon-purple: #a855f7;
    --success-color: #22c55e;
    --warning-color: #f97316;
    --danger-color: #ef4444;
    --text-color: #e5e7eb;
    --bg-gradient-1: #020617;
    --bg-gradient-2: #020617;
    --bg-gradient-3: #0f172a;
    --bg-gradient-4: #020617;
    --card-shadow: 0 24px 80px rgba(15, 23, 42, 0.85);
    --glass-bg: rgba(15, 23, 42, 0.86);
    --glass-border: rgba(148, 163, 184, 0.45);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-gradient-1) 0%, var(--bg-gradient-2) 25%, var(--bg-gradient-3) 50%, var(--bg-gradient-4) 75%, var(--bg-gradient-1) 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    color: #fff;
    position: relative;
    min-height: 100vh;
}

/* 动态光斑背景 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.18) 0%, transparent 55%),
                radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.2) 0%, transparent 55%),
                radial-gradient(circle at 40% 20%, rgba(168, 85, 247, 0.18) 0%, transparent 55%);
    animation: lightMove 25s ease infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes lightMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    33% {
        transform: translate(30px, 40px) scale(1.05);
        opacity: 0.5;
    }
    66% {
        transform: translate(-20px, -25px) scale(0.97);
        opacity: 0.6;
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 粒子背景 */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    filter: blur(0.5px);
    opacity: 0.6;
}

/* 光流效果层 */
body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(148, 163, 184, 0.16) 50%, transparent 70%);
    animation: lightFlow 8s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes lightFlow {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* 进度条 */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue), var(--accent-color), var(--neon-pink));
    background-size: 200% 100%;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 6px rgba(255, 107, 157, 0.4),
                0 0 12px rgba(107, 197, 210, 0.3),
                inset 0 0 6px rgba(255, 255, 255, 0.15);
    animation: progressGlow 3s ease infinite;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: progressShine 2s ease infinite;
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow: 0 0 6px rgba(255, 107, 157, 0.4),
                    0 0 12px rgba(107, 197, 210, 0.3);
    }
    50% {
        box-shadow: 0 0 8px rgba(255, 107, 157, 0.5),
                    0 0 15px rgba(107, 197, 210, 0.4),
                    0 0 20px rgba(240, 147, 251, 0.3);
    }
}

@keyframes progressShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* 导航点 */
.nav-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.nav-dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    opacity: 0;
    transition: var(--transition);
}

.nav-dot:hover::before,
.nav-dot.active::before {
    opacity: 1;
    animation: pulse 2s infinite;
}

.nav-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.3);
    box-shadow: 0 0 8px var(--accent-color);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* 幻灯片容器 */
.slideshow-container {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%) scale(0.9) rotateY(-15deg);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(5px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.slide.active {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
    z-index: 1;
    filter: blur(0);
    animation: slideInFade 0.6s ease;
}

.slide.prev {
    transform: translateX(-100%) scale(0.9) rotateY(15deg);
    filter: blur(5px);
}

.slide.next {
    transform: translateX(100%) scale(0.9) rotateY(-15deg);
    filter: blur(5px);
}

/* 页面切换动画 */
@keyframes slideInFade {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 幻灯片内容 */
.slide-content {
    width: 90%;
    max-width: 1200px;
    padding: 60px;
    position: relative;
    z-index: 2;
}

/* 工作内容与成果页面：压缩垂直空间，避免内容被裁剪 */
.work-content-slide {
    padding: 20px 30px;
    overflow-y: auto;
    max-height: 100vh;
}

/* 封面幻灯片 */
.cover-slide {
    text-align: center;
    color: white;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(102, 126, 234, 0.37);
    padding: 40px;
}

/* 公司信息区域 - 左上角 */
.company-info {
    position: absolute;
    top: 40px;
    left: 40px;
    text-align: left;
    z-index: 10;
    animation: companyInfoSlide 1.2s cubic-bezier(0.22, 1.3, 0.32, 1) 0.1s backwards;
    overflow: visible;
}

/* 光束喷发效果 - 背景光束 */
.company-info::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -200px;
    width: 300px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(59, 130, 246, 0.8),
        rgba(96, 165, 250, 1),
        rgba(59, 130, 246, 0.8),
        transparent
    );
    transform: translateY(-50%) rotate(-5deg);
    filter: blur(8px);
    animation: beamBurst 1.5s ease-out 0.2s backwards;
    z-index: -1;
}

/* 粒子拖尾效果 - 左侧粒子流 */
.company-info::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -150px;
    width: 2px;
    height: 2px;
    background: rgba(96, 165, 250, 0.9);
    border-radius: 50%;
    box-shadow: 
        -20px 10px 0 rgba(59, 130, 246, 0.7),
        -40px 20px 0 rgba(96, 165, 250, 0.6),
        -60px 30px 0 rgba(168, 85, 247, 0.5),
        -80px 40px 0 rgba(59, 130, 246, 0.4),
        -100px 50px 0 rgba(96, 165, 250, 0.3),
        -120px 60px 0 rgba(168, 85, 247, 0.2);
    animation: particleTrail 1.2s ease-out 0.3s backwards;
    z-index: -1;
}

.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 2px;
    position: relative;
    animation: companyNamePop 1.3s cubic-bezier(0.2, 1.4, 0.4, 1) 0.15s backwards;
    /* 增强的霓虹发光效果 */
    text-shadow: 
        0 0 10px rgba(59, 130, 246, 0.8),
        0 0 20px rgba(96, 165, 250, 0.6),
        0 0 30px rgba(168, 85, 247, 0.4),
        0 0 40px rgba(59, 130, 246, 0.3),
        0 2px 10px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 15px rgba(96, 165, 250, 0.5));
}

/* 公司名称的粒子拖尾 */
.company-name::before {
    content: '大趣全域';
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(96, 165, 250, 0.3);
    filter: blur(8px);
    z-index: -1;
    animation: nameTrail 1.3s ease-out 0.15s backwards;
}

/* 公司名称的光束扫过效果 */
.company-name::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.4),
        rgba(96, 165, 250, 0.6),
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: lightSweep 1.5s ease-out 0.5s;
    z-index: 1;
    pointer-events: none;
}

.company-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    position: relative;
    animation: companySubtitleSlide 1.1s cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s backwards;
    /* 增强发光效果 */
    text-shadow: 
        0 0 8px rgba(59, 130, 246, 0.6),
        0 0 15px rgba(96, 165, 250, 0.4),
        0 1px 5px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.3));
}

/* 副标题的粒子效果 */
.company-subtitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -60px;
    width: 3px;
    height: 3px;
    background: rgba(96, 165, 250, 0.8);
    border-radius: 50%;
    box-shadow: 
        -15px 5px 0 rgba(59, 130, 246, 0.6),
        -30px 10px 0 rgba(96, 165, 250, 0.4),
        -45px 15px 0 rgba(168, 85, 247, 0.3);
    animation: subtitleParticles 1.1s ease-out 0.3s backwards;
    z-index: -1;
}

.company-values {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: companyValuesRise 1s ease 0.45s backwards;
    position: relative;
}

/* 标签区域的粒子喷发 */
.company-values::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, 
        rgba(96, 165, 250, 0.3) 0%,
        rgba(59, 130, 246, 0.2) 30%,
        transparent 70%
    );
    border-radius: 50%;
    animation: particleBurst 1.5s ease-out 0.5s backwards;
    z-index: -1;
    filter: blur(15px);
}

.value-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 2px 8px rgba(255, 0, 0, 0.2),
        0 0 15px rgba(96, 165, 250, 0.3);
    animation: tagPulse 2s ease-in-out infinite;
    position: relative;
    overflow: visible;
}

/* 标签的粒子拖尾 */
.value-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    width: 2px;
    height: 2px;
    background: rgba(96, 165, 250, 0.8);
    border-radius: 50%;
    box-shadow: 
        -10px 0 0 rgba(59, 130, 246, 0.6),
        -20px 0 0 rgba(96, 165, 250, 0.4);
    animation: tagParticleTrail 1s ease-out backwards;
    opacity: 0;
}

.value-tag:nth-child(1) { 
    animation-delay: 0s; 
}
.value-tag:nth-child(1)::after {
    animation-delay: 0.5s;
}
.value-tag:nth-child(2) { 
    animation-delay: 0.3s; 
}
.value-tag:nth-child(2)::after {
    animation-delay: 0.7s;
}
.value-tag:nth-child(3) { 
    animation-delay: 0.6s; 
}
.value-tag:nth-child(3)::after {
    animation-delay: 0.9s;
}

/* 光束喷发动画 */
@keyframes beamBurst {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(-100px) rotate(-5deg) scaleX(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) translateX(50px) rotate(-5deg) scaleX(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-50%) translateX(200px) rotate(-5deg) scaleX(0.5);
    }
}

/* 粒子拖尾动画 */
@keyframes particleTrail {
    0% {
        opacity: 0;
        transform: translateX(-200px) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(50px) translateY(20px);
    }
}

/* 名称拖尾动画 */
@keyframes nameTrail {
    0% {
        opacity: 0;
        transform: translateX(-150px) scale(0.8);
        filter: blur(15px);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-30px) scale(1);
        filter: blur(8px);
    }
    100% {
        opacity: 0;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

/* 光束扫过动画 */
@keyframes lightSweep {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* 副标题粒子动画 */
@keyframes subtitleParticles {
    0% {
        opacity: 0;
        transform: translateX(-80px) translateY(-50%);
    }
    60% {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
    100% {
        opacity: 0;
        transform: translateX(20px) translateY(-50%);
    }
}

/* 粒子喷发动画 */
@keyframes particleBurst {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

/* 标签粒子拖尾动画 */
@keyframes tagParticleTrail {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    50% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(10px);
    }
}

@keyframes companyInfoSlide {
    0% {
        opacity: 0;
        transform: translateX(-120px) scale(0.9);
    }
    60% {
        opacity: 1;
        transform: translateX(15px) scale(1.05);
    }
    80% {
        transform: translateX(-5px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes companyNamePop {
    0% {
        opacity: 0;
        transform: translateX(-150px) scale(0.7) rotateY(-15deg);
        letter-spacing: 15px;
        filter: blur(10px) brightness(0.5);
    }
    50% {
        opacity: 0.8;
        transform: translateX(15px) scale(1.15) rotateY(5deg);
        letter-spacing: 4px;
        filter: blur(2px) brightness(1.2);
    }
    70% {
        opacity: 1;
        transform: translateX(-8px) scale(0.95) rotateY(-2deg);
        letter-spacing: 2.5px;
        filter: blur(0) brightness(1.1);
    }
    85% {
        transform: translateX(3px) scale(1.02) rotateY(1deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotateY(0deg);
        letter-spacing: 2px;
        filter: blur(0) brightness(1);
    }
}

@keyframes companySubtitleSlide {
    0% {
        opacity: 0;
        transform: translateX(-100px) scale(0.9);
        filter: blur(5px);
    }
    50% {
        opacity: 0.9;
        transform: translateX(10px) scale(1.05);
        filter: blur(1px);
    }
    70% {
        transform: translateX(-4px) scale(0.97);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

@keyframes companyValuesRise {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    60% {
        opacity: 0.9;
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes tagPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
    }
}

.content-wrapper {
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 520px;
    margin: 40px auto 80px;
    gap: 16px;
}

/* 格言文本 */
.motto-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 16px 0 24px;
    font-style: italic;
    position: relative;
    padding: 0 40px;
    animation: fadeIn 1s ease 0.5s backwards;
    font-weight: 400;
}

.motto-text::before,
.motto-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.motto-text::before {
    left: 0;
}

.motto-text::after {
    right: 0;
}

/* 底部信息框 */
.presenter-info-box {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px 40px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease 0.7s backwards;
    z-index: 10;
}

.presenter-info-box::before,
.presenter-info-box::after {
    content: '■';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6rem;
}

.presenter-info-box::before {
    left: 15px;
}

.presenter-info-box::after {
    right: 15px;
}

.info-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

.info-value {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* 照片样式 */
.photo-wrapper {
    margin: 28px auto 18px;
    position: relative;
    animation: float 3s ease-in-out infinite;
    z-index: 5;
}

.profile-photo {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 30px rgba(240, 147, 251, 0.5),
                0 0 60px rgba(102, 126, 234, 0.4),
                0 0 90px rgba(255, 107, 157, 0.3),
                inset 0 0 30px rgba(255, 255, 255, 0.15);
    animation: photoGlow 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
    display: block;
}

@keyframes photoGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(240, 147, 251, 0.4),
                    0 0 40px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(240, 147, 251, 0.6),
                    0 0 50px rgba(102, 126, 234, 0.4),
                    0 0 60px rgba(255, 0, 255, 0.2);
    }
}

.photo-wrapper::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 50%;
    border: 4px solid rgba(240, 147, 251, 0.6);
    opacity: 0.7;
    animation: rotate 10s linear infinite;
    z-index: 0;
}

.photo-wrapper::after {
    content: '';
    position: absolute;
    top: -24px;
    left: -24px;
    right: -24px;
    bottom: -24px;
    border-radius: 50%;
    border: 3px solid rgba(102, 126, 234, 0.5);
    opacity: 0.5;
    animation: rotate 15s linear infinite reverse;
    z-index: 0;
}

.logo-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 0 50px rgba(240, 147, 251, 0.5);
    animation: rotate 10s linear infinite, float 3s ease-in-out infinite;
    position: relative;
    display: none;
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    opacity: 0.5;
    animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.title-animate {
    font-size: 4.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #fff, var(--accent-color), var(--neon-blue), #fff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 4s ease-in-out infinite, 
               neonFlicker 3s ease-in-out infinite,
               titleGradient 5s ease infinite;
    filter: drop-shadow(0 0 6px rgba(255, 107, 157, 0.25))
            drop-shadow(0 0 12px rgba(107, 197, 210, 0.2));
    position: relative;
}

@keyframes titleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 6px rgba(240, 147, 251, 0.25)) drop-shadow(0 0 12px rgba(102, 126, 234, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(240, 147, 251, 0.35)) drop-shadow(0 0 18px rgba(102, 126, 234, 0.25)) drop-shadow(0 0 22px rgba(255, 107, 157, 0.15));
    }
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

.subtitle-box {
    margin-top: 6px;
    margin-bottom: 18px;
    text-align: center;
}

/* 封面核心价值观小标签行 */
.core-values-row {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 4px;
    margin-bottom: 12px;
}

.core-value-text {
    padding: 4px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
}

.core-value-separator {
    opacity: 0.9;
}

/* 感谢页中的价值观行更靠上、居中 */
.thank-core-values {
    margin-bottom: 16px;
}

.subtitle-animate {
    font-size: 2.5rem;
    opacity: 0.9;
    margin-bottom: 10px;
    animation: fadeIn 1s ease 0.5s backwards;
}

.date-animate {
    font-size: 1.5rem;
    opacity: 0.7;
    animation: fadeIn 1s ease 0.7s backwards;
}

.scroll-indicator {
    position: relative;
    margin-top: 20px;
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 10;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    margin: 10px auto;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 1.5s infinite;
}

@keyframes mouseScroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* 通用样式 */
.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--neon-blue), var(--neon-pink));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 0.8s ease,
               titleGradientMove 3s ease infinite;
    position: relative;
    filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.3))
            drop-shadow(0 0 15px rgba(240, 147, 251, 0.2));
}

@keyframes titleGradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.slide-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue), var(--accent-color));
    background-size: 200% 100%;
    border-radius: 2px;
    animation: underlineFlow 3s ease infinite;
    box-shadow: 0 0 4px rgba(255, 107, 157, 0.4),
                0 0 8px rgba(107, 197, 210, 0.3);
}

@keyframes underlineFlow {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* 目录页 - 新设计 */
.toc-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.toc-title {
    margin-bottom: 60px;
    text-align: center;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
    max-width: 1000px;
    width: 100%;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(100px) scale(0.95);
    filter: blur(4px);
}

.toc-item.animate-in {
    animation: slideInBounceEpic 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.toc-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.toc-item:hover::before {
    left: 100%;
}

/* 从右边优雅滑入动画 - 平滑不刺眼 */
@keyframes slideInBounceEpic {
    0% {
        opacity: 0;
        transform: translateX(100px) scale(0.95);
        filter: blur(4px);
    }
    40% {
        opacity: 0.8;
        transform: translateX(-8px) scale(1.02);
        filter: blur(1px);
    }
    60% {
        opacity: 0.95;
        transform: translateX(4px) scale(1.01);
        filter: blur(0);
    }
    80% {
        opacity: 1;
        transform: translateX(-2px) scale(1);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

.toc-item:hover {
    transform: translateY(-8px) scale(1.02) !important;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.25);
}

.toc-item.animate-in:hover {
    transform: translateY(-8px) scale(1.02) !important;
}

.toc-number-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(240, 147, 251, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.toc-number-circle::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
}

.toc-item:hover .toc-number-circle::after {
    opacity: 1;
}

.toc-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Microsoft YaHei', serif;
}

.toc-text {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    flex: 1;
}

/* 章节标题页样式 */
.chapter-title-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.chapter-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.chapter-number-large {
    font-size: 20rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    margin-bottom: 0;
    font-family: 'Microsoft YaHei', serif;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
    position: relative;
    animation: chapterNumberFloat 4s ease-in-out infinite;
}

@keyframes chapterNumberFloat {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.15;
    }
    50% { 
        transform: translateY(-20px) scale(1.02);
        opacity: 0.2;
    }
}

.chapter-title-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
                 0 0 30px rgba(102, 126, 234, 0.4);
    animation: chapterTitleGlow 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes chapterTitleGlow {
    0%, 100% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
                     0 0 30px rgba(102, 126, 234, 0.4);
    }
    50% {
        text-shadow: 0 4px 25px rgba(0, 0, 0, 0.4),
                     0 0 40px rgba(102, 126, 234, 0.5),
                     0 0 50px rgba(240, 147, 251, 0.3);
    }
}

/* 转正复盘页面样式 */
.review-slide {
    padding: 20px 30px;
    overflow-y: auto;
    max-height: 100vh;
}

.review-slide .slide-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.review-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    margin-top: 15px;
}

.review-left {
    overflow-y: auto;
    max-height: calc(100vh - 120px);
    padding-right: 10px;
}

.review-right {
    overflow-y: auto;
    max-height: calc(100vh - 120px);
    padding-left: 10px;
}

/* 转正复盘页面右侧图片 */
.review-image-wrapper {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.6);
    max-height: 180px;
    min-height: 180px;
    animation: fadeInRight 0.8s ease backwards;
    animation-delay: 0.1s;
}

.review-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(1.05);
    transition: transform 0.5s ease;
}

.review-image:hover {
    transform: scale(1.05);
}

.review-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 107, 157, 0.5);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.goal-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.goal-item {
    display: flex;
    gap: 15px;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 4px solid var(--neon-pink);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInLeft 0.6s ease backwards;
}

/* 基础要求样式 */
.goal-requirements {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.requirement-item {
    padding: 12px 16px;
    background: rgba(107, 197, 210, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    border: 1px solid rgba(107, 197, 210, 0.3);
    border-left: 4px solid var(--neon-blue);
    animation: fadeInLeft 0.6s ease backwards;
}

.requirement-item:nth-child(1) { animation-delay: 0.05s; }
.requirement-item:nth-child(2) { animation-delay: 0.1s; }

.requirement-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

.goal-item:nth-child(1) { animation-delay: 0.15s; }
.goal-item:nth-child(2) { animation-delay: 0.2s; }
.goal-item:nth-child(3) { animation-delay: 0.25s; }
.goal-item:nth-child(4) { animation-delay: 0.3s; }
.goal-item:nth-child(5) { animation-delay: 0.35s; }
.goal-item:nth-child(6) { animation-delay: 0.4s; }
.goal-item:nth-child(7) { animation-delay: 0.45s; }

.goal-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.12);
    border-left-color: var(--neon-blue);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.25);
}

.goal-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.goal-content {
    flex: 1;
}

.goal-content h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 6px;
    font-weight: 600;
}

.goal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.goal-method {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(107, 197, 210, 0.2);
    border: 1px solid rgba(107, 197, 210, 0.4);
    border-radius: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* 完成情况状态列表 */
.completion-status-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-item {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 4px solid var(--neon-blue);
    transition: all 0.3s ease;
    animation: fadeInRight 0.6s ease backwards;
}

.status-item.completed {
    border-left-color: var(--success-color);
}

.status-item.in-progress {
    border-left-color: var(--warning-color);
}

.status-item:nth-child(1) { animation-delay: 0.1s; }
.status-item:nth-child(2) { animation-delay: 0.15s; }
.status-item:nth-child(3) { animation-delay: 0.2s; }
.status-item:nth-child(4) { animation-delay: 0.25s; }
.status-item:nth-child(5) { animation-delay: 0.3s; }
.status-item:nth-child(6) { animation-delay: 0.35s; }
.status-item:nth-child(7) { animation-delay: 0.4s; }

.status-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.status-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.status-item.completed .status-icon {
    background: linear-gradient(135deg, var(--success-color), #4ade80);
}

.status-item.in-progress .status-icon {
    background: linear-gradient(135deg, var(--warning-color), #fb923c);
    animation: statusRotate 2s linear infinite;
}

@keyframes statusRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.status-content {
    flex: 1;
}

.status-content h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 6px;
    font-weight: 600;
}

.status-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    font-size: 0.88rem;
}

/* 保留原有的统计样式（如果其他地方还在使用） */
.completion-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-month,
.stat-overall {
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInRight 0.6s ease backwards;
}

.stat-month:nth-child(1) { animation-delay: 0.2s; }
.stat-month:nth-child(2) { animation-delay: 0.4s; }
.stat-overall { animation-delay: 0.6s; }

.stat-month h4,
.stat-overall h4 {
    font-size: 1.2rem;
    color: var(--neon-blue);
    margin-bottom: 12px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(107, 197, 210, 0.3);
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.stat-value {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

.stat-value.highlight {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 107, 157, 0.4);
}

.stat-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-left: 8px;
}

/* 未完成的目标分析页面样式 - 优化版 */
.incomplete-goals-slide {
    padding: 20px 30px;
    max-height: 100vh;
}

.incomplete-goals-slide .slide-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    margin-top: 30px;
}

.incomplete-goals-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    margin-top: 30px;
    align-items: start;
    align-content: start;
}

.incomplete-goals-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    max-height: calc(100vh - 130px);
    padding-right: 15px;
    padding-top: 40px;
    align-items: stretch;
}

.incomplete-goal-item {
    display: flex;
    gap: 18px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 5px solid var(--warning-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInLeft 0.7s ease backwards;
    position: relative;
    overflow: hidden;
}

.incomplete-goal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--warning-color), rgba(249, 115, 22, 0.5));
    transition: width 0.3s ease;
}

.incomplete-goal-item:hover::before {
    width: 100%;
    opacity: 0.05;
}

.incomplete-goal-item:nth-child(1) { animation-delay: 0.1s; }
.incomplete-goal-item:nth-child(2) { animation-delay: 0.2s; }

.incomplete-goal-item:hover {
    transform: translateX(10px) translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.3),
                0 0 20px rgba(249, 115, 22, 0.15);
    border-left-width: 6px;
}

.goal-status-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.goal-status-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--warning-color), #fb923c);
    opacity: 0.3;
    filter: blur(8px);
    z-index: -1;
}

.goal-status-icon.in-progress-icon {
    background: linear-gradient(135deg, var(--warning-color), #fb923c);
}

.goal-status-icon.pending-icon {
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.9), rgba(100, 116, 139, 0.9));
}

.goal-status-icon.pending-icon::before {
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.6), rgba(100, 116, 139, 0.6));
}

.icon-inner {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    z-index: 1;
    position: relative;
}

.goal-status-icon.in-progress-icon .icon-inner {
    animation: statusRotate 2s linear infinite;
}

.goal-status-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.goal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.goal-status-content h3 {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.goal-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.goal-status-badge.in-progress-badge {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(251, 146, 60, 0.25));
    border: 1.5px solid rgba(249, 115, 22, 0.5);
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(249, 115, 22, 0.5);
}

.goal-status-badge.pending-badge {
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.25), rgba(100, 116, 139, 0.25));
    border: 1.5px solid rgba(148, 163, 184, 0.5);
    color: rgba(203, 213, 225, 0.9);
}

.goal-detail {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.analysis-summary {
    padding: 24px;
    background: linear-gradient(135deg, rgba(107, 197, 210, 0.18), rgba(59, 130, 246, 0.12));
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(107, 197, 210, 0.3);
    border-left: 5px solid var(--neon-blue);
    animation: fadeInLeft 0.7s ease backwards;
    animation-delay: 0.3s;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.analysis-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--neon-blue), rgba(96, 165, 250, 0.5));
    transition: width 0.3s ease;
}

.analysis-summary:hover::before {
    width: 100%;
    opacity: 0.05;
}

.analysis-summary:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.25);
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.summary-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(107, 197, 210, 0.5));
}

.analysis-summary h4 {
    font-size: 1.3rem;
    color: var(--neon-blue);
    margin: 0;
    font-weight: 600;
    text-shadow: 0 0 12px rgba(107, 197, 210, 0.4);
}

.analysis-summary p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
    font-size: 0.98rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.incomplete-goals-right {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    height: calc(100vh - 130px);
    padding-left: 15px;
    padding-top: 0;
    overflow-y: hidden;
}

.incomplete-goals-image-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.6),
                0 0 40px rgba(102, 126, 234, 0.2);
    max-height: 520px;
    min-height: 420px;
    height: clamp(420px, 52vh, 520px);
    animation: fadeInRight 0.8s ease backwards;
    animation-delay: 0.25s;
    position: relative;
}

.incomplete-goals-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.incomplete-goals-image-wrapper:hover::before {
    opacity: 1;
}

.incomplete-goals-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(1.1) brightness(1.05);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.6s ease;
    position: relative;
    z-index: 0;
}

.incomplete-goals-image-wrapper:hover .incomplete-goals-image {
    transform: scale(1.05);
    filter: saturate(1.2) brightness(1.1);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 420px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px);
    border: 2px dashed rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.6;
}

.image-suggestion {
    margin-top: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* 工作内容与成果页面样式 */
.work-content-slide {
    padding: 20px 30px;
    overflow-y: auto;
    max-height: 100vh;
}

.work-content-slide .slide-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.work-content-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    margin-top: 15px;
}

.work-content-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.work-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 107, 157, 0.5);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border-left: 3px solid var(--neon-blue);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    animation: fadeInLeft 0.5s ease backwards;
}

.category-item:nth-child(1) { animation-delay: 0.1s; }
.category-item:nth-child(2) { animation-delay: 0.2s; }
.category-item:nth-child(3) { animation-delay: 0.3s; }
.category-item:nth-child(4) { animation-delay: 0.4s; }
.category-item:nth-child(5) { animation-delay: 0.5s; }
.category-item:nth-child(6) { animation-delay: 0.6s; }
.category-item:nth-child(7) { animation-delay: 0.7s; }

.category-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--neon-pink);
}

.summary-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-item {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 0.6s ease backwards;
}

.summary-item:nth-child(1) { animation-delay: 0.1s; }
.summary-item:nth-child(2) { animation-delay: 0.2s; }
.summary-item:nth-child(3) { animation-delay: 0.3s; }
.summary-item:nth-child(4) { animation-delay: 0.4s; }
.summary-item:nth-child(5) { animation-delay: 0.5s; }
.summary-item:nth-child(6) { animation-delay: 0.6s; }
.summary-item:nth-child(7) { animation-delay: 0.7s; }

.summary-item strong {
    color: var(--neon-blue);
    font-size: 1rem;
    display: block;
    margin-bottom: 6px;
}

.summary-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 3px 0;
    font-size: 0.88rem;
}

.summary-metrics {
    color: var(--neon-pink) !important;
    font-weight: 600;
    margin-left: 20px;
}

.data-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* 工作内容页配图 */
.work-photo-wrapper {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.6);
    max-height: 160px;
    min-height: 160px;
}

.work-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(1.05);
}

.data-card {
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInRight 0.6s ease backwards;
}

.data-card:nth-child(1) { animation-delay: 0.1s; }
.data-card:nth-child(2) { animation-delay: 0.2s; }
.data-card:nth-child(3) { animation-delay: 0.3s; }
.data-card:nth-child(4) { animation-delay: 0.4s; }
.data-card:nth-child(5) { animation-delay: 0.5s; }
.data-card:nth-child(6) { animation-delay: 0.6s; }

.data-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 107, 157, 0.5);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.data-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 8px rgba(107, 197, 210, 0.4));
}

.data-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-pink);
    margin-bottom: 6px;
    text-shadow: 0 0 15px rgba(255, 107, 157, 0.5);
}

.data-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* 我与大趣页面样式 */
.daqu-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px;
}

.daqu-title {
    margin-bottom: 40px;
    text-align: center;
}

.company-photo-container {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
    position: relative;
}

.company-photo {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.company-photo:hover {
    transform: scale(1.02);
}

.photo-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.daqu-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.daqu-content-box {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease backwards;
    position: relative;
    overflow: hidden;
}

.daqu-content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue), var(--accent-color));
    background-size: 200% 100%;
    animation: underlineFlow 3s ease infinite;
}

.daqu-content-box:nth-child(1) { animation-delay: 0.2s; }
.daqu-content-box:nth-child(2) { animation-delay: 0.4s; }
.daqu-content-box:nth-child(3) { animation-delay: 0.6s; }

.daqu-content-box:hover {
    transform: translateY(-8px);
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.daqu-box-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 15px;
}

.daqu-box-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
}

.daqu-box-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    font-size: 1rem;
}

.daqu-box-content p {
    margin: 12px 0;
    padding-left: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.daqu-box-content p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--neon-blue);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.daqu-content-box:hover .daqu-box-content p::before {
    opacity: 1;
}

.daqu-content-box:hover .daqu-box-content p {
    padding-left: 20px;
    color: #fff;
}

/* 目录页 - 旧样式保留作为备用 */
.menu-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    margin-bottom: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--neon-pink);
    cursor: pointer;
    transition: var(--transition);
    animation: fadeInLeft 0.8s ease backwards;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(102, 126, 234, 0.2);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-item:nth-child(6) { animation-delay: 0.6s; }
.menu-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-item:hover {
    transform: translateX(20px) scale(1.02);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 40px rgba(240, 147, 251, 0.4),
                0 0 30px rgba(102, 126, 234, 0.3);
    border-left-color: var(--neon-blue);
}

.menu-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 20px;
    min-width: 50px;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
    filter: drop-shadow(0 0 6px var(--neon-pink));
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% {
        filter: drop-shadow(0 0 6px var(--neon-pink));
    }
    50% {
        filter: drop-shadow(0 0 12px var(--neon-pink))
                drop-shadow(0 0 18px var(--neon-blue));
    }
}

.menu-text {
    font-size: 1.3rem;
    color: white;
}

/* 分割布局 */
.split-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

/* 个人简介页面特殊布局 */
.split-slide .profile-title {
    grid-column: 1 / -1;
    margin-bottom: 40px;
    text-align: center;
}

.profile-photo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInLeft 0.8s ease;
}

.profile-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: fadeInRight 0.8s ease;
}

.slide-left, .slide-right {
    animation: fadeIn 0.8s ease;
}

/* 大照片样式 */
.large-photo-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.large-profile-photo {
    width: 100%;
    max-width: 450px;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    border-radius: 20px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 30px rgba(240, 147, 251, 0.5),
                0 0 60px rgba(102, 126, 234, 0.4),
                0 20px 80px rgba(0, 0, 0, 0.3);
    animation: photoFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 10px;
}

@keyframes photoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

.photo-glow {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue), var(--accent-color));
    opacity: 0.4;
    filter: blur(30px);
    animation: photoGlowPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes photoGlowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* 个人信息卡片 */
.profile-info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.profile-info-card:hover {
    transform: perspective(1000px) rotateY(-3deg) rotateX(3deg);
    box-shadow: 0 25px 70px rgba(240, 147, 251, 0.5);
}

.profile-info {
    text-align: left;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 4px solid var(--neon-pink);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease backwards;
}

.info-item:nth-child(1) { animation-delay: 0.1s; }
.info-item:nth-child(2) { animation-delay: 0.2s; }
.info-item:nth-child(3) { animation-delay: 0.3s; }
.info-item:nth-child(4) { animation-delay: 0.4s; }

.info-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.12);
    border-left-color: var(--neon-blue);
    box-shadow: 0 5px 20px rgba(240, 147, 251, 0.3);
}

.info-item:last-child {
    margin-bottom: 0;
}

.label {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 20px;
    min-width: 110px;
    font-size: 1.1rem;
    font-weight: 500;
}

.value {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    flex: 1;
}

.skills-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.skills-box h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.skill-item {
    margin-bottom: 25px;
}

.skill-name {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.skill-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    width: 0%;
    transition: width 1.5s ease;
    position: relative;
    box-shadow: 0 0 10px var(--accent-color);
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* 时间轴 */
.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 0 10px var(--accent-color);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    animation: fadeInRight 0.8s ease backwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    border: 4px solid transparent;
    box-shadow: 0 0 10px var(--neon-pink),
                0 0 20px var(--neon-blue);
    margin-right: 40px;
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite, neonPulse 1.5s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 10px var(--neon-pink),
                    0 0 20px var(--neon-blue);
    }
    50% {
        box-shadow: 0 0 15px var(--neon-pink),
                    0 0 25px var(--neon-blue),
                    0 0 30px rgba(255, 0, 255, 0.4);
    }
}

.timeline-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    flex: 1;
    border-left: 4px solid var(--neon-pink);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(240, 147, 251, 0.4);
    border-left-color: var(--neon-blue);
}

.timeline-date {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* 工作卡片 */
.card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.work-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease backwards;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.work-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.work-card:hover::before {
    opacity: 1;
    animation: cardShine 1s ease;
}

@keyframes cardShine {
    0% {
        left: -50%;
        top: -50%;
    }
    100% {
        left: 150%;
        top: 150%;
    }
}

.work-card:nth-child(1) { animation-delay: 0.1s; }
.work-card:nth-child(2) { animation-delay: 0.3s; }
.work-card:nth-child(3) { animation-delay: 0.5s; }
.work-card:nth-child(4) { animation-delay: 0.7s; }

.work-card:hover {
    transform: translateY(-20px) scale(1.05) perspective(1000px) rotateY(5deg);
    box-shadow: 0 25px 70px rgba(240, 147, 251, 0.5),
                0 0 40px rgba(102, 126, 234, 0.4);
    border: 2px solid var(--neon-pink);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px var(--accent-color))
            drop-shadow(0 0 15px var(--neon-pink));
    animation: iconFloat 3s ease-in-out infinite,
               iconGlow 2s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px var(--accent-color))
                drop-shadow(0 0 15px var(--neon-pink));
    }
    50% {
        filter: drop-shadow(0 0 12px var(--accent-color))
                drop-shadow(0 0 20px var(--neon-pink))
                drop-shadow(0 0 25px var(--neon-blue));
    }
}

.work-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.work-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-stats {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    font-size: 1.1rem;
}

.card-stats strong {
    font-size: 1.5rem;
    color: white;
}

/* 数据统计卡片 */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease backwards;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover::before {
    opacity: 0.1;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.3s; }
.stat-card:nth-child(3) { animation-delay: 0.5s; }
.stat-card:nth-child(4) { animation-delay: 0.7s; }

.stat-card:hover {
    transform: translateY(-15px) scale(1.05) perspective(1000px) rotateX(5deg);
    box-shadow: 0 30px 80px rgba(240, 147, 251, 0.5),
                0 0 50px rgba(102, 126, 234, 0.4),
                inset 0 0 30px rgba(255, 255, 255, 0.1);
    border: 2px solid var(--neon-blue);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px var(--accent-color));
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue), var(--accent-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    animation: statNumberGlow 3s ease-in-out infinite,
               statGradient 2s ease infinite;
    filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.4))
            drop-shadow(0 0 15px rgba(0, 255, 255, 0.3));
}

@keyframes statGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes statNumberGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.4))
                drop-shadow(0 0 15px rgba(0, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(255, 0, 255, 0.6))
                drop-shadow(0 0 20px rgba(0, 255, 255, 0.4))
                drop-shadow(0 0 25px rgba(240, 147, 251, 0.3));
    }
}

.stat-label {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.stat-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* 项目成果展示 - 3D 图片墙 */
.project-3d-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
    margin-top: 20px;
    perspective: 1500px;
}

.project-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.08), rgba(15, 23, 42, 0.9));
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.6);
    transform-style: preserve-3d;
}

.project-image-bank {
    display: none;
}

.project-screen .project-3d-image {
    position: absolute;
    border-radius: 20px;
    border: 2px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.45);
    opacity: 0;
    transition: box-shadow 0.3s ease, filter 0.3s ease;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.08);
}

.project-screen .project-3d-image.ready {
    opacity: 1;
}

.project-screen .project-3d-image:hover {
    box-shadow: 0 15px 45px rgba(59, 130, 246, 0.35),
                0 25px 65px rgba(15, 23, 42, 0.65);
}

/* 能力提升与学习获取页面样式 */
.growth-slide {
    padding: 20px 30px;
    overflow-y: auto;
    max-height: 100vh;
}

.growth-slide .slide-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.growth-content-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    margin-top: 15px;
}

.growth-content-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.growth-section {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInLeft 0.6s ease backwards;
}

.growth-section:nth-child(1) { animation-delay: 0.1s; }
.growth-section:nth-child(2) { animation-delay: 0.3s; }
.growth-section:nth-child(3) { animation-delay: 0.5s; }

.growth-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 12px;
    padding: 8px 16px;
    background: rgba(107, 197, 210, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(107, 197, 210, 0.3);
    text-align: center;
}

.growth-item-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.growth-item {
    display: flex;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--neon-pink);
    transition: all 0.3s ease;
}

.growth-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--neon-blue);
}

.growth-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon-pink);
    flex-shrink: 0;
    min-width: 22px;
}

.growth-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

.growth-content-right {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease;
}

.growth-visual {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.growth-photo-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.6);
    max-height: 200px;
    min-height: 200px;
}

.growth-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.code-window {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.code-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.code-dot:nth-child(1) { background: rgba(255, 107, 157, 0.6); }
.code-dot:nth-child(2) { background: rgba(107, 197, 210, 0.6); }
.code-dot:nth-child(3) { background: rgba(240, 147, 251, 0.6); }

.code-title {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.code-content {
    padding: 16px 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.code-keyword {
    color: var(--neon-pink);
    font-weight: 600;
}

.code-var {
    color: var(--neon-blue);
}

.code-property {
    color: rgba(240, 147, 251, 0.9);
}

.code-string {
    color: rgba(107, 197, 210, 0.9);
}

/* 能力提升 */
.growth-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.growth-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease backwards;
    border-top: 4px solid var(--neon-pink);
    transform-style: preserve-3d;
}

.growth-card:nth-child(1) { animation-delay: 0.1s; }
.growth-card:nth-child(2) { animation-delay: 0.3s; }
.growth-card:nth-child(3) { animation-delay: 0.5s; }

.growth-card:hover {
    transform: translateY(-15px) perspective(1000px) rotateX(-5deg);
    box-shadow: 0 25px 70px rgba(240, 147, 251, 0.5),
                0 0 40px rgba(102, 126, 234, 0.4);
    border-top-color: var(--neon-blue);
}

.growth-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--accent-color));
}

.growth-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.growth-list {
    list-style: none;
    text-align: left;
}

.growth-list li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 25px;
}

.growth-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.growth-list li:last-child {
    border-bottom: none;
}

/* 工作亮点 */
.highlights-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.highlight-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease backwards;
    text-align: center;
    transform-style: preserve-3d;
}

.highlight-item:nth-child(1) { animation-delay: 0.1s; }
.highlight-item:nth-child(2) { animation-delay: 0.3s; }
.highlight-item:nth-child(3) { animation-delay: 0.5s; }

.highlight-item:hover {
    transform: translateY(-15px) perspective(1000px) rotateY(5deg);
    box-shadow: 0 25px 70px rgba(240, 147, 251, 0.5),
                0 0 40px rgba(102, 126, 234, 0.4);
    border: 2px solid var(--neon-pink);
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px var(--accent-color))
            drop-shadow(0 0 15px var(--neon-pink));
    animation: iconFloat 3s ease-in-out infinite;
}

.highlight-item h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.highlight-content {
    text-align: left;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 2;
    font-size: 1.1rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-content p:last-child {
    border-bottom: none;
}

/* 不足与改进页面样式 */
.reflection-slide {
    padding: 40px;
}

.reflection-container-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.reflection-section-box {
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 0.8s ease backwards;
}

.reflection-section-box:nth-child(1) { animation-delay: 0.2s; }
.reflection-section-box:nth-child(2) { animation-delay: 0.4s; }

.reflection-box-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    padding: 15px 25px;
    background: rgba(107, 197, 210, 0.2);
    border-radius: 12px;
    border: 2px solid rgba(107, 197, 210, 0.4);
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.reflection-box-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reflection-point {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--neon-pink);
    transition: all 0.3s ease;
}

.reflection-point:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--neon-blue);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.reflection-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-pink);
    flex-shrink: 0;
    min-width: 30px;
}

.reflection-point p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* 不足与反思 */
.reflection-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.reflection-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease backwards;
    text-align: center;
    transform-style: preserve-3d;
    border-top: 4px solid var(--neon-blue);
}

.reflection-card:nth-child(1) { animation-delay: 0.1s; }
.reflection-card:nth-child(2) { animation-delay: 0.3s; }
.reflection-card:nth-child(3) { animation-delay: 0.5s; }

.reflection-card:hover {
    transform: translateY(-15px) perspective(1000px) rotateX(-5deg);
    box-shadow: 0 25px 70px rgba(240, 147, 251, 0.5),
                0 0 40px rgba(102, 126, 234, 0.4);
    border-top-color: var(--neon-pink);
}

.reflection-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px var(--neon-blue))
            drop-shadow(0 0 15px var(--accent-color));
    animation: iconFloat 3s ease-in-out infinite;
}

.reflection-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.reflection-content {
    text-align: left;
}

.reflection-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 2;
    font-size: 1.1rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reflection-content p:last-child {
    border-bottom: none;
}

/* 未来规划页面样式（时间轴布局，参考18/19.jpg） */
.plan-slide {
    padding: 40px;
}

.plan-timeline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.plan-timeline {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 30px 40px 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.35);
    position: relative;
    overflow: hidden;
}

.plan-timeline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}

.plan-timeline-title {
    position: relative;
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: left;
}

.plan-timeline-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    margin-top: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    box-shadow: 0 0 15px rgba(240, 147, 251, 0.6);
}

.plan-timeline-line {
    position: relative;
    margin: 30px auto 24px;
    max-width: 820px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-timeline-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 12%;
    right: 12%;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(148, 163, 253, 0.8), rgba(255, 255, 255, 0.2));
}

.plan-node {
    position: relative;
    z-index: 1;
}

.plan-node-center {
    position: relative;
    z-index: 2;
}

.plan-node-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.92), rgba(209, 213, 219, 0.98));
    border: 3px solid rgba(148, 163, 253, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #111827;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
}

.plan-node-center-circle {
    width: 140px;
    height: 140px;
    border-width: 4px;
    font-size: 1.1rem;
}

.plan-timeline-content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.plan-column-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.95);
}

.plan-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.plan-list li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
}

.plan-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--neon-pink);
}

/* 总结与展望页面样式 */
.summary-slide {
    padding: 40px;
}

.summary-container-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.summary-section-box {
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 0.8s ease backwards;
}

.summary-section-box:nth-child(1) { animation-delay: 0.2s; }
.summary-section-box:nth-child(2) { animation-delay: 0.4s; }

.summary-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    padding: 15px 25px;
    background: rgba(255, 107, 157, 0.2);
    border-radius: 12px;
    border: 2px solid rgba(255, 107, 157, 0.4);
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.summary-section-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.summary-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--neon-blue);
    transition: all 0.3s ease;
}

.summary-point:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--neon-pink);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.summary-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(107, 197, 210, 0.4));
}

.summary-point p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.thank-you-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.thank-you-slide .thank-you-box {
    text-align: center;
    margin-top: 40px;
    padding: 60px 80px 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 1s ease 0.4s backwards;
    max-width: 1000px;
    width: 85%;
}

.thank-you-slide .thank-you-title {
    font-size: 3.4rem;
    color: var(--accent-color);
    margin-bottom: 18px;
    text-shadow: 0 0 25px rgba(240, 147, 251, 0.6);
    animation: titleGlow 3s ease-in-out infinite;
}

.thank-you-slide .contact-info {
    margin-top: 10px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* 总结页顶部公司信息（参考封面） */
.final-company-info {
    position: absolute;
    top: 40px;
    left: 60px;
    text-align: left;
}

.final-company-name {
    font-size: 2.3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.final-company-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
    margin-bottom: 10px;
}

.final-company-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.final-tag {
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* 总结页底部汇报人信息条 */
.final-presenter-box {
    margin-top: 30px;
    display: inline-flex;
    gap: 40px;
    padding: 12px 32px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
}

.final-info-line {
    display: flex;
    align-items: center;
    gap: 6px;
}

.final-info-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.final-info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

/* 未来规划 */
.plan-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.plan-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    animation: fadeInLeft 0.8s ease backwards;
    border-left: 4px solid var(--neon-pink);
    display: flex;
    align-items: center;
    gap: 30px;
    transform-style: preserve-3d;
}

.plan-item:nth-child(1) { animation-delay: 0.1s; }
.plan-item:nth-child(2) { animation-delay: 0.3s; }
.plan-item:nth-child(3) { animation-delay: 0.5s; }

.plan-item:hover {
    transform: translateX(20px) perspective(1000px) rotateY(-3deg);
    box-shadow: 0 25px 70px rgba(240, 147, 251, 0.5),
                0 0 40px rgba(102, 126, 234, 0.4);
    border-left-color: var(--neon-blue);
}

.plan-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 0 10px var(--accent-color));
    flex-shrink: 0;
}

.plan-item h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.plan-content {
    flex: 1;
}

.plan-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 2;
    font-size: 1.1rem;
}

/* 总结页 */
.center-slide {
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.summary-box {
    max-width: 800px;
    margin: 0 auto;
}

.summary-content {
    margin: 40px 0;
}

.summary-text {
    font-size: 1.8rem;
    margin: 30px 0;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease backwards;
}

.summary-text:nth-child(1) { animation-delay: 0.2s; }
.summary-text:nth-child(2) { animation-delay: 0.4s; }
.summary-text:nth-child(3) { animation-delay: 0.6s; }

.thank-you {
    margin-top: 60px;
    animation: fadeIn 1s ease 0.8s backwards;
}

.thank-you h3 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    text-shadow: 0 0 20px var(--accent-color);
}

.contact-info {
    margin-top: 30px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* 导航按钮 */
.nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 0 15px var(--neon-pink),
                0 0 25px var(--neon-blue),
                inset 0 0 15px rgba(255, 255, 255, 0.2);
    animation: btnPulse 1s ease infinite;
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 0 15px var(--neon-pink),
                    0 0 25px var(--neon-blue);
    }
    50% {
        box-shadow: 0 0 20px var(--neon-pink),
                    0 0 35px var(--neon-blue),
                    0 0 40px var(--accent-color);
    }
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .slide-content {
        padding: 30px;
    }
    
    .title-animate {
        font-size: 2.5rem;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .split-slide {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .split-slide .profile-title {
        margin-bottom: 30px;
    }
    
    /* 目录页响应式 */
    .toc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 30px;
    }
    
    .toc-item {
        padding: 18px;
        gap: 12px;
    }
    
    .toc-number-circle {
        width: 55px;
        height: 55px;
    }
    
    .toc-number {
        font-size: 1.5rem;
    }
    
    .toc-text {
        font-size: 1.1rem;
    }
    
    /* 我与大趣页面响应式 */
    .daqu-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .company-photo-container {
        margin-bottom: 30px;
    }
    
    .company-photo {
        max-height: 300px;
    }
    
    .daqu-content-box {
        padding: 25px;
    }
    
    .daqu-box-title {
        font-size: 1.5rem;
    }
    
    .daqu-box-content {
        font-size: 0.95rem;
    }
    
    /* 封面页响应式 */
    .company-info {
        top: 20px;
        left: 20px;
    }
    
    .company-name {
        font-size: 1.8rem;
    }
    
    .company-subtitle {
        font-size: 1rem;
    }
    
    .value-tag {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    
    .motto-text {
        font-size: 1.1rem;
        padding: 0 20px;
        margin: 15px 0 30px;
    }
    
    .presenter-info-box {
        bottom: 40px;
        padding: 15px 25px;
        flex-direction: column;
        gap: 10px;
        font-size: 0.9rem;
    }
    
    .title-animate {
        font-size: 3rem;
    }
    
    .subtitle-animate {
        font-size: 2rem;
    }
    
    .date-animate {
        font-size: 1.2rem;
    }
    
    .profile-photo {
        width: 150px;
        height: 150px;
    }
    
    .large-photo-wrapper {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .large-profile-photo {
        max-height: 400px;
    }
    
    .profile-info-section {
        gap: 20px;
    }
    
    .info-item {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .label {
        margin-bottom: 8px;
        margin-right: 0;
    }
    
    .card-container,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .growth-container {
        grid-template-columns: 1fr;
    }
    
    .highlights-container,
    .reflection-container {
        grid-template-columns: 1fr;
    }
    
    .plan-item {
        flex-direction: column;
        text-align: center;
    }
    
    /* 转正复盘页面响应式 */
    .review-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .chapter-number-large {
        font-size: 12rem;
    }
    
    .chapter-title-text {
        font-size: 3rem;
    }
    
    /* 工作内容与成果页面响应式 */
    .work-content-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .data-support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* 能力提升页面响应式 */
    .growth-content-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .growth-visual {
        max-width: 100%;
    }
    
    /* 不足与改进页面响应式 */
    .reflection-container-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* 未来规划页面响应式 */
    .plan-timeline-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* 总结与展望页面响应式 */
    .summary-container-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
    
    .nav-dots {
        right: 15px;
    }
    
    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
}

/* ========== 增强特效样式 ========== */

/* 自定义鼠标跟随效果 */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(240, 147, 251, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    box-shadow: 0 0 20px rgba(240, 147, 251, 0.5);
}

.custom-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: rgba(240, 147, 251, 1);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(240, 147, 251, 0.8);
}

body:hover .custom-cursor {
    width: 30px;
    height: 30px;
}

/* 元素进入动画 */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* 文字渐显动画 */
.text-reveal {
    position: relative;
    overflow: hidden;
}

.text-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.text-reveal.revealed::before {
    left: 100%;
}

.text-reveal.revealed {
    animation: textReveal 0.8s ease forwards;
}

@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 卡片翻转效果 */
.flip-card {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.6s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.flip-card:hover {
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4),
                0 0 40px rgba(240, 147, 251, 0.3);
}

/* 视差效果 */
.parallax {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* 增强的悬停效果 */
.hover-glow {
    transition: all 0.3s ease;
    position: relative;
}

.hover-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--neon-purple), var(--neon-pink));
    background-size: 400% 400%;
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    animation: gradientRotate 3s ease infinite;
    transition: opacity 0.3s ease;
}

.hover-glow:hover::before {
    opacity: 0.6;
}

.hover-glow:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

@keyframes gradientRotate {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* 脉冲光效 */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(240, 147, 251, 0.4),
                    0 0 40px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(240, 147, 251, 0.7),
                    0 0 60px rgba(102, 126, 234, 0.5),
                    0 0 80px rgba(255, 107, 157, 0.3);
    }
}

/* 闪烁效果 */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* 3D旋转效果 */
.rotate-3d {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.rotate-3d:hover {
    transform: rotateY(10deg) rotateX(5deg);
}

/* 数字滚动增强 */
.stat-number {
    font-variant-numeric: tabular-nums;
    transition: all 0.3s ease;
}

.stat-number.counted {
    animation: numberPop 0.5s ease;
}

@keyframes numberPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* 加载完成动画 */
body.loaded .slide-content {
    animation: contentFadeIn 0.8s ease forwards;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 增强的按钮效果 */
.enhanced-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.enhanced-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.enhanced-btn:hover::before {
    width: 300px;
    height: 300px;
}

.enhanced-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* 粒子增强效果 */
.particle-interactive {
    position: relative;
}

.particle-interactive::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.1) 0%, transparent 70%);
    animation: particlePulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particlePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* 评价打分页面样式 */
.evaluation-slide {
    padding: 40px;
}

.evaluation-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.evaluation-tables-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.evaluation-table-wrapper {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px;
    overflow-x: auto;
}

.evaluation-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.evaluation-table thead {
    background: rgba(102, 126, 234, 0.2);
}

.evaluation-table th {
    padding: 12px 8px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.evaluation-table .evaluation-item-col {
    text-align: left;
    padding-left: 12px;
    min-width: 180px;
}

.evaluation-table .score-col {
    min-width: 80px;
    width: 80px;
}

.evaluation-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.evaluation-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.evaluation-table tbody td {
    padding: 10px 8px;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.evaluation-table tbody td:first-child {
    text-align: left;
    padding-left: 12px;
    color: #fff;
    font-weight: 500;
}

/* 自评分析 */
.self-evaluation-analysis {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px 30px;
    margin-top: 20px;
}

.analysis-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.5);
}

.analysis-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.analysis-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* 评价页面响应式 */
@media (max-width: 1200px) {
    .evaluation-tables-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .evaluation-slide {
        padding: 20px;
    }
    
    .evaluation-table {
        font-size: 0.85rem;
    }
    
    .evaluation-table th,
    .evaluation-table td {
        padding: 8px 6px;
        font-size: 0.8rem;
    }
    
    .evaluation-table .evaluation-item-col {
        min-width: 140px;
    }
    
    .evaluation-table .score-col {
        min-width: 60px;
        width: 60px;
    }
    
    .analysis-title {
        font-size: 1.3rem;
    }
    
    .analysis-content p {
        font-size: 0.9rem;
    }
}

/* 响应式：隐藏自定义鼠标（移动设备） */
@media (max-width: 768px) {
    .custom-cursor {
        display: none;
    }
}

/* 项目成果展示页面特殊样式 */
.slide[data-slide="7"] {
    overflow: visible;
}

.slide[data-slide="7"] .slide-content {
    overflow: visible;
    padding: 40px;
}

/* 项目成果展示 3D 图片墙样式 */
.project-3d-wrapper {
    position: relative;
    width: 100%;
    height: calc(100vh - 200px);
    min-height: 600px;
    margin-top: 40px;
    overflow: visible;
}

.project-screen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    border: 2px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
}

.project-3d-image {
    position: absolute;
    cursor: pointer;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(102, 126, 234, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.1);
}

.project-3d-image.ready {
    opacity: 1;
}

.project-3d-image.hovered {
    border-color: rgba(102, 126, 234, 0.9);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.6),
                0 0 40px rgba(240, 147, 251, 0.4);
    z-index: 1000 !important;
}

.project-image-bank {
    display: none;
}