/* 动态背景样式 - 通用版本 */
:root {
    --bg-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 页面基础样式 - 静态简洁背景 */
body {
    background: #f8f9fa;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* 背景渐变动画 - 已禁用 */

/* 页面加载动画 - 移除进场动画 */
.main-container {
    opacity: 1;
    transform: translateY(0);
}

/* 页面加载完成后的状态 */
body.page-loaded .main-container {
    animation: none;
    opacity: 1;
    transform: translateY(0);
}

/* 背景装饰 - 已禁用 */
.dynamic-bg-decoration {
    display: none;
}

/* 装饰圆圈 - 已禁用 */
.bg-circle {
    display: none;
}

.bg-circle-1 {
    width: 250px;
    height: 250px;
    top: 5%;
    left: -125px;
    animation-duration: 20s;
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.2));
}

.bg-circle-2 {
    width: 180px;
    height: 180px;
    top: 50%;
    right: -90px;
    animation-duration: 25s;
    animation-delay: -8s;
    background: linear-gradient(45deg, rgba(240, 147, 251, 0.3), rgba(245, 87, 108, 0.2));
}

.bg-circle-3 {
    width: 350px;
    height: 350px;
    top: 75%;
    left: 50%;
    transform: translateX(-50%);
    animation-duration: 30s;
    animation-delay: -15s;
    background: linear-gradient(45deg, rgba(79, 172, 254, 0.3), rgba(102, 126, 234, 0.2));
}

.bg-circle-4 {
    width: 140px;
    height: 140px;
    top: 25%;
    right: 15%;
    animation-duration: 22s;
    animation-delay: -3s;
    background: linear-gradient(45deg, rgba(25, 118, 210, 0.2), rgba(66, 165, 245, 0.15));
}

.bg-circle-5 {
    width: 100px;
    height: 100px;
    top: 65%;
    left: 10%;
    animation-duration: 18s;
    animation-delay: -12s;
    background: linear-gradient(45deg, rgba(118, 75, 162, 0.25), rgba(102, 126, 234, 0.15));
}

.bg-circle-6 {
    width: 280px;
    height: 280px;
    top: 2%;
    right: 5%;
    animation-duration: 35s;
    animation-delay: -20s;
    background: linear-gradient(45deg, rgba(245, 87, 108, 0.2), rgba(240, 147, 251, 0.15));
}

.bg-circle-7 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 5%;
    animation-duration: 16s;
    animation-delay: -5s;
    background: linear-gradient(45deg, rgba(79, 172, 254, 0.3), rgba(118, 75, 162, 0.2));
}

.bg-circle-8 {
    width: 200px;
    height: 200px;
    top: 85%;
    right: 20%;
    animation-duration: 28s;
    animation-delay: -18s;
    background: linear-gradient(45deg, rgba(240, 147, 251, 0.25), rgba(79, 172, 254, 0.15));
}

.bg-circle-9 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 25%;
    animation-duration: 24s;
    animation-delay: -10s;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.2), rgba(245, 87, 108, 0.15));
}

/* 浮动动画 - 已禁用 */

/* 内容区域样式 - 简化版本 */
.content-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: var(--bg-transition);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* 卡片浮动动画 - 已禁用 */

/* 响应式设计 */
@media (max-width: 768px) {
    .bg-circle-1 {
        width: 150px;
        height: 150px;
        left: -75px;
    }
    
    .bg-circle-2 {
        width: 120px;
        height: 120px;
        right: -60px;
    }
    
    .bg-circle-3 {
        width: 200px;
        height: 200px;
    }
    
    .bg-circle-4 {
        width: 100px;
        height: 100px;
    }
    
    .bg-circle-5 {
        width: 80px;
        height: 80px;
    }
    
    .bg-circle-6 {
        width: 180px;
        height: 180px;
    }
    
    .bg-circle-7 {
        width: 50px;
        height: 50px;
    }
    
    .bg-circle-8 {
        width: 120px;
        height: 120px;
    }
    
    .bg-circle-9 {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .bg-circle-1 {
        width: 100px;
        height: 100px;
        left: -50px;
    }
    
    .bg-circle-2 {
        width: 80px;
        height: 80px;
        right: -40px;
    }
    
    .bg-circle-3 {
        width: 150px;
        height: 150px;
    }
    
    .bg-circle-4 {
        width: 70px;
        height: 70px;
    }
    
    .bg-circle-5 {
        width: 60px;
        height: 60px;
    }
    
    .bg-circle-6 {
        width: 120px;
        height: 120px;
    }
    
    .bg-circle-7 {
        width: 40px;
        height: 40px;
    }
    
    .bg-circle-8 {
        width: 80px;
        height: 80px;
    }
    
    .bg-circle-9 {
        width: 60px;
        height: 60px;
    }
} 