/* 案例展示部分样式 */
@keyframes glow {
    0% { box-shadow: 0 15px 40px rgba(0, 174, 255, 0.3), 0 0 20px rgba(0, 174, 255, 0.2); }
    50% { box-shadow: 0 15px 40px rgba(0, 174, 255, 0.5), 0 0 30px rgba(0, 174, 255, 0.4); }
    100% { box-shadow: 0 15px 40px rgba(0, 174, 255, 0.3), 0 0 20px rgba(0, 174, 255, 0.2); }
}

.tech-case {
    background: rgba(5, 10, 20, 0.7);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 174, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.tech-case:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 174, 255, 0.3), 0 0 20px rgba(0, 174, 255, 0.2);
    border: 1px solid rgba(0, 174, 255, 0.5);
    background: rgba(8, 20, 40, 0.8);
    animation: glow 2s infinite;
}

.case-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #00aeff;
    text-shadow: 0 0 15px rgba(0, 174, 255, 0.7);
}

.case-text h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 10px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 174, 255, 0.5);
    line-height: 1.3;
    word-break: break-word;
    overflow: visible;
    position: relative;
    z-index: 10;
}

.case-text p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-stats {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 174, 255, 0.2);
}

.case-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case-stats .value {
    font-size: 24px;
    font-weight: 700;
    color: #00aeff;
    text-shadow: 0 0 10px rgba(0, 174, 255, 0.5);
}

.case-stats .label {
    font-size: 14px;
    color: #cccccc;
    margin-top: 5px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .case-content {
        padding: 20px;
    }
    
    .case-icon {
        font-size: 36px;
        text-align: center;
    }
    
    .case-text h3 {
        font-size: 18px;
        text-align: center;
    }
    
    .case-text p {
        font-size: 14px;
        text-align: center;
    }
    
    .case-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .case-stats .stat {
        margin: 0 15px 10px;
    }
    
    .case-stats .value {
        font-size: 20px;
    }
    
    .case-stats .label {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .case-content {
        padding: 15px;
    }
    
    .case-icon {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .case-text h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .case-text p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .case-stats .value {
        font-size: 18px;
    }
    
    .case-stats .label {
        font-size: 11px;
    }
}
