/* 美化软件卡片 */
.software-card {
    background: white;
    border-radius: 20px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(44, 111, 209, 0.08);
}

.software-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 16px 48px rgba(44, 111, 209, 0.15) !important;
    border-color: rgba(44, 111, 209, 0.2);
}

/* 美化软件卡片头部 */
.software-header {
    padding: 35px 25px 20px !important;
    background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%) !important;
    position: relative;
}

/* 美化分类标签 */
.software-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #2c6fd1 0%, #4c9aff 100%) !important;
    color: white;
    font-size: 0.75rem;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(44, 111, 209, 0.25);
    letter-spacing: 0.5px;
}

/* 重新设计图标容器 */
.software-icon {
    width: 100px !important;
    height: 100px !important;
    margin: 0 auto 20px !important;
    background: white !important;
    border-radius: 24px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(44, 111, 209, 0.12) !important;
    position: relative;
    overflow: hidden;
}

.software-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 111, 209, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-radius: 24px;
}

.software-icon img {
    width: 90% !important;
    height: 90% !important;
    object-fit: contain !important;
    border-radius: 20px !important;
    position: relative;
    z-index: 1;
}

/* 美化标题 */
.software-title {
    font-size: 1.4rem !important;
    margin-bottom: 8px !important;
    color: #1a1a1a !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px;
}

.software-subtitle {
    color: #6c757d !important;
    font-size: 0.95rem !important;
    font-weight: 500;
}

/* 美化内容区域 */
.software-content {
    padding: 25px !important;
}

.software-description {
    color: #555 !important;
    margin-bottom: 20px !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
}

/* 美化详情标签 */
.detail-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%) !important;
    border-radius: 12px !important;
    padding: 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%) !important;
    transform: translateY(-2px);
}

.detail-label {
    font-size: 0.75rem !important;
    color: #6c757d !important;
    margin-bottom: 6px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    color: #2c6fd1 !important;
}

/* 美化底部按钮区域 */
.software-footer {
    padding: 25px !important;
    background: linear-gradient(to bottom, #fafbfc 0%, #f8f9fa 100%) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.download-btn {
    background: linear-gradient(135deg, #2c6fd1 0%, #4c9aff 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 28px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 16px rgba(44, 111, 209, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    letter-spacing: 0.3px;
}

.download-btn:hover {
    background: linear-gradient(135deg, #1a56b5 0%, #3d87e8 100%) !important;
    box-shadow: 0 6px 24px rgba(44, 111, 209, 0.4) !important;
    transform: translateY(-2px) !important;
}

.download-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}