.download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    width: 100%;
}

.download-info {
    flex: 1;
    text-align: left;
}

.download-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.download-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.download-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #fbfbfb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    font-size: 1.2rem;
    color: var(--text-primary);
}

@media (hover: hover) {
    .download-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
        border-color: #000;
    }
}